/* Paul's Crepes & Fine Events - Static CSS Export */
/* All colors converted to hex codes */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Color Variables (Hex Codes) ===== */
:root {
  /* Light Theme Colors */
  --background: #fcfbf8;
  --foreground: #2a2523;
  --card: #fdfcfa;
  --card-foreground: #2a2523;
  --primary: #5c3750;
  --primary-foreground: #fcfbf8;
  --secondary: #edebe6;
  --secondary-foreground: #3d3834;
  --muted: #efede8;
  --muted-foreground: #6b6460;
  --accent: #378b82;
  --accent-foreground: #fcfbf8;
  --border: #e2dfd8;
  --gold: #d4a520;
  --gold-foreground: #2a2523;
}

/* ===== Typography ===== */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: 'Cormorant Garamond', serif;
}

.font-body {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

/* ===== Layout Utilities ===== */
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
}

.section-padding {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 5rem;
  }
}

/* ===== Header Styles ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(252, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-topbar {
  background-color: var(--primary);
  padding: 0.5rem 0;
  display: none;
}

@media (min-width: 768px) {
  .header-topbar {
    display: block;
  }
}

.header-topbar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-topbar a:hover {
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-foreground);
  transition: color 0.3s;
}

.header.scrolled .logo-main {
  color: var(--primary);
}

@media (min-width: 768px) {
  .logo-main {
    font-size: 1.875rem;
  }
}

.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(252, 251, 248, 0.8);
  transition: color 0.3s;
}

.header.scrolled .logo-sub {
  color: var(--accent);
}

@media (min-width: 768px) {
  .logo-sub {
    font-size: 1rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: color 0.2s;
  
  	/* 1. RESET BUTTON BOX MODEL */
  background: none;
  border: none;
  padding: 0;       /* Removes the extra height buttons get by default */
  margin: 0;
  cursor: pointer;
  outline: none;
  
  /* 2. FORCE BASELINE ALIGNMENT */
  display: inline-flex; 
  align-items: baseline; /* This aligns the bottom of the text "L" with other links */
  vertical-align: middle;
  line-height: inherit;  /* Ensures it uses the same height as standard links */
  
  /* 3. ICON SPACING */
  gap: 0.25rem;
}


.header.scrolled .nav-link {
  color: var(--foreground);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
}

.nav-link.active {
  font-weight: 600;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.header.scrolled .mobile-menu-btn svg {
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: var(--foreground);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  /* No display: flex needed here anymore, .nav-link covers it */
}

.dropdown-icon {
  display: inline-block;
  align-self: center; /* Centers the arrow relative to the text height */
  margin-top: 1px;    /* Optional: tiny nudge if the icon looks too high */
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  /*background-color: var(--card);*/
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 1000; /* helps it appear above other elements */
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;          /* ALL CAPS */
  color: var(--primary);               /* Primary color */
  font-weight: 600;                    /* Optional: stronger menu weight */
  letter-spacing: 0.08em;              /* Improves readability in caps */
  transition: background-color 0.2s, color 0.2s;
  background-color: var(--card);
  text-decoration: none;	
}

.nav-dropdown-item:hover {
  background-color: var(--primary);
  color: #ffffff;
  text-decoration: none;	
}


.header-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}



/* Desktop CTA */
.desktop-cta {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-cta {
    display: inline-flex;
  }
}

/* Mobile Locations */
.mobile-locations {
  padding: 0.75rem 0;
}

.mobile-locations-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b6460;
  margin-bottom: 0.5rem;
}

.mobile-locations .nav-link {
  padding-left: 1rem;
  font-size: 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.btn-hero {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}

.btn-hero:hover {
  background-color: #2d756d;
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}

.btn-hero-outline:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

.btn-accent:hover {
  background-color: #2d756d;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===== Hero Sections ===== */
.hero {
  position: relative;
  min-height: 700px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(252, 251, 248, 0.8);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .accent {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  color: rgba(252, 251, 248, 0.8);
  max-width: 42rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(252, 251, 248, 0.6);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  color: var(--primary-foreground);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  min-height: 400px;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.4));
}

.page-hero .hero-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero .hero-title {
    font-size: 3.75rem;
  }
}

