* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
  }
  
  .background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }


  header {
    background-color: transparent;
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center; /* This is correct for vertical centering */
    padding: 20px;
    z-index: 100;
    top: 0; /* Make sure it's positioned at the top */
    left: 0;
  }
  
  .menu-icon {
    fill: white;
    width: 34px;
    height: 34px;
    max-width: 34px;
  }
  
  .svgbox {
    width: 34;
    height: 34;
  }
  footer {
    position: fixed; /* Position at bottom of viewport */
    flex-direction: column;
    bottom: 0;
    left: 0;
    gap: 8px;
    width: 100%;
    z-index: 100; /* Ensures it's above the background image */
    display: flex; /* Display all three sections in a row */
    justify-content: space-between; /* Spreads the elements: stars left, middle content, menu right */
    align-items: flex-start; /* Aligns items to bottom */
    padding: 20px;
    background-color: transparent;
    color: white; /* Base text color */
    text-shadow: 0px 1px 3px rgba(0,0,0,0.5); /* Improves readability over images */
  }
  
  /* Stars section (left) */
  .stars {
    display: flex;
    gap: 5px; /* Space between the two stars */
  }
  
  .stars svg {
    width: 24px;
    height: 24px;
  }
  
  .michelinColor {
    fill: #D3072B; /* Gold color for Michelin stars */
  }

  .michelingreenColor {
    fill: #649f42;
  }
  
  /* Middle and right sections */
  .split {
    flex-direction: row;
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    gap: 15px; /* Space between elements within each split section */
  }

  .row{
    display: flex;
    flex-direction: row;
    width: fit-content;
  }
  
  /* Typography */
  h2 {
    font-size: 16px;
    font-weight: normal; /* Less bold */
    margin: 0;
    white-space: nowrap; /* Prevents wrapping */
  }

  
  /* Instagram logo */
  .instagram-logo {
    fill: white; /* Makes the Instagram logo white */
  }
  
  
  .logo img {
    display: block; /* Removes extra space below image */
    width: 150px; /* Adjust based on your logo size */
    height: 35px;
    z-index: 1000;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent black background */
    z-index: 50; /* Very high z-index to appear above everything */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Menu content */
  .menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  /* Close button */
  .menu-header {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .close-menu {
    font-size: 32px;
    cursor: pointer;
    color: white;
    margin: 0;
  }
  
  /* Menu navigation */
  .menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .menu-nav li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.2s; /* Base delay */
  }
  
  .menu-overlay.active .menu-nav li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Add increasing delay for each menu item */
  .menu-nav li:nth-child(2) { transition-delay: 0.3s; }
  .menu-nav li:nth-child(3) { transition-delay: 0.4s; }
  .menu-nav li:nth-child(4) { transition-delay: 0.5s; }
  .menu-nav li:nth-child(5) { transition-delay: 0.6s; }
  
  .menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
  }
  
  .menu-nav a:hover {
    color: #D3072B; /* Same gold color as Michelin stars */
  }
  
  /* Language button styling */
.language-selector .lang-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-family: inherit; /* Inherit the font from your h2 elements */
  }
  
  /* Style for the active/selected language */
  .language-selector .lang-btn.active {
    text-decoration: underline;
  }
  
  /* Keep the divider as is */
  .language-selector h2 {
    margin: 0 5px;
  }
  
  @media (min-width: 768px) {
   
}
  