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

:root {
    /* Brand Color Palette */
    --bg-white: #FFFFFF; /* Main page background */
    --primary-gold: #D4AF7F; /* H1/H2, logo accents, main CTA */
    --secondary-brown: #8B5E3C; /* H3/H4, nav/footer, secondary buttons/icons */
    --highlight-beige: #ECD9B0; /* Section backgrounds, hover states, subtle cards */
    --neutral-dark: #2E2E2E; /* Body text, icons, secondary nav text */
    --cream-light: #F7F3EB; /* Testimonials, callouts, soft section backgrounds */

    /* Typography System */

    /* Font Families */
    --font-heading: 'Cormorant', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Letter Spacing */ 
    --ls-tight: -0.01em; /* Tight spacing for headings */
    --ls-normal: 0; /* Normal spacing */
    --ls-wide: 0.05em; /* Slightly wide spacing for emphasis */

    /* Font Sizes */
    --fs-h1: 2.5rem; /* ~40px */
    --fs-h2: 2rem; /* ~32px */
    --fs-h3: 1.5rem; /* ~24px */
    --fs-h4: 1.25rem; /* ~20px */
    --fs-body: 1rem; /* ~16px */
    --fs-small: 0.875rem; /* ~14px */

    /* Line Heights */
    --lh-heading: 1.3;
    --lh-body: 1.65;

    /* Spacing System */
    --spacing-xs: 0.25rem;  /* 4px */
    --spacing-sm: 0.5rem;   /* 8px */
    --spacing-md: 1rem;     /* 16px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 4rem;     /* 64px */
    --spacing-xxl: 6rem; /* ~96px */
}

html {
    font-size: var(--fs-body);
}

body, p, li {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-normal);
    color: var(--neutral-dark);
}

h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
}

h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
}

h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: var(--fw-medium);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-normal);
}

h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-normal);
}

/* Nav links
nav a, .nav-link {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    letter-spacing: var(--ls-wide);
    text-decoration: none;
}

button, .cta {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    letter-spacing: var(--ls-wide);
    cursor: pointer;
} */

/* Navbar */
.navbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--highlight-beige);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 80px;
}

/* Nav Container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--spacing-md);
  height: 100%;
}

/* Logo */
.nav-logo img {
  height: 60px;
}

/* Desktop Nav Links */
.desktop-nav {
  display: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.desktop-nav a {
  color: var(--secondary-brown);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px; /* smaller for desktop */
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
}

/* Call Button */

.call-button a {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--primary-gold);
  color: var(--bg-white);
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  white-space: nowrap; /* This is what prevents the text from wrapping */
  font-size: 14px; /* Reduced font size to fit on one line */
}

.call-button a svg {
  width: 16px;
  height: 16px;
  stroke: var(--bg-white); /* Ensures the SVG is visible against the background */
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  right: var(--spacing-md);
}

/* New CSS to change the menu and close icon colors */
.hamburger svg, .menu-close svg {
    stroke: #8B5E3C;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: var(--cream-light);
  transition: right 0.3s ease-in-out;
  padding: var(--spacing-lg) var(--spacing-md);
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.menu-logo {
  height: 32px;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Mobile Links */
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-menu a {
  color: var(--secondary-brown);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Active Mobile Menu */
.mobile-menu.active {
  right: 0;
}

/* Body Padding */
body {
  padding-top: 80px;
}

/* Media Queries */
@media screen and (min-width: 1024px) {
  /* Hide mobile menu elements */
  .hamburger, .mobile-menu {
    display: none;
  }

  /* Desktop nav container layout */
  .nav-container {
    justify-content: space-between; /* logo left, links right */
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px; /* space between links */
  }

  /* Adjust link size */
  .desktop-nav a {
    font-size: 14px; /* smaller than mobile */
    text-decoration: none;
    color: var(--secondary-brown);
  }

  /* Ensure call button keeps shape */
  .desktop-nav .call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: var(--fw-semibold);
    white-space: nowrap;
  }

  .desktop-nav .call-button svg {
    width: 20px;
    height: 20px;
    stroke: var(--bg-white);
  }

  .desktop-nav .call-button span {
    font-size: 14px;
  }
}

/* =========================
   Footer Section
========================= */
.footer {
  background-color: var(--secondary-brown); /* dark brown */
  color: var(--bg-white); /* light text for contrast */
  padding: var(--spacing-lg) var(--spacing-md);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand Info */
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--primary-gold);
  margin-bottom: var(--spacing-xs);
}

.footer-brand p {
  color: var(--bg-white);
  font-weight: var(--fw-light);
}

/* Footer Columns */
.footer-links, .footer-contact, .footer-visit {
  color: var(--bg-white);
}

.footer-links h4,
.footer-contact h4,
.footer-visit h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--primary-gold);
}

.footer-links ul,
.footer-contact ul,
.footer-visit ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li,
.footer-visit li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a,
.footer-contact a {
  color: var(--bg-white);
  text-decoration: none;
  font-weight: var(--fw-light);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-gold);
}

.footer-visit span {
  color: var(--bg-white);
}

/* Legal Section */
.footer-legal {
  border-top: 1px solid var(--highlight-beige);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-sm) 0;
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: var(--fs-small);
}

.footer-legal a:hover {
  color: var(--primary-gold);
}

.footer-legal p {
  font-size: var(--fs-small);
  color: var(--bg-white);
  margin: 0;
}

/* =========================
   Media Queries
========================= */

/* Tablet */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--spacing-lg);
  }

  .footer-links, .footer-contact, .footer-visit {
    flex: 1;
  }

  .footer-brand {
    flex: 2;
  }

  .footer-legal ul {
    justify-content: flex-start;
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .footer-container {
    gap: var(--spacing-xl);
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .footer-container {
    gap: var(--spacing-xl);
  }
}