.page-hero .hero-label {
  color: rgba(252, 251, 248, 0.7);
  margin-bottom: 1rem;
}

/* ===== Weddings Page Hero Fix ===== */
.page-hero {
  position: relative;
  min-height: 400px; /* Ensures a minimum height on small screens */
  height: 60vh;      /* Standard hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #2a2523; /* Fallback color if image fails to load */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;     /* Ensures image fills the area without stretching */
  background-position: center; /* Keeps the focus of the wedding photo centered */
  background-repeat: no-repeat;
  z-index: 1;                 /* Sits at the very bottom of the stack */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Darkened gradient for better text readability */
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.4) 100%);
  z-index: 2; /* Sits above the image but below the text */
}

.hero-content {
  position: relative;
  z-index: 10; /* Ensures text is always on top */
  text-align: center;
  padding: 0 1.5rem;
  color: #fcfbf8; /* --primary-foreground */
}
/* ===== Cards ===== */
.card-elegant {
  background-color: var(--card);
  border: 1px solid rgba(226, 223, 216, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-elegant:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Add this to your styles.css */
.card-elegant svg {
  color: var(--accent); /* This uses your branding green/teal */
  width: 2.5rem;        /* I also increased the size, as 16px is very small */
  height: 2.5rem;
  margin-bottom: 1rem;
}

/* ===== Sections ===== */
.bg-background { background-color: var(--background); }
.bg-secondary { background-color: var(--secondary); }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-gold { color: var(--gold); }

/* ===== About Section ===== */
.about-section {
  text-align: center;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(55, 139, 130, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.feature-desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  overflow: hidden;
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(55, 139, 130, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(92, 55, 80, 0.05);
  border-radius: 50%;
  transform: translate(50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-title .accent {
  font-style: italic;
  color: var(--accent);
}

.cta-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ===== Primary CTA Section ===== */
.cta-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.cta-primary .section-title {
  color: var(--primary-foreground);
}

.cta-primary .section-subtitle {
  color: rgba(252, 251, 248, 0.8);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-badges {
  border-bottom: 1px solid rgba(252, 251, 248, 0.2);
  padding: 2rem 1.5rem;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .badges-container {
    gap: 4rem;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
}

.badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
}

.badge-subtitle {
  font-size: 0.875rem;
  color: rgba(252, 251, 248, 0.7);
}

.footer-main {
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand span {
  display: block;
  font-size: 1rem;
  font-style: italic;
  color: rgba(252, 251, 248, 0.8);
}

.footer-brand p {
  color: rgba(252, 251, 248, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(252, 251, 248, 0.1);
  border-radius: 50%;
  color: var(--primary-foreground);
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: rgba(252, 251, 248, 0.2);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(252, 251, 248, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary-foreground);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(252, 251, 248, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover {
  color: var(--primary-foreground);
}

.contact-item svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.food-truck-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.food-truck-link:hover {
  opacity: 0.8;
}

.food-truck-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(252, 251, 248, 0.2);
  padding: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(252, 251, 248, 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(252, 251, 248, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Feature List ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list-item {
  display: flex;
  gap: 1rem;
}

.feature-list-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: rgba(55, 139, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.feature-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-list-desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
}

/* ===== Image with Badge ===== */
.image-with-badge {
  position: relative;
}

.image-with-badge img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem;
  max-width: 16rem;
}

.image-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.image-badge-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: rgba(252, 251, 248, 0.8);
}

/* ===== Package Grid ===== */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  padding: 2rem;
  text-align: center;
}

.package-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.package-desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
  font-weight: 700;
}

/* ===== Tags ===== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.5rem 1rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
}


/* Stats Grid (2x2) */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--card);
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

/* Stat Icon Styling */
.stat-card svg {
  margin-bottom: 1.25rem;
  stroke: var(--accent); /* Default stroke color */
}

/* Gold stroke for "stat-primary" cards as seen in your HTML SVG */
.stat-primary svg {
  stroke: #d4af37; 
}

/* Typography inside cards */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-card.stat-primary {
  background-color: var(--primary); /* #5c3750 */
  border-color: var(--primary);
}

.stat-card.stat-accent {
  background-color: var(--accent); /* #378b82 */
  border-color: var(--accent);
}

/* Ensure text and icons inside colored cards are readable */
.stat-primary .stat-number,
.stat-primary .stat-label,
.stat-accent .stat-number,
.stat-accent .stat-label {
  color: var(--primary-foreground) !important; /* #fcfbf8 */
}

/* Ensure icons inside colored cards turn white */
.stat-primary svg,
.stat-accent svg {
  stroke: var(--primary-foreground) !important;
}

/* Update the selector to match your HTML class */
.grid-four-col {
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: 1.5rem;
}

/* Tablet: 2 across */
@media (min-width: 768px) {
  .grid-four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 4 across */
@media (min-width: 1024px) {
  .grid-four-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Card Styling ===== */
.service-style-card {
  background-color: var(--card); /* #fdfcfa */
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* The "card-elegant" look from your HTML */
.card-elegant:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

.service-style-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; /* Slightly larger for emphasis */
  font-weight: 600;
  color: var(--primary); /* Using your plum color #5c3750 */
  margin-bottom: 0.75rem;
}

.service-style-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  flex-grow: 1; /* Ensures "Ideal for" always sits at the bottom */
}

.service-style-ideal {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent); /* Your teal color #378b82 */
}

/* ===== Menu Categories ===== */
.menu-category {
  display: grid;
  grid-template-columns: 1fr; /* Stacked for mobile */
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .menu-category {
    grid-template-columns: 1fr 1fr;
    /* Define naming for the two columns */
    grid-template-areas: "text image"; 
    gap: 4rem;
  }

  /* Assign the HTML parts to those areas */
  .menu-category-content {
    grid-area: text;
  }

  .menu-category-placeholder {
    grid-area: image;
  }

  /* THE SWAP: For reverse rows, flip the areas */
  .menu-category-reverse {
    grid-template-areas: "image text";
  }
}

/* --- Internal Elements Styling --- */

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-category-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(55, 139, 130, 0.1); /* Light Teal */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-category-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
}

.menu-category-desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* --- The List and Bullets --- */
.menu-items-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .menu-items-list {
    grid-template-columns: 1fr 1fr; /* 2 columns for the menu items themselves */
  }
}

.menu-items-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.menu-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- The Image Box --- */
.menu-category-placeholder {
  aspect-ratio: 4/3;
  background-color: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ensure the grid is actually 50/50 */
.crepe-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .crepe-feature {
    grid-template-columns: 1fr 1fr; /* Exactly 50% split */
    gap: 5rem;
  }
}

.feature-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.feature-image-square {
  width: 100%;
  max-width: 500px; /* Limits the physical size on large screens */
  aspect-ratio: 1 / 1; /* Keeps it perfectly square */
  object-fit: cover;
  border-radius: 0.75rem;
}

.btn-crepe {
  background-color: var(--primary); /* Your #5c3750 purple */
  color: var(--primary-foreground) !important; /* White text */
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-crepe:hover {
  background-color: #4a2c41; /* Slightly darker purple for hover */
  border-color: #4a2c41;
  transform: translateY(-2px);
}

.btn-crepe svg {
  stroke: var(--primary-foreground);
}

/* ===== Venue Cards ===== */
/* ===== Venue Cards (Corrected) ===== */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .venue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.venue-card {
  padding: 2rem; /* Increased padding for elegance */
  display: flex;
  flex-direction: column;
  height: 100%; /* Makes all cards in a row equal height */
}

.venue-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; /* Increased for better readability */
  font-weight: 600;
  color: var(--primary); /* Changed to purple for branding */
  line-height: 1.2;
}

.venue-card-header svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.venue-capacity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.venue-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: auto; /* Pushes description to the bottom if names are short */
}

/* ===== Offsite Catering Section ===== */
.offsite-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .offsite-section {
    grid-template-columns: 1fr 1fr;
  }
}

.offsite-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.offsite-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offsite-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.offsite-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.offsite-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .offsite-title {
    font-size: 1.875rem;
  }
}

.offsite-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.offsite-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--foreground);
}

.offsite-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  border-radius: 50%;
}

