/* CSS for Valoura Catering & Events - Split Screen Blueprint Layout */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-color: #faf7f2;       /* Warm luxury cream background */
  --bg-green: #204b38;       /* Forest green from reference image */
  --accent-sand: #e5c4a3;    /* Champagne sand/gold accent from reference image */
  --border-gold: rgba(229, 196, 163, 0.25);
  
  --text-dark: #1b352b;      /* Dark green for headings on cream */
  --text-light: #faf7f2;     /* Light cream for text on green */
  --text-muted: #6b7c75;     /* Muted sage for body text */
  --text-muted-light: #cbdcd3;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-script: 'Pinyon Script', cursive;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #153426;
}

/* --- Layout & Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.hidden {
  display: none !important;
}

/* Subtitle with leaf details */
.section-subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-green);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.15;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Elegant Sand Buttons --- */
.btn-sand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 16px 36px;
  background-color: var(--accent-sand);
  color: #1b352b;
  text-decoration: none;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(229, 196, 163, 0.2);
  transition: var(--transition-smooth);
}

.btn-sand:hover {
  transform: translateY(-2px);
  background-color: #dbc09c;
  box-shadow: 0 6px 20px rgba(229, 196, 163, 0.35);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Header / Navigation --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-green);
  border-bottom: none; /* Removed bottom border */
  transition: var(--transition-smooth);
}

.header.scrolled {
  position: fixed;
  background: rgba(32, 75, 56, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none; /* Removed bottom border */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px; /* Reduced unscrolled height */
  transition: var(--transition-smooth);
}

.header.scrolled .navbar {
  height: 55px; /* Reduced scrolled height */
}

.logo img {
    width: 100px;
}

.header.scrolled .logo {
  font-size: 1.9rem; /* Reduced logo size on scroll */
  color: var(--text-light);
  padding-left: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 16px;
}

.nav-divider {
  color: var(--accent-sand);
  font-size: 0.6rem;
  opacity: 0.8;
}

.nav-link {
  color: var(--text-muted-light); /* Muted light green-white link */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: lowercase;
  transition: var(--transition-fast);
  padding: 6px 12px;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-sand) !important;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--text-light); /* Phone number styled in light cream */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header.scrolled .nav-phone {
  color: var(--text-light);
}

.nav-phone i {
  width: 14px;
  height: 14px;
  color: var(--accent-sand);
}

.mobile-toggle {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* --- Split Hero Layout --- */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-color: var(--bg-color);
  position: relative;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  overflow: visible;
}

/* Left Column Styling */
.hero-left-col {
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
  /* Removed grouping z-index to allow individual child elements to stack relative to the right column */
}

.hero-green-block {
  background-color: var(--bg-green);
  padding: 90px 70px 180px 90px;
  border-bottom-right-radius: 120px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 10px 10px 30px rgba(32, 75, 56, 0.12);
  z-index: 1; /* Sit below the right column image */
  overflow: visible;
}

.hero-center-content-overlay {
  position: absolute;
    top: 20%;
    left: 10px;
  transform: translateY(-50%) translate(50px, -45px);
  width: 75vw;
  max-width: 820px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.hero-center-content-overlay * {
  pointer-events: auto; /* Enable hover/clicks on CTA button and links */
}

 

.seal-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-sand);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(229, 196, 163, 0.5);
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-main-content {
  position: relative;
  z-index: 20;
  width: 160%;
  max-width: 900px;
}

.hero-green-block .hero-title {
  font-family: var(--font-serif);
  font-size: 7.2rem;
  line-height: 1.05;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
}

/* Standalone floating title — above all hero elements */
.hero-title-overlay {
  position: absolute;
  top: 20%;
  left: 70px;
  z-index: 30;
  font-family: var(--font-serif);
  font-size: 70px;
  line-height: 1.05;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  max-width: 820px;
}

