/* ===================================
   ESPACE NY AKANINTSIKA - DESIGN SYSTEM
   =================================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors - White, Pink, Beige, Light Gray */
  --color-primary: #D4A0A0;
  --color-primary-light: #E8B4B4;
  --color-primary-dark: #5A4A4A;
  --color-accent: #D4A0A0;
  --color-accent-light: #E8C4C4;
  --color-accent-dark: #B88A8A;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAF5F0;
  --color-bg-dark: #5A4A4A;
  --color-text: #3D3D3D;
  --color-text-light: #6B6B6B;
  --color-text-muted: #999999;
  --color-white: #FFFFFF;
  --color-border: #E8E0D8;
  --color-overlay: rgba(90, 74, 74, 0.65);
  --color-beige: #F5EDE4;
  --color-pink: #D4A0A0;
  --color-pink-light: #F2D5D5;
  --color-gray-light: #E8E4E0;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders & Radius - SQUARE */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-pink: 0 4px 20px rgba(212, 160, 160, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-elegant: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 70ch;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-pink);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-xs);
}

.section-title {
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-pink-light));
  margin-top: var(--space-sm);
}

.section-title.center::after {
  margin-left: auto;
  margin-right: auto;
}

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

.section-description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-pink), var(--color-accent-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-pink-light), var(--color-pink));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 160, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-pink);
}

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

.btn-dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   HEADER
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
  position: relative;
}

.header-logo img {
  height: 55px;
  width: 55px;
  border-radius: var(--radius-full);
  object-fit: cover;
  transition: var(--transition-base);
}

.header.scrolled .header-logo img {
  height: 45px;
  width: 45px;
}

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

.header-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.header.scrolled .header-logo-text .name {
  color: var(--color-primary-dark);
}

.header-logo-text .tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-pink-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header.scrolled .header-logo-text .tagline {
  color: var(--color-pink);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0;
  position: relative;
  transition: all var(--transition-base);
}

.header.scrolled .nav-links a {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-pink);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-pink);
}

.header-cta .btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
}

/* Nav Close Button - hidden on desktop */
.nav-close-btn {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .mobile-menu-toggle span {
  background: var(--color-primary-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(90, 74, 74, 0.2) 0%,
      rgba(90, 74, 74, 0.3) 50%,
      rgba(60, 50, 50, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 160, 160, 0.2);
  border: 1px solid rgba(212, 160, 160, 0.5);
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  animation: heroFadeIn 1.4s ease-out;
}

.hero-badge span {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--color-pink-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Small venue name */
.hero-venue-name {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--color-pink-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  font-weight: 400;
  animation: heroFadeIn 1.3s ease-out;
}

/* Large slogan */
.hero-slogan {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: sloganReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-slogan .highlight {
  color: var(--color-pink-light);
  font-style: italic;
}

@keyframes sloganReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    filter: blur(10px);
  }

  50% {
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: heroButtonsReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

@keyframes heroButtonsReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Galerie button special style */
.btn-galerie {
  background: linear-gradient(135deg, var(--color-pink), #C48B8B);
  color: var(--color-white);
  box-shadow: 0 4px 25px rgba(212, 160, 160, 0.4);
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-galerie::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-galerie:hover::before {
  left: 100%;
}

.btn-galerie:hover {
  box-shadow: 0 8px 35px rgba(212, 160, 160, 0.55);
  transform: translateY(-3px);
}

/* Video button style */
.btn-videos {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-pink-light);
  box-shadow: 0 4px 20px rgba(212, 160, 160, 0.15);
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-videos::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 160, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-videos:hover::before {
  left: 100%;
}

.btn-videos:hover {
  background: rgba(212, 160, 160, 0.15);
  border-color: var(--color-white);
  box-shadow: 0 8px 30px rgba(212, 160, 160, 0.3);
  transform: translateY(-3px);
}

/* Contact Dropdown Styles */
.hero-contact-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-options {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--color-primary-dark);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 0 1rem;
  width: max-content;
  z-index: 10;
}

.contact-options.expanded {
  max-height: 250px;
  opacity: 1;
  padding: 1rem;
}

.contact-opt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-white);
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all var(--transition-base);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.contact-opt:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-opt.whatsapp:hover { color: #25D366; }
.contact-opt.call:hover { color: var(--color-pink-light); }
.contact-opt.messenger:hover { color: #00B2FF; }
.contact-opt.email:hover { color: #5B9AFF; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

@keyframes scrollBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(8px);
  }

  60% {
    transform: translateX(-50%) translateY(4px);
  }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  background: var(--color-bg);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text {
  padding-right: var(--space-lg);
}

.about-text p {
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-pink-light));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--color-primary-dark);
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

/* About Slideshow */
.about-slideshow {
  position: relative;
  width: 100%;
  height: 500px;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-image:hover .about-slide.active {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--color-pink);
  border-radius: 0;
  z-index: -1;
  opacity: 0.4;
}

.about-stats {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: 0;
  display: flex;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-pink-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  background: var(--color-beige);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--color-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-elegant);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.service-card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(212, 160, 160, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  z-index: 2;
}

.service-card-body {
  padding: 1.8rem;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary-dark);
}

.service-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.service-card-body .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-pink);
  transition: var(--transition-base);
}

.service-card-body .btn-link:hover {
  color: var(--color-primary-dark);
  gap: 0.7rem;
}

/* ===================================
   VIDEOS SECTION
   =================================== */
.videos-section {
  background: var(--color-bg);
  overflow: hidden;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.video-card {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-elegant);
  background: #000;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ===================================
   EQUIPEMENTS / GALLERY SECTION - POLAROID
   =================================== */
.equipements {
  background: var(--color-beige);
  overflow: hidden;
  position: relative;
}

.equipements::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('couverture/c2.webp') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.equipements::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 237, 228, 0.85);
  z-index: 0;
}

