/* Grundfarben */
:root {
    --braun: #2A2725;
    --beige: #AE8F60;
    --creme: #EAE2D3;
  }
  
  /* Font/Schrift */
  @font-face {
    font-family: 'Britannic';
    src: url('font/Britannic Bold Regular.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Cambay-Regular';
    src: url('font/Cambay-Regular.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Poppins-Light';
    src: url('font/Poppins/Poppins-Light.ttf') format('truetype');
  }
  
  /* Allgemein */
  body {
    margin: 0;
    color: var(--braun);
    font-family: 'Poppins-Light', sans-serif;
    font-size: 18px;
  }
  
  h1 {
    font-family: 'Britannic';
    font-size: 56px;
    margin: 0;
  }
  
  h3 {
    font-family: 'Cambay-Regular';
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ffffff;
  }
  
  p {
    line-height: 1.6;
  }
  
  /* Hero */
  .hero {
    position: relative;
    height: 500px;
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Inhalt */
  .destinations-section {
    padding: 50px 10%;
    background-color: white;
  }
  
  /* Footer */
  .footer-content {
    background: var(--creme);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6%;
  }
  
  .footer-left {
    color: #aaa;
    font-size: 14px;
    font-family: 'Poppins-Light';
    margin-left: 9%;
  }
  
  .footer-right {
    display: flex;
    gap: 15px;
    padding-right: 190px;
  }
  
  .footer-right a {
    color: #aaa;
    font-size: 14px;
    font-family: 'Poppins-Light';
  }
  
  .footer-right a:hover {
    color: black;
  }
  
  /* Tablet */
  @media (max-width: 834px) {
    h1 {
      font-size: 42px;
    }
  
    .hero {
      height: 400px;
    }
  
    .destinations-section {
      padding: 40px 8%;
    }
  
    .footer-content {
      gap: 20px;
    }
  
    .footer-right {
      padding-right: 40px;
    }
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    body {
      font-size: 16px;
    }
  
    h1 {
      font-size: 34px;
    }
  
    h3 {
      font-size: 20px;
    }
  
    .hero {
      height: 320px;
    }
  
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-left {
      margin-left: 0;
    }
  
    .footer-right {
      padding-right: 0;
    }
  }