/* ============================================================
   EXCELLENCY MIDLANDS — MAIN STYLESHEET
   ============================================================
   COLOUR VARIABLES — change these to restyle the whole site
   ============================================================ */

:root {
  /* Brand colours */
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #9B7940;
  --black:       #0A0A0A;
  --dark:        #111111;
  --charcoal:    #1E1E1E;
  --cream:       #F9F5F0;
  --cream-dark:  #F0E8DC;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #8A8A8A;

  /* Fonts — change font-family here to swap the whole site */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', Arial, sans-serif;

  /* Spacing */
  --section-pad:    100px 0;
  --container-max:  1200px;

  /* Transitions */
  --t:      all 0.3s ease;
  --t-slow: all 0.6s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overscroll-behavior-x: none; /* stops iOS elastic/bounce scroll revealing background */
  background-color: #0A0A0A;  /* matches --dark so overscroll gap is invisible */
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y; /* blocks horizontal swipe gestures on iOS */
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

::selection { background: rgba(201,169,110,0.25); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.55rem); }

p { font-size: 1rem; color: var(--text-mid); line-height: 1.9; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title { font-weight: 400; color: var(--text-dark); margin-bottom: 16px; }
.section-title.light { color: var(--white); }

.gold-divider {
  width: 55px;
  height: 1px;
  background-color: var(--gold);
  margin: 16px auto 24px;
}
.gold-divider.left { margin-left: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container { width: 90%; max-width: var(--container-max); margin: 0 auto; }

.section {
  padding: var(--section-pad);
  overflow: hidden; /* clips fade-in translateX animations at the section edge */
}
.section.dark       { background-color: var(--dark); }
.section.charcoal   { background-color: var(--charcoal); }
.section.cream      { background-color: var(--cream); }
.section.cream-dark { background-color: var(--cream-dark); }

.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   PAGE LOADER
   ============================================================ */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-ring {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(201,169,110,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--t);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-links > li { position: relative; }

.nav-links > li > a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--t);
}

.nav-links > li > a:hover { color: var(--gold); }
.nav-links > li > a:hover::after { width: 100%; }

.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a.active::after { width: 100%; }

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

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(10,10,10,0.97);
  min-width: 180px;
  border-top: 1px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
  z-index: 200;
}

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

.dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--t);
}

.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--gold); padding-left: 26px; }

/* Nav CTA button */
.nav-cta {
  background-color: var(--gold) !important;
  color: var(--black) !important;
  padding: 11px 22px !important; /* !important overrides nav-links > li > a { padding-bottom: 4px } */
  font-weight: 600;
  letter-spacing: 0.12em;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background-color: var(--gold-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--t);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.99);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav .mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--white);
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
}

.mobile-nav .mobile-close:hover { color: var(--gold); }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  color: rgba(255,255,255,0.85);
  transition: var(--t);
  text-align: center;
}

.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a.mobile-cta { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.32);
}

.btn-outline { border: 1px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

/* ============================================================
   HERO — FULL HEIGHT
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  
  /* ── ADD YOUR HERO IMAGE ──────────────────────────────────
     Remove the background lines below and add:
     background-image: url('images/hero-home.jpg');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     ─────────────────────────────────────────────────────── */

     background-image: url('images/EXCELLENCY MIDLANDS - OUTSIDE.jpg');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeInUp 1.1s ease both;
}

.hero-tagline {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 6px;
}

/* ============================================================
   PAGE HERO — SHORTER (inner pages)
   ============================================================ */

.page-hero {
  height: 58vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow-x: hidden;

  /* ── ADD YOUR PAGE HERO IMAGE ─────────────────────────────
     background-image: url('images/page-hero-about.jpg');
     background-size: cover;
     background-position: center;
     ─────────────────────────────────────────────────────── */
     
    background-image: url('images/EXCELLENCY MIDLANDS - BRIDE 1.jpg');
    background-size: cover;
    background-position: center;
}