/* Floating tagline & button — below title, above all hero elements */
.hero-tagline-overlay {
    position: absolute;
    top: 35%;
    left: 80px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
    margin-top: 20px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Stats panel integrated inside the green block */
.hero-stats-panel {
  position: absolute;
  bottom: 40px;
  left: 90px;
  width: calc(100% - 160px); /* Span exact inner padding width */
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 24px;
}

.stat-group {
  display: flex;
  gap: 60px;
  margin-bottom: 24px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--accent-sand); /* Sand-colored stats matching reference */
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
  font-weight: 500;
}

.stat-label .label-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted-light);
}

.gold-line-art {
  margin-top: 15px;
  opacity: 0.8;
}

/* Right Column Styling */
.hero-right-col {
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3; /* Sits above the green background (z-index 1) but below the text (z-index 10) */
}

.hero-image-frame {
  flex-grow: 1;
  background-color: transparent;
  padding: 0;
  position: relative;
  overflow: visible;
}

.hero-img {
  height: 640px;
  width: calc(100% + 45px); /* Expanded width for shifted overlap */
  margin-left: -45px; /* Shifted a little left to overlap green section slightly */
  position: relative;
  z-index: 3; /* Matches right column container layering */
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 120px;
  box-shadow: -10px 10px 30px rgba(0,0,0,0.08);
}

/* Testimonial card below image */
.hero-testimonial-block {
  padding: 50px 70px 60px 80px;
  background-color: var(--bg-color);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 20px;
  height: 20px;
  background-color: #835cf5;
  border-radius: 50%;
  display: inline-block;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--accent-sand);
  line-height: 0.1;
  margin-top: 30px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-pager {
  display: flex;
  gap: 8px;
}

.pager-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(32, 75, 56, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.pager-dot.active {
  background-color: var(--bg-green);
  transform: scale(1.2);
}

/* Cropped food plate in bottom-left background */
.hero-food-plate {
  position: absolute;
  bottom: -290px; /* Moved down to avoid overlapping stats text */
  left: -180px;   /* Moved left slightly to align balance */
  width: 360px; /* Increased size slightly */
  height: 360px;
  z-index: 3; /* Stacks over green block's bottom curve */
}

.plate-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  border: 10px solid #ffffff; /* Gives it the plate edge look */
}

/* --- About Section --- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top:50px;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  padding: 10px;
  border-radius: 20px;
  background: rgba(32, 75, 56, 0.03);
  border: 1px solid rgba(32, 75, 56, 0.08);
}

.about-img {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.about-content .section-title {
  margin-top: 10px;
}

.about-p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 24px 0 35px 0;
}

.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.phi-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.phi-icon {
  width: 24px;
  height: 24px;
  color: var(--bg-green);
  margin-top: 4px;
}

.phi-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.phi-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Services / Features Section --- */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--bg-green);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.services-title {
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-serif);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.services-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-new {
  background-color: #ffffff;
  border: 1px solid rgba(32, 75, 56, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}

.service-img-h {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.service-img-h::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(32, 75, 56, 0.8) 100%);
}

.service-title-overlay {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-light);
  z-index: 2;
  position: relative;
}

.service-info-new {
  padding: 28px;
}

.service-info-new p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card-new:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 196, 163, 0.4);
  box-shadow: 0 16px 36px rgba(32, 75, 56, 0.08);
}

/* --- Showcase / Portfolio Section --- */
.portfolio-section-new {
  position: relative;
  padding: 0 0 100px 0; /* Remove top padding since banner handles it */
  background-color: #faf7f2; /* Warm luxury cream background */
  overflow: hidden;
}

.portfolio-banner {
  background-color: #e5c4a3; /* Warm beige/sand banner matching reference */
  height: 180px;
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.portfolio-header-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.portfolio-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bg-green);
  display: block;
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--bg-green);
  margin: 0;
  letter-spacing: -0.5px;
}

.portfolio-body-container {
  position: relative;
  margin-top: -50px; /* Pull content up to overlap the banner */
  z-index: 5;
}

.portfolio-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.portfolio-left-col {
  padding-top: 80px; /* Space below banner */
}

.portfolio-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333333;
  font-weight: 400;
  margin-bottom: 24px;
}