.offsite-info {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2.5rem;
}

.offsite-info svg {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.offsite-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.offsite-info p {
  font-family: 'Montserrat', sans-serif;
  color: rgba(252, 251, 248, 0.8);
  margin-bottom: 1.5rem;
}

.offsite-info .note {
  font-size: 0.875rem;
  color: rgba(252, 251, 248, 0.6);
}

.btn-offsite {
  background-color: var(--primary); /* Your #5c3750 purple */
  color: var(--primary-foreground) !important; /* White text */
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-offsite:hover {
  background-color: #4a2c41; /* Slightly darker purple for hover */
  border-color: #4a2c41;
  transform: translateY(-2px);
}

.btn-offsite svg {
  stroke: var(--primary-foreground);
}

/* ===== Capacity Guide ===== */
.capacity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .capacity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.capacity-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.capacity-card:hover {
  border-color: var(--accent);
}

.capacity-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.capacity-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.capacity-venues {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* City Pages */
/* ===== Neighborhood Grid (3x3) ===== */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
  gap: 1rem;
  margin-top: 3rem;
  max-width: 900px; /* Keeps the grid from becoming too wide */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .neighborhood-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (min-width: 1024px) {
  .neighborhood-grid {
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns on desktop */
  }
}

.neighborhood-tag {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem; /* More padding for a grid look */
  border-radius: 0.5rem; /* Slightly less rounded for a professional card look */
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  transition: all 0.3s ease;
}

.neighborhood-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* Styling the icon container */
.service-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Controlling the icon size and color */
.service-icon-wrapper svg {
  width: 4rem;      /* Large size */
  height: 4rem;     /* Large size */
  color: var(--accent); /* Your Teal color #378b82 */
  stroke-width: 1.25px; /* Thinner stroke for an elegant, high-end look */
  transition: transform 0.3s ease;
}

/* Fun interaction: icon pops when you hover over the card */
.card-elegant:hover .service-icon-wrapper svg {
  transform: scale(1.1);
  color: var(--primary); /* Optional: change to purple on hover */
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-section h2,
.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.form-section > p,
.contact-section > p {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--secondary);
  text-decoration: none;
  transition: background-color 0.2s;
}

.contact-card:hover {
  background-color: rgba(237, 235, 230, 0.8);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.contact-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-card-text {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
}

.response-promise {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem;
}

.response-promise h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.response-promise p {
  font-family: 'Montserrat', sans-serif;
  color: rgba(252, 251, 248, 0.8);
}

/* ===== Social Events Grid ===== */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  padding: 2rem;
  text-align: center;
}

.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.event-desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--muted-foreground);
}

/* Container and Grid */
.grid-two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Text gets slightly more space */
  gap: 4rem; /* Equivalent to gap-16 */
  align-items: center;
}

@media (max-width: 991px) {
  .grid-two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Event Tags (The list under the subtitle) */
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.event-tag {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.w-full { width: 100%; }

/* ===== Legal Pages (Privacy Policy & Terms) ===== */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-content {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
}

.legal-content .legal-updated {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.legal-content li::marker {
  color: var(--accent);
}

.legal-content strong {
  color: var(--foreground);
  font-weight: 600;
}

/* Page Hero Small Variant */
.page-hero-small {
  min-height: 40vh;
}

.page-hero-small .page-hero-title {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .page-hero-small .page-hero-title {
    font-size: 3rem;
  }
}