/* Unique gradient per page for visual variety */
.page-hero.hero-about    { background: linear-gradient(160deg, #120a05 0%, #0a0a0a 50%, #15100a 100%); }
.page-hero.hero-weddings { background: linear-gradient(160deg, #0a0010 0%, #0a0a0a 50%, #1a100a 100%); }
.page-hero.hero-catering { background: linear-gradient(160deg, #050a00 0%, #0a0a0a 50%, #1a0a0a 100%); }
.page-hero.hero-contact  { background: linear-gradient(160deg, #000510 0%, #0a0a0a 50%, #100510 100%); }
.page-hero.hero-booking  { background: linear-gradient(160deg, #100a00 0%, #0a0a0a 50%, #0a1010 100%); }

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
  z-index: 1;
}

/* Decorative gold glow */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.07) 0%, transparent 65%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.9s ease both;
}

.page-hero-content h1 { color: var(--white); margin-bottom: 14px; }

.breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ============================================================
   ABOUT INTRO (home & about pages)
   ============================================================ */

.about-intro-text { padding-right: 30px; }

.about-intro-image {
  height: 480px;
  /* ── ADD YOUR IMAGE ─────────────────────────────────────
     background-image: url('images/about-intro.jpg');
     background-size: cover;
     background-position: center;
     ─────────────────────────────────────────────────────── */
  background: linear-gradient(135deg, #1a1210 0%, #2a1f15 50%, #1a1210 100%);
  position: relative;
}

/* Offset gold border */
.about-intro-image::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   VENUE CARDS
   ============================================================ */

.venue-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  /* ── ADD YOUR VENUE IMAGE ────────────────────────────────
     background-image: url('images/versailles-palace.jpg');
     background-size: cover;
     background-position: center;
     ─────────────────────────────────────────────────────── */
  background: linear-gradient(135deg, #1a1005 0%, #0a0a0a 100%);
  cursor: pointer;
}

/* Each venue card gets a slightly different gradient */
.venue-card.venue-lotus {
  background: linear-gradient(135deg, #051a10 0%, #0a0a0a 100%);
}

.venue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.3) 55%,
    rgba(0,0,0,0.1) 100%);
  z-index: 1;
  transition: var(--t-slow);
}

.venue-card:hover::before {
  background: linear-gradient(to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.25) 100%);
}

.venue-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 38px;
  z-index: 2;
  transform: translateY(8px);
  transition: var(--t);
}

.venue-card:hover .venue-card-content { transform: translateY(0); }

.venue-card h3 { color: var(--white); margin-bottom: 10px; }

.venue-card-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.venue-card:hover .venue-card-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--white);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--t);
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.1);
}

.service-icon {
  width: 68px;
  height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--t);
}

.service-card:hover .service-icon { background: var(--gold); color: var(--black); }

.service-card h4 { color: var(--text-dark); margin-bottom: 12px; font-family: var(--font-heading); }
.service-card p { font-size: 0.9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px;
  position: relative;
  transition: var(--t);
}

.testimonial-card:hover { border-color: rgba(201,169,110,0.3); }

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 4px; left: 18px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.testimonial-author h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 4px;
}

.testimonial-author span { color: var(--gold); font-size: 0.75rem; }

/* ============================================================
   GALLERY GRID
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  /* ── ADD YOUR GALLERY IMAGES ──────────────────────────────
     Add background-image: url('images/gallery-1.jpg');
     directly on each .gallery-item element in the HTML.
     ─────────────────────────────────────────────────────── */
}

.gallery-item:first-child { grid-row: span 2; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: var(--t);
}

.gallery-item:hover::after { background: rgba(0,0,0,0.28); }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }

.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT CARDS
   ============================================================ */

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px; }

.contact-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(201,169,110,0.18);
  transition: var(--t);
  background: var(--white);
}

.contact-card:hover { border-color: var(--gold); box-shadow: 0 10px 40px rgba(0,0,0,0.07); }

.contact-card-icon {
  width: 58px; height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--t);
}

.contact-card:hover .contact-card-icon { background: var(--gold); color: var(--black); }