.portfolio-desc-secondary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.portfolio-thumbnails {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.thumb-card {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 3px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.thumb-card.active {
  border-color: var(--bg-green);
  transform: scale(1.05);
}

.btn-see-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 45px;
  background-color: #ffffff;
  border: 1px solid rgba(32, 75, 56, 0.1);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.btn-see-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background-color: var(--bg-green);
  color: var(--text-light);
  border-color: var(--bg-green);
}

.portfolio-right-col {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}

.circular-outline-decor {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(32, 75, 56, 0.15);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.portfolio-slider-wrapper {
  position: relative;
  width: 440px;
  height: 520px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 2;
  overflow: hidden; /* Hide overflowing slides locally */
}

.portfolio-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.slider-nav-arrows {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 5;
}

.arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.arrow-btn i {
  width: 18px;
  height: 18px;
}

.arrow-btn:hover {
  background-color: var(--bg-green);
  color: var(--text-light);
  transform: scale(1.05);
}

/* Responsive Queries for new Portfolio */
@media (max-width: 1024px) {
  .portfolio-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .portfolio-left-col {
    padding-top: 40px;
  }
  
  .portfolio-slider-wrapper {
    width: 100%;
    max-width: 440px;
  }
  
  .circular-outline-decor {
    width: 100%;
    max-width: 520px;
    height: 100%;
    max-height: 520px;
  }
}

/* --- RSVP Form Section --- */
.rsvp-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.rsvp-content .section-title {
  margin-bottom: 24px;
}

.rsvp-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(32, 75, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-green);
}

.contact-icon i {
  width: 20px;
  height: 20px;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.rsvp-form-container-new {
  background-color: #ffffff;
  border: 1px solid rgba(32, 75, 56, 0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border-radius: 20px;
  padding: 40px;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  background: #faf7f2;
  border: 1px solid rgba(32, 75, 56, 0.1);
  border-radius: 8px;
  padding: 12px 16px 12px 48px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.rsvp-form textarea {
  padding-left: 16px;
  resize: vertical;
}

.rsvp-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.input-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  pointer-events: none;
}

.form-group:not(:has(select)) .input-wrapper::after {
  display: none;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  outline: none;
  border-color: var(--bg-green);
  box-shadow: 0 0 10px rgba(32, 75, 56, 0.1);
  background: #ffffff;
}

/* Form success panel */
.rsvp-success {
  text-align: center;
  padding: 40px 10px;
  animation: fadeIn 0.5s forwards ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(32, 75, 56, 0.06);
  border: 1px solid rgba(32, 75, 56, 0.15);
  color: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.success-icon i {
  width: 40px;
  height: 40px;
}

.rsvp-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.rsvp-success p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.ticket-id-display {
  display: inline-block;
  background: var(--bg-color);
  border: 1px dashed rgba(32, 75, 56, 0.2);
  padding: 10px 24px;
  border-radius: 6px;
  margin: 20px 0 35px 0 !important;
  font-family: var(--font-heading);
  font-size: 1.1rem !important;
  letter-spacing: 2px;
  color: var(--bg-green) !important;
  font-weight: 700;
}

/* --- Services Subtitle Wheat Sprig Styling --- */
.services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.subtitle-sprig {
  color: var(--accent-sand); /* Sand-colored sprig wheat */
  opacity: 0.95;
  width: 18px;
  height: 18px;
}

.left-sprig {
  transform: scaleX(-1); /* Points left-upward symmetrically */
}

/* --- Instagram Gallery Feed --- */
.instagram-feed {
  background-color: var(--bg-color);
  padding: 100px 0;
  border-top: 1px solid var(--border-gold);
}

.highlight-sand {
  color: var(--accent-sand) !important;
}

.centered {
  text-align: center;
}

.centered .section-subtitle {
  display: inline-block;
  text-align: center;
  margin: 0 auto 12px auto;
}

.centered .section-title {
  text-align: center;
}

.centered .section-description {
  margin-left: auto;
  margin-right: auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  margin-top: 50px;
}

.insta-item {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.insta-item.large-item {
  grid-column: span 2;
  grid-row: span 2;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 75, 56, 0.85); /* Forest green brand color with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.insta-overlay i {
  color: var(--text-light);
  width: 28px;
  height: 28px;
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-item:hover .insta-overlay i {
  transform: scale(1);
}

.insta-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(32, 75, 56, 0.12);
}

/* Responsive queries for Instagram Grid */
@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
  
  .insta-item.large-item {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 150px;
  }
  
  .insta-item.large-item {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* --- Footer --- */
/* --- Footer --- */
.footer {
  background-color: var(--bg-green); /* Forest green color */
  border-top: 1px solid rgba(229, 196, 163, 0.15);
  padding: 80px 0 40px 0;
  color: var(--text-light);
  position: relative;
  
  /* Large floral leaf outline contour overlay matching reference */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' opacity='0.08'><path d='M450,600 C500,450 650,300 700,100 C600,250 500,400 450,600 Z' fill='none' stroke='white' stroke-width='1.5'/><path d='M700,100 C730,180 750,300 680,450 C630,350 650,220 700,100 Z' fill='none' stroke='white' stroke-width='1.5'/><path d='M450,600 C350,550 250,450 150,350 C300,380 400,450 450,600 Z' fill='none' stroke='white' stroke-width='1.5'/><path d='M450,600 C480,500 520,380 700,100' fill='none' stroke='white' stroke-width='1' stroke-dasharray='4,4'/></svg>");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 550px;
}

.footer-content-new {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* Logo block column */
.footer-col-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-logo-new {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
}

.logo-v {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 0.75;
  font-weight: 300;
  color: var(--text-light);
}

.logo-rest {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 0.9;
  font-weight: 400;
  margin-left: -2px;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-sand);
  margin-top: 15px;
  text-transform: uppercase;
}

/* Standard columns content */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-who-text {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 8px; /* Square rounded icon borders matching picture */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-social-icons a:hover {
  background: rgba(229, 196, 163, 0.1);
  border-color: var(--accent-sand);
  color: var(--accent-sand);
  transform: translateY(-2px);
}

.footer-social-icons a i {
  width: 20px;
  height: 20px;
}

.footer-links-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-new a {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links-new a:hover {
  color: var(--accent-sand);
  padding-left: 4px;
}

.footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
  opacity: 0.7;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-green-block {
    border-bottom-right-radius: 0;
    padding: 130px 40px 80px 40px;
  }

  .hero-main-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-center-content-overlay {
    position: relative;
    top:auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    pointer-events: auto;
  }

  .hero-image-frame {
    padding: 0;
  }

  .hero-img {
    border-bottom-left-radius: 0;
    height: 480px;
  }

  .hero-testimonial-block {
    padding: 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rsvp-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .navbar {
    height: 65px; /* Shorter mobile height */
  }

  .logo {
    font-size: 2.1rem; /* Shorter mobile logo */
  }

  .nav-phone {
    display: none;
  }

  .hero-green-block .hero-title {
    font-size: 3.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .filter-controls {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Navigation Mobile Menu */
  .mobile-toggle {
    display: block;
    color: var(--text-light);
  }

  .header.scrolled .mobile-toggle {
    color: var(--text-light);
  }

  .nav {
    position: fixed;
    top: 65px; /* Adjusted to mobile navbar height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background: rgba(32, 75, 56, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99;
    padding: 40px 24px;
    transition: var(--transition-smooth);
  }

  .header.scrolled .nav {
    top: 55px; /* Adjusted to scrolled navbar height */
    height: calc(100vh - 55px);
    background: rgba(32, 75, 56, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-divider {
    display: none;
  }

  .nav-link {
    font-size: 1.25rem;
    color: var(--text-light) !important;
  }

  .header.scrolled .nav-link {
    color: var(--text-light) !important;
  }

  .rsvp-form-container-new {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-green-block .hero-title {
    font-size: 2.8rem;
  }

  .stat-group {
    flex-direction: column;
    gap: 30px;
  }

  .testimonial-text {
    font-size: 1.4rem;
  }

  .btn-sand {
    width: 100%;
    justify-content: center;
  }

  .hero-food-plate {
    width: 240px;
    height: 240px;
    bottom: -60px;
    left: -60px;
  }
}
