/* Grundlegende Variablen */
:root {
    --deep-olive: #556B2F;
    --white: #FFFFFF;
    --peachy-terracotta: #F8CBA6;
    --soft-apricot: #FFD19A;
    --espresso: #4B3832;
    --cool-gray: #E0E0E0;
    
    --desktop-margin: 80px;
    --mobile-margin: 20px;
    --section-spacing: 100px;
  }
  
  /* Basis-Styles und Typografie */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;600&display=swap');
  
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--espresso);
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-olive);
  }
  
  h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 38px;
    font-weight: normal;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.4;
  }
  
  /* Navigation Styles */
  .navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem var(--mobile-margin);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  .navbar-brand img {
    height: 60px;
    width: auto;
  }
  
  .nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--deep-olive) !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
  }
  
  .nav-link:hover {
    color: var(--peachy-terracotta) !important;
  }
  
  .navbar-toggler {
    border-color: var(--deep-olive);
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(85, 107, 47, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 80px;
  }
  
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
  }
  
  /* Sections Styling */
  section {
    padding: var(--section-spacing) var(--mobile-margin);
  }
  
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--mobile-margin);
  }
  
  /* About Section */
  .about-section {
    background-color: var(--cool-gray);
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature i {
    font-size: 2.5rem;
    color: var(--deep-olive);
    margin-bottom: 1rem;
  }
  
  /* Owner Section */
  .owner-section {
    background-color: var(--white);
  }
  
  .owner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .owner-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Dishes Section */
  .dishes-section {
    background-color: var(--cool-gray);
  }
  
  .dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .dishes-grid figure {
    margin: 0;
    transition: transform 0.3s ease;
  }
  
  .dishes-grid figure:hover {
    transform: scale(1.05);
  }
  
  .dishes-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  figcaption {
    text-align: center;
    margin-top: 1rem;
    font-size: 16px;
    color: var(--espresso);
  }
  
  /* Info Section */
  .info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .opening-hours table {
    width: 100%;
    margin-top: 1rem;
  }
  
  .opening-hours td {
    padding: 0.5rem 0;
  }
  
  .address a {
    color: var(--deep-olive);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .address a:hover {
    color: var(--peachy-terracotta);
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--deep-olive);
    color: var(--white);
    padding: 4rem var(--mobile-margin) 2rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--peachy-terracotta);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }
  
  .footer-nav {
    margin-bottom: 1rem;
  }
  
  .footer-nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: var(--peachy-terracotta);
  }
  
  /* Responsive Anpassungen */
  @media (max-width: 991px) {
    .navbar-collapse {
      background: var(--white);
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      margin-top: 1rem;
    }
  
    .nav-item {
      padding: 0.5rem 0;
    }
  
    .owner-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .hero-content {
      width: 90%;
      padding: 1.5rem;
    }
  
    h1 {
      font-size: 42px;
    }
  
    h2 {
      font-size: 32px;
    }
  
    h3 {
      font-size: 24px;
    }
  }
  
  @media (min-width: 992px) {
    .navbar-nav {
      gap: 1rem;
    }
  
    .nav-item {
      position: relative;
    }
  
    .nav-item::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: var(--peachy-terracotta);
      transition: all 0.3s ease;
    }
  
    .nav-item:hover::after {
      width: 100%;
      left: 0;
    }
  
    .container {
      padding: 0 var(--desktop-margin);
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .fade-in {
    animation: fadeIn 1s ease-in;
  }
  