.contact-card h4 { color: var(--text-dark); font-size: 1rem; margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--text-mid); display: block; line-height: 1.8; }
.contact-card a:hover { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */

.form-container { max-width: 680px; margin: 0 auto; }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid #DDD;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

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

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* Time slot selector */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.time-slot {
  padding: 13px 6px;
  border: 1px solid #DDD;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
  background: var(--white);
  color: var(--text-dark);
  user-select: none;
}

.time-slot:hover { border-color: var(--gold); color: var(--gold-dark); }

.time-slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.time-slot-error { border-color: #e74c3c !important; }

/* Select arrow */
.select-wrapper { position: relative; }

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Form messages */
.form-error-msg {
  color: #e74c3c;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 14px;
  padding: 10px;
  background: rgba(231,76,60,0.06);
  border: 1px solid rgba(231,76,60,0.2);
}

.form-success-msg {
  display: none;
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--gold);
  padding: 24px;
  text-align: center;
  color: var(--text-dark);
  margin-top: 20px;
}

.form-success-msg.visible { display: block; }

/* Map placeholder */
.map-container {
  width: 100%;
  height: 380px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CATERING PAGE — CUISINE CARDS
   ============================================================ */

.cuisine-card {
  background: var(--white);
  padding: 42px 28px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: var(--t);
}

.cuisine-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
}

.cuisine-card .cuisine-icon { font-size: 2.6rem; margin-bottom: 14px; }
.cuisine-card h4 { color: var(--text-dark); font-size: 1.25rem; margin-bottom: 10px; }
.cuisine-card p { font-size: 0.88rem; }

/* Menu tiers */
.menu-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.menu-tier {
  background: var(--white);
  border: 1px solid #E8E8E8;
  padding: 44px 30px;
  text-align: center;
  position: relative;
  transition: var(--t);
}

.menu-tier.featured {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,169,110,0.12);
}

.menu-tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

.menu-tier:hover { box-shadow: 0 18px 50px rgba(0,0,0,0.1); transform: translateY(-4px); }
.menu-tier.featured:hover { transform: translateY(-4px); }

.tier-name { font-family: var(--font-heading); font-size: 2rem; color: var(--text-dark); margin-bottom: 6px; }
.tier-subtitle { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; display: block; }

.tier-features { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 28px; }
.tier-features li { font-size: 0.88rem; color: var(--text-mid); padding-left: 18px; position: relative; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* ============================================================
   WEDDINGS PAGE — VENUE DETAIL
   ============================================================ */

.venue-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.venue-detail:last-child { border-bottom: none; }
.venue-detail.reverse .venue-detail-image { order: 2; }
.venue-detail.reverse .venue-detail-text  { order: 1; }

.venue-detail-image {
  height: 480px;
  position: relative;
  /* ── ADD YOUR IMAGE ─────────────────────────────────────
     background-image: url('images/versailles-palace.jpg');
     background-size: cover;
     background-position: center;
     ─────────────────────────────────────────────────────── */
  background: linear-gradient(135deg, #1a1005 0%, #2a1f10 50%, #0a0a0a 100%);
}

.venue-detail.venue-lotus .venue-detail-image {
  background: linear-gradient(135deg, #051a10 0%, #102a1a 50%, #0a0a0a 100%);
}

.venue-capacity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.28);
  padding: 7px 14px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.venue-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0 28px;
}

.venue-features-list li { font-size: 0.85rem; color: var(--text-mid); padding-left: 16px; position: relative; }
.venue-features-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   ABOUT PAGE — TEAM SECTION
   ============================================================ */

.team-split { align-items: stretch; }

.team-large-photo {
  min-height: 540px;
  background-image: url('../images/team-group.jpg'), linear-gradient(135deg, #1a1005 0%, #2a1f10 100%);
  background-size: cover;
  background-position: center;
}

/* Values cards */
.value-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}

.value-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-4px); }

.value-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.value-card h4 { color: var(--white); margin-bottom: 10px; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ============================================================
   WHAT TO EXPECT (booking page)
   ============================================================ */

.expect-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.expect-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  transition: var(--t);
}

.expect-step:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.08); }

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
}

.expect-step h4 { color: var(--text-dark); margin-bottom: 10px; }
.expect-step p { font-size: 0.88rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--black); padding: 78px 0 0; overflow-x: hidden; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 46px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  opacity: 0.88;
  filter: brightness(0) invert(1); /* makes any logo white on the dark footer */
}

.footer-brand p { color: rgba(255,255,255,0.44); font-size: 0.88rem; line-height: 1.85; margin-bottom: 22px; }

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

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--t);
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.44);
  font-size: 0.88rem;
  transition: var(--t);
}

.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-links li span {
  color: rgba(255,255,255,0.44);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.78rem; }

.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); font-size: 0.78rem; transition: var(--t); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 500;
  transition: var(--t);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  cursor: pointer;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in       { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right { opacity: 0; transform: translateX(36px);  transition: opacity 0.7s ease, transform 0.7s ease; }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible { opacity: 1; transform: translate(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */

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

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

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

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */

@media (max-width: 960px) {
  :root { --section-pad: 70px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile: flex layout — logo centred, hamburger right */
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }

  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 38px 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  .about-intro-text { padding-right: 0; }
  .about-intro-image { height: 360px; }
  .about-intro-image::before { display: none; }

  .venue-detail { grid-template-columns: 1fr; gap: 30px; }
  .venue-detail.reverse .venue-detail-image,
  .venue-detail.reverse .venue-detail-text { order: unset; }

  .venue-detail-image { height: 340px; }

  .venue-features-list { grid-template-columns: 1fr; }

  .menu-tiers { grid-template-columns: 1fr; }
  .menu-tier.featured { transform: none; }

  .contact-cards { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item { height: 200px; }

  .time-slots { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }

  .expect-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */

@media (max-width: 600px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  /* ── HERO — bold, immersive, full-impact on mobile ── */
  .hero {
    min-height: 100svh; /* accounts for browser chrome on mobile */
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.65) 50%,
      rgba(0,0,0,0.82) 100%
    );
  }

  .hero-content {
    padding: 90px 22px 70px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-shadow: 0 3px 28px rgba(0,0,0,0.55);
  }

  .hero h1 em {
    display: block; /* keep italic line on its own for drama */
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.96rem;
    line-height: 1.7;
    padding: 0 8px;
    margin-bottom: 32px;
  }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn {
    width: 100%;
    max-width: 270px;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.76rem;
  }

  .hero-scroll { display: none; } /* hides scroll indicator on small screens */

  /* ── STATS — compact 2×2 grid instead of single column ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 26px 10px;
  }

  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07) !important; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }

  .stat-number { font-size: 2rem; }
  .stat-suffix { font-size: 1.3rem; }
  .stat-label  { font-size: 0.6rem; letter-spacing: 0.12em; margin-top: 4px; }

  /* ── OTHER ── */
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .venue-card { height: 380px; }
  .team-large-photo { min-height: 320px; }
}

/* ============================================================
   NAV LOGO IMAGE
   ============================================================ */

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.nav-logo-img:hover { opacity: 0.85; }

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Correct stacking order when video is present */
.hero::before  { z-index: 1; }
.hero-content  { z-index: 2; }
.hero-scroll   { z-index: 2; }

/* ============================================================
   THE BELLISSIMA (renamed from Lotus Gardens)
   ============================================================ */

.venue-card.venue-bellissima {
  background: linear-gradient(135deg, #0a051a 0%, #0a0a0a 100%);
}

.venue-detail.venue-bellissima .venue-detail-image {
  background: linear-gradient(135deg, #0a051a 0%, #1a102a 50%, #0a0a0a 100%);
}

/* ============================================================
   GALLERY — WIDE GRID (about & weddings pages)
   ============================================================ */

.gallery-grid-wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}

.gallery-grid-wide .gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-grid-wide .gallery-item:nth-child(4) { grid-column: span 2; }

@media (max-width: 960px) {
  .gallery-grid-wide {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid-wide .gallery-item        { height: 200px; }
  .gallery-grid-wide .gallery-item:nth-child(1),
  .gallery-grid-wide .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 600px) {
  .gallery-grid-wide { grid-template-columns: 1fr; }
}

/* ============================================================
   IMAGE REFERENCES
   Drop a file into the images/ folder with the matching name
   and it will appear automatically — no code changes needed.
   ============================================================

   logo.png              — navigation logo
   hero-video.mp4        — home page hero video
   hero-poster.jpg       — home page hero fallback still image

   hero-about.jpg        — About page hero banner
   hero-weddings.jpg     — Weddings page hero banner
   hero-catering.jpg     — Catering page hero banner
   hero-contact.jpg      — Contact page hero banner
   hero-booking.jpg      — Book a Viewing page hero banner

   about-intro.jpg       — About page "Who We Are" side image
   catering-intro.jpg    — Catering page intro side image

   versailles.jpg        — Versailles Palace (home card + weddings detail)
   bellissima.jpg        — The Bellissima (home card + weddings detail)

   gallery-1.jpg         — Home gallery image 1 (large, left)
   gallery-2.jpg         — Home gallery image 2
   gallery-3.jpg         — Home gallery image 3
   gallery-4.jpg         — Home gallery image 4
   gallery-5.jpg         — Home gallery image 5

   gallery-about-1.jpg   — About gallery image 1 (large, left)
   gallery-about-2.jpg   — About gallery image 2
   gallery-about-3.jpg   — About gallery image 3
   gallery-about-4.jpg   — About gallery image 4 (large)
   gallery-about-5.jpg   — About gallery image 5
   gallery-about-6.jpg   — About gallery image 6

   gallery-weddings-1.jpg  — Weddings gallery image 1 (large, left)
   gallery-weddings-2.jpg  — Weddings gallery image 2
   gallery-weddings-3.jpg  — Weddings gallery image 3
   gallery-weddings-4.jpg  — Weddings gallery image 4 (large)
   gallery-weddings-5.jpg  — Weddings gallery image 5
   gallery-weddings-6.jpg  — Weddings gallery image 6

   team-1.jpg            — Team member 1 (General Manager)
   team-2.jpg            — Team member 2 (Head Chef)
   team-3.jpg            — Team member 3 (Lead Wedding Planner)
   team-4.jpg            — Team member 4 (Creative Director)
   ============================================================ */

/* Page hero banners */
.page-hero.hero-about {
  background-image: url('../images/hero-about.jpg'), linear-gradient(160deg, #120a05 0%, #0a0a0a 50%, #15100a 100%);
  background-size: cover; background-position: center;
}
.page-hero.hero-weddings {
  background-image: url('../images/hero-weddings.jpg'), linear-gradient(160deg, #0a0010 0%, #0a0a0a 50%, #1a100a 100%);
  background-size: cover; background-position: center;
}
.page-hero.hero-catering {
  background-image: url('../images/hero-catering.jpg'), linear-gradient(160deg, #050a00 0%, #0a0a0a 50%, #1a0a0a 100%);
  background-size: cover; background-position: center;
}
.page-hero.hero-contact {
  background-image: url('../images/hero-contact.jpg'), linear-gradient(160deg, #000510 0%, #0a0a0a 50%, #100510 100%);
  background-size: cover; background-position: center;
}
.page-hero.hero-booking {
  background-image: url('../images/hero-booking.jpg'), linear-gradient(160deg, #100a00 0%, #0a0a0a 50%, #0a1010 100%);
  background-size: cover; background-position: center;
}

/* Intro side images */
.about-intro-image {
  background-image: url('../images/about-intro.jpg'), linear-gradient(135deg, #1a1210 0%, #2a1f15 50%, #1a1210 100%);
  background-size: cover; background-position: center;
}
.catering-intro-image {
  background-image: url('../images/catering-intro.jpg'), linear-gradient(135deg, #0a1005 0%, #1a2010 50%, #0a0a0a 100%);
  background-size: cover; background-position: center;
}

/* Venue cards — home page */
.venue-card.venue-versailles {
  background-image: url('../images/versailles.jpg'), linear-gradient(135deg, #1a1005 0%, #0a0a0a 100%);
  background-size: cover; background-position: center;
}
.venue-card.venue-bellissima {
  background-image: url('../images/bellissima.jpg'), linear-gradient(135deg, #0a051a 0%, #0a0a0a 100%);
  background-size: cover; background-position: center;
}

/* Venue detail images — weddings page */
.venue-detail-image.img-versailles {
  background-image: url('../images/versailles.jpg'), linear-gradient(135deg, #1a1005 0%, #2a1f10 50%, #0a0a0a 100%);
  background-size: cover; background-position: center;
}
.venue-detail.venue-bellissima .venue-detail-image {
  background-image: url('../images/bellissima.jpg'), linear-gradient(135deg, #0a051a 0%, #1a102a 50%, #0a0a0a 100%);
  background-size: cover; background-position: center;
}

/* Home gallery */
.gallery-grid .gallery-item:nth-child(1) { background-image: url('../images/gallery-1.jpg'), linear-gradient(135deg,#2a1a0a,#1a1a1a); }
.gallery-grid .gallery-item:nth-child(2) { background-image: url('../images/gallery-2.jpg'), linear-gradient(135deg,#0a1a2a,#1a1a1a); }
.gallery-grid .gallery-item:nth-child(3) { background-image: url('../images/gallery-3.jpg'), linear-gradient(135deg,#1a0a2a,#1a1a1a); }
.gallery-grid .gallery-item:nth-child(4) { background-image: url('../images/gallery-4.jpg'), linear-gradient(135deg,#1a2a0a,#1a1a1a); }
.gallery-grid .gallery-item:nth-child(5) { background-image: url('../images/gallery-5.jpg'), linear-gradient(135deg,#2a0a1a,#1a1a1a); }

/* About gallery */
.gallery-about .gallery-item:nth-child(1) { background-image: url('../images/gallery-about-1.jpg'), linear-gradient(135deg,#2a1a0a,#1a1a1a); }
.gallery-about .gallery-item:nth-child(2) { background-image: url('../images/gallery-about-2.jpg'), linear-gradient(135deg,#0a1a2a,#1a1a1a); }
.gallery-about .gallery-item:nth-child(3) { background-image: url('../images/gallery-about-3.jpg'), linear-gradient(135deg,#1a0a2a,#1a1a1a); }
.gallery-about .gallery-item:nth-child(4) { background-image: url('../images/gallery-about-4.jpg'), linear-gradient(135deg,#0a2a1a,#1a1a1a); }
.gallery-about .gallery-item:nth-child(5) { background-image: url('../images/gallery-about-5.jpg'), linear-gradient(135deg,#2a0a0a,#1a1a1a); }
.gallery-about .gallery-item:nth-child(6) { background-image: url('../images/gallery-about-6.jpg'), linear-gradient(135deg,#1a2a0a,#1a1a1a); }

/* Weddings gallery */
.gallery-weddings .gallery-item:nth-child(1) { background-image: url('../images/gallery-weddings-1.jpg'), linear-gradient(135deg,#1a0f05,#1a1a1a); }
.gallery-weddings .gallery-item:nth-child(2) { background-image: url('../images/gallery-weddings-2.jpg'), linear-gradient(135deg,#05101a,#1a1a1a); }
.gallery-weddings .gallery-item:nth-child(3) { background-image: url('../images/gallery-weddings-3.jpg'), linear-gradient(135deg,#100518,#1a1a1a); }
.gallery-weddings .gallery-item:nth-child(4) { background-image: url('../images/gallery-weddings-4.jpg'), linear-gradient(135deg,#1a1005,#1a1a1a); }
.gallery-weddings .gallery-item:nth-child(5) { background-image: url('../images/gallery-weddings-5.jpg'), linear-gradient(135deg,#051a10,#1a1a1a); }
.gallery-weddings .gallery-item:nth-child(6) { background-image: url('../images/gallery-weddings-6.jpg'), linear-gradient(135deg,#180510,#1a1a1a); }

/* Team group photo — drop images/team-group.jpg to activate */
.team-large-photo { background-image: url('../images/team-group.jpg'), linear-gradient(135deg,#1a1005,#2a1f10); }
