/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Update this section at the top of your style.css */
body {
  margin: 0;        /* Add this to remove the default browser gap */
  padding: 0;       /* Add this for consistency */
  Width: 100%;
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #f9f5f0;
  line-height: 1.6;
}

  h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

  h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

/* Ensure the header is truly at the top */
header {
  top: 0;           /* Add this to force the fixed header to the very top */
  left: 0;          /* Ensure it starts at the very left */
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Logo Flex Container */
.logo {
  display: flex;
  align-items: center;      /* Vertically centers logo with text */
  gap: 12px;                /* Space between logo and text */
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* Small Logo Icon Styling */
.header-logo-icon {
  height: 70px;             /* Adjust this to change logo size */
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a:hover {
  color: #c00;
}

.reserve-link {
  color: #c00 !important;
}


/* Dropdown Logic */
    nav ul li {
      position: relative; /* Essential for positioning the dropdown */
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      z-index: 1000;
      border-radius: 4px;
      padding: 10px 0;
      list-style: none;
    }

    /* Show the menu on hover */
    nav ul li:hover .dropdown {
      display: block;
    }

    .dropdown li {
      width: 100%;
    }

    .dropdown li a {
      color: #333 !important; /* Force dark text on white bg */
      padding: 10px 20px;
      display: block;
      font-size: 0.9rem;
      text-transform: none;
      letter-spacing: 0;
      transition: background 0.3s;
    }

    .dropdown li a:hover {
      background-color: #f9f9f9;
      color: #c00 !important;
    }

    /* Arrow icon styling */
    .fa-chevron-down {
      font-size: 0.7rem;
      margin-left: 5px;
      vertical-align: middle;
    }


/* Sections */
section {
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 1rem auto 1rem auto;
}

.section-title { 
      text-align: center; 
      margin-bottom: 4rem; 
    }

    .section-title h2 { 
      font-family: 'Cormorant Garamond', serif; 
      font-size: 2.8rem; 
      color: #333;
      margin-bottom: 0.5rem; /* Tighter gap to the sub-text */
    }

    /* This targets the intro text specifically */
    .section-title p { 
      font-family: 'Cormorant Garamond', serif; /* Matching the H2 font */
      font-size: 1.3rem; /* Smaller, more balanced size */
      color: #777; 
      font-style: italic; /* Adds a touch of heritage style */
      letter-spacing: 0.5px;
      margin-top: 0;
    }

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: #555;
}


/* Modern Footer Styles */
/* Ensure Footer is Screen-Wide */
.site-footer {
  width: 100vw;               /* Force it to viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;         /* These 3 lines "break out" of any containers */
  margin-right: -50vw;
  background-color: #8c6d5e;  /* Your original color */
  color: #eee;
  padding: 3rem 0;            /* Vertical padding */
  box-sizing: border-box;
}

.footer-container {
  width: 90%;                 /* Keeps the content inside aligned with your site */
  max-width: 1200px;
  margin: 0 auto;             /* Centers the content within the brown bar */
  text-align: center;
}

/* Logo Styling */
.footer-logo-box {
  margin-bottom: 2rem;
}

.footer-logo {
  max-width: 400px; 
  height: auto;
}

/* Combined Address & Contact Line */
.footer-combined-line {
  display: flex;
  flex-wrap: wrap;          /* Responsive wrapping */
  justify-content: center;  /* Center align on line */
  gap: 25px;                /* Space between items */
  row-gap: 12px;            /* Space if wrapped to 2 lines */
  font-size: 0.9rem;
  color: #eee;              /* Kept original light color */
  margin-bottom: 2.5rem;    /* Space before social icons */
}

.footer-combined-line span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;      /* Keeps phone numbers on one piece */
}

.footer-combined-line i {
  color: #c00;              /* Red accent for icons */
}

.footer-combined-line a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-combined-line a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Social Icons */
.footer-socials {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}

.footer-socials a {
  color: #eee;
  font-size: 1.2rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #c00;
}

/* RedNote/Dianping text styling */
.footer-socials b {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Bottom Copyright Section */
.footer-bottom p {
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: #ccc;
}


/* Responsive Mobile Layout */
@media (max-width: 600px) {
  .footer-contact-row {
    flex-direction: column; /* Stacks them on small screens */
    gap: 0.8rem;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1rem 5%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    height: auto;
    position: relative !important;
  }

  nav ul {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  section {
    padding-top: 2rem !important;
  }

  section[style*="padding: 100px 0"] {
    padding-top: 40px !important;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .header-logo-icon {
    height: 40px;
  }

  .logo {
    font-size: 1.4rem;
    width: 100%;
    justify-content: center;
    Flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1rem 2%;
    position: relative !important;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  .lang-selector .dropdown {
    position: relative;
    box-shadow: none;
    background: #f9f9f9;
  }

  .hero {
    padding-top: 20px;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}