/* Base Styles */
:root {
    --louis-cream: #FAF7F2;
    --louis-navy: #1A2238;
    --louis-gold: #C8A97E;
    --louis-gray: #767676;
    --louis-light-gray: #E0E0E0;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-playfair: 'Playfair Display', serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-montserrat);
    color: var(--louis-navy);
    background-color: var(--louis-cream);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
  }
  
  button {
    cursor: pointer;
    font-family: inherit;
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 80px 0;
    position: relative;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--louis-navy);
    margin-bottom: 20px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--louis-gold);
  }
  
  .section-title.centered {
    text-align: center;
  }
  
  .section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-description {
    font-size: 18px;
    color: var(--louis-gray);
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .accent-text {
    color: var(--louis-gold) !important;
    font-weight: 600;
    display: inline-block;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: var(--louis-gold);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
  }
  
  .btn-primary:hover {
    background-color: var(--louis-navy);
  }
  
  .btn-outline {
    border: 2px solid var(--louis-gold);
    color: var(--louis-navy);
    font-weight: 600;
    padding: 10px 22px;
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
  }
  
  .btn-outline:hover {
    background-color: var(--louis-gold);
    color: white;
  }
  
  /* Forms */
  .form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--louis-light-gray);
    border-radius: 2px;
    font-family: var(--font-montserrat);
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  .form-input:focus {
    outline: none;
    border-color: var(--louis-gold);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .form-row .form-group {
    flex: 1;
    min-width: 250px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 34, 56, 0.9);
    transition: all 0.3s;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-logo {
    font-family: var(--font-playfair);
    font-size: 28px;
    font-weight: 700;
    color: white;
  }
  
  .navbar-logo .accent-text {
    color: var(--louis-gold) !important;
  }
  
  .navbar-right {
    display: flex;
    align-items: center;
  }
  
  .navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navbar-menu li {
    margin-left: 25px;
  }
  
  .navbar-link {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
  }
  
  /* Only active link gets underline */
  .navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--louis-gold);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: white;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .language-selector {
    margin-left: 25px;
  }
  
  .language-selector select {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 2px;
    font-family: var(--font-montserrat);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='none'%3E%3Cpath fill='white' d='M0 0h12L6 6 0 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
  }
  
  .language-selector select option {
    background-color: var(--louis-navy);
    color: white;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3') center/cover no-repeat;
    color: white;
    padding-top: 80px;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 34, 56, 0.7);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
  }
  
  .hero h1 .accent-text {
    color: var(--louis-gold) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
  }
  
  .hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) translateX(-50%);
    }
    40% {
      transform: translateY(-20px) translateX(-50%);
    }
    60% {
      transform: translateY(-10px) translateX(-50%);
    }
  }
  
  /* About Section */
  .about {
    background-color: var(--louis-cream);
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-content {
    padding-right: 20px;
  }
  
  .about-text {
    margin-bottom: 20px;
    color: var(--louis-gray);
  }
  
  .about-image {
    position: relative;
    height: 500px;
  }
  
  .image-container {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3') center/cover no-repeat;
    border-radius: 4px;
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 34, 56, 0.2), rgba(26, 34, 56, 0.6));
    border-radius: 4px;
  }
  
  .about-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
  }
  
  .stat-item {
    text-align: center;
    flex: 1;
  }
  
  .stat-number {
    font-family: var(--font-playfair);
    font-size: 32px;
    font-weight: 700;
    color: var(--louis-gold);
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 14px;
    color: var(--louis-gray);
  }
  
  .stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--louis-light-gray);
    margin: 0 30px;
  }
  
  /* Menu Section */
  .menu {
    background-color: white;
  }
  
  .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .menu-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 18px;
    color: var(--louis-gray);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
  }
  
  .menu-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--louis-gold);
    transition: width 0.3s;
  }
  
  .menu-tab:hover {
    color: var(--louis-navy);
  }
  
  .menu-tab.active {
    color: var(--louis-navy);
  }
  
  .menu-tab.active::after {
    width: 100%;
  }
  
  .menu-category-content {
    display: none;
  }
  
  .menu-category-content.active {
    display: block;
  }
  
  .menu-category {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--louis-navy);
  }
  
  .menu-items {
    display: grid;
    gap: 30px;
  }
  
  .menu-item {
    padding: 20px;
    background-color: var(--louis-cream);
    border-radius: 4px;
  }
  
  .menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .menu-item-price {
    color: var(--louis-gold);
    font-weight: 600;
  }
  
  .menu-item-description {
    color: var(--louis-gray);
  }
  
  .menu-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--louis-light-gray);
  }
  
  .menu-footer p {
    margin-bottom: 20px;
    color: var(--louis-gray);
  }
  
  /* Gallery Section */
  .gallery {
    background-color: var(--louis-cream);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 34, 56, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-overlay h3 {
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 20px;
  }
  
  /* Reservation Section */
  .reservation {
    background-color: white;
  }
  
  .reservation-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
  }
  
  .reservation-form {
    padding: 30px;
    background-color: var(--louis-cream);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .form-footer {
    margin-top: 30px;
    text-align: center;
  }
  
  .form-note {
    margin-bottom: 20px;
    font-size: 14px;
    font-style: italic;
    color: var(--louis-gray);
  }
  
  .reservation-image {
    background-image: url('https://images.unsplash.com/photo-1550966871-3b3226c3f300');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .opening-hours {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    width: 80%;
    border-radius: 4px;
    text-align: center;
  }
  
  .opening-hours h3 {
    margin-bottom: 20px;
    color: var(--louis-navy);
  }
  
  .opening-hours ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .opening-hours li {
    padding: 5px 0;
  }
  
  .opening-hours li span {
    font-weight: 600;
    color: var(--louis-gold);
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--louis-cream);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-info {
    display: grid;
    gap: 30px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
  }
  
  .contact-icon {
    margin-right: 15px;
    padding: 10px;
    background-color: var(--louis-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  
  .contact-text h3 {
    margin-bottom: 10px;
  }
  
  .contact-map {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  #mapbox-container {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .directions-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--louis-gold);
    font-weight: 500;
  }
  
  .directions-link:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    background-color: var(--louis-navy);
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .footer-logo h2 .accent-text {
    color: var(--louis-gold) !important;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--louis-gold);
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column li {
    margin-bottom: 10px;
  }
  
  .footer-column a {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  
  .footer-column a:hover {
    opacity: 1;
    color: var(--louis-gold);
  }
  
  .footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom a {
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .footer-bottom a:hover {
    opacity: 1;
    color: var(--louis-gold);
  }
  
  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--louis-gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-to-top:hover {
    background-color: var(--louis-navy);
  }
  
  /* Animation Classes */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .section {
      padding: 60px 0;
    }
    
    .hero h1 {
      font-size: 48px;
    }
    
    .hero-description {
      font-size: 18px;
    }
    
    .about-grid {
      gap: 40px;
    }
    
    .contact-content,
    .reservation-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .stat-divider {
      margin: 0 20px;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .navbar-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--louis-navy);
      padding: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      flex-direction: column;
      align-items: center;
    }
    
    .navbar-menu.active {
      display: flex;
    }
    
    .navbar-menu li {
      margin: 10px 0;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero h1 {
      font-size: 36px;
    }
    
    .section-title {
      font-size: 30px;
    }
    
    .about-grid {
      grid-template-columns: 1fr;
    }
    
    .about-content {
      order: 2;
    }
    
    .about-image {
      order: 1;
      margin-bottom: 30px;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 30px;
    }
    
    .footer-links {
      width: 100%;
      justify-content: space-between;
    }
    
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .menu-tabs {
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 480px) {
    .section {
      padding: 40px 0;
    }
    
    .hero h1 {
      font-size: 28px;
    }
    
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
      width: 100%;
      text-align: center;
    }
    
    .section-title {
      font-size: 24px;
    }
    
    .menu-tabs {
      flex-direction: column;
      align-items: center;
    }
    
    .about-stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .stat-divider {
      width: 80%;
      height: 1px;
      margin: 10px 0;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
  }