.equipements>.container {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: var(--space-lg);
}

.gallery-item.polaroid {
  position: relative;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
  transition: all var(--transition-elegant);
}

.gallery-item.polaroid:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.gallery-item.polaroid:nth-child(even):hover {
  transform: translateY(-8px) rotate(1deg);
}

.polaroid-inner {
  background: #fff;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: box-shadow var(--transition-base);
}

.gallery-item.polaroid:hover .polaroid-inner {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.polaroid-inner img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item.polaroid:hover .polaroid-inner img {
  transform: scale(1.03);
}

/* Decorative tape effect on some polaroids */
.gallery-item.polaroid:nth-child(1) .polaroid-inner::after,
.gallery-item.polaroid:nth-child(4) .polaroid-inner::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px;
  height: 20px;
  background: rgba(212, 160, 160, 0.3);
  border-radius: 2px;
}

.gallery-item.polaroid:nth-child(2) .polaroid-inner::after,
.gallery-item.polaroid:nth-child(5) .polaroid-inner::after {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 50px;
  height: 18px;
  background: rgba(245, 237, 228, 0.5);
  border-radius: 2px;
  transform: rotate(3deg);
}

.gallery-see-more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
  background: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 160, 160, 0.12);
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 160, 160, 0.08);
}

.testimonials .section-subtitle {
  color: var(--color-pink-light);
}

.testimonials .section-title {
  color: var(--color-white);
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-elegant);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--color-pink);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: none;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--color-white);
  font-size: 1rem;
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--color-pink-light);
  font-family: var(--font-accent);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-pink);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(212, 160, 160, 0.4);
  background: transparent;
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  background: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--color-pink);
  width: 28px;
  border-radius: 5px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, var(--color-primary-dark), #4A3A3A);
  border-radius: 0;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(212, 160, 160, 0.1) 0%, transparent 60%);
}

.cta-inner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
  font-size: 1.1rem;
}

.cta-inner .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ===================================
   FLOATING CALL BUTTON
   =================================== */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--color-pink), var(--color-accent-dark));
  color: white;
  border-radius: 60px;
  box-shadow: 0 6px 30px rgba(212, 160, 160, 0.5);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  text-decoration: none;
}

.floating-call-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(212, 160, 160, 0.6);
}

.floating-call-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pulse animation on the button */
.floating-call-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-accent-dark));
  opacity: 0;
  z-index: -1;
  animation: floatingPulse 2s infinite;
}

@keyframes floatingPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding-top: var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer-brand .header-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-pink);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover {
  color: var(--color-pink);
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 0;
  background: rgba(212, 160, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pink);
  font-size: 0.9rem;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--color-pink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--color-pink);
}

/* ===================================
   ANIMATIONS (Scroll Reveal)
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animations */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.revealed>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.revealed>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.revealed>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.revealed>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger.revealed>*:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-stagger.revealed>*:nth-child(6) {
  transition-delay: 0.6s;
}

.reveal-stagger.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-text {
    padding-right: 0;
    order: 2;
  }

  .about-image-wrapper {
    order: 1;
  }

  .about-slideshow {
    height: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-beige);
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1002;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-close-btn {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--color-primary-dark);
    border-radius: 50%;
    color: var(--color-primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(-90deg);
  }

  .main-nav.open .nav-close-btn {
    opacity: 1;
    transform: rotate(0deg);
    transition-delay: 0.2s;
  }

  .nav-close-btn:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
  }

  .main-nav .nav-links a {
    color: var(--color-primary-dark);
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .main-nav .nav-links a:hover,
  .main-nav .nav-links a.active {
    color: var(--color-pink);
    background: rgba(212, 160, 160, 0.1);
  }

  .main-nav .header-cta .btn {
    color: var(--color-white);
  }

  .nav-links {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .main-nav.open .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
  .main-nav.open .nav-links li:nth-child(2) { transition-delay: 0.15s; }
  .main-nav.open .nav-links li:nth-child(3) { transition-delay: 0.2s; }
  .main-nav.open .nav-links li:nth-child(4) { transition-delay: 0.25s; }
  .main-nav.open .nav-links li:nth-child(5) { transition-delay: 0.3s; }
  .main-nav.open .nav-links li:nth-child(6) { transition-delay: 0.35s; }
  .main-nav.open .nav-links li:nth-child(7) { transition-delay: 0.4s; }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 1.2rem;
    width: 100%;
    text-align: left;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(212, 160, 160, 0.15);
  }

  .nav-links a::after {
    display: none;
  }

  .header-cta {
    width: 100%;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  }

  .main-nav.open .header-cta {
    opacity: 1;
    transform: translateY(0);
  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  .hero-slogan {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-venue-name {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

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

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

  .about-slideshow {
    height: 300px;
  }

  .about-stats {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: var(--space-md);
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .cta-inner {
    padding: var(--space-xl) var(--space-md);
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .testimonial-card {
    padding: 1.5rem;
  }

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

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

  .videos-grid .video-card:last-child {
    max-width: 100%;
  }

  .floating-call-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: var(--space-xl) 0;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
  }

  .floating-call-text {
    display: none;
  }

  .floating-call-btn {
    padding: 1rem;
    border-radius: 50%;
  }
}