/* =============================================
   COSMINA STROE — Premium Patisserie Website
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --pink-light: #f7ddea;
  --pink-mid: #f2c6d4;
  --pink-deep: #e8a9be;
  --gold: #d4b27a;
  --gold-light: #e8d0a0;
  --gold-dark: #b8945a;
  --white: #ffffff;
  --cream: #fdf6f0;
  --text-dark: #3a2a35;
  --text-mid: #6b4d5a;
  --text-light: #a07a8a;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Poppins', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 20px rgba(212, 178, 122, 0.15);
  --shadow-md: 0 8px 40px rgba(212, 178, 122, 0.22);
  --shadow-lg: 0 20px 60px rgba(212, 178, 122, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
}

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

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  border-radius: 50px;
}

.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 178, 122, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 178, 122, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  border-color: var(--white);
}

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

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 250, 252, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(212, 178, 122, 0.15);
}

@media (max-width: 768px) {
  .navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.navbar.scrolled .nav-logo { color: var(--text-dark); }

.logo-icon {
  color: var(--gold);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: absolute;
  right: 40px;
}

.burger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .burger span { background: var(--text-dark); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, #f9e8ef 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, #fce8d4 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, var(--pink-mid) 0%, transparent 50%),
    linear-gradient(160deg, #f9d8e8 0%, #f5e0c8 40%, #f2d6e8 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(242, 198, 212, 0.3) 0%,
    rgba(247, 221, 234, 0.4) 50%,
    rgba(212, 178, 122, 0.15) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat var(--duration, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero-logo {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.1s forwards;
  position: relative;
  display: inline-block;
}

.hero-logo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 178, 122, 0.6);
  box-shadow:
    0 0 0 6px rgba(247, 221, 234, 0.4),
    0 0 0 12px rgba(212, 178, 122, 0.15),
    0 8px 32px rgba(212, 178, 122, 0.4);
  animation: logoFloat 6s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
}

.hero-logo::before,
.hero-logo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-out infinite;
  pointer-events: none;
}

.hero-logo::before {
  width: 130px;
  height: 130px;
  border: 1.5px solid rgba(212, 178, 122, 0.5);
  animation-delay: 0s;
}

.hero-logo::after {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(242, 198, 212, 0.4);
  animation-delay: 1.5s;
}

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

@keyframes logoGlow {
  from {
    box-shadow:
      0 0 0 6px rgba(247, 221, 234, 0.3),
      0 0 0 12px rgba(212, 178, 122, 0.1),
      0 8px 30px rgba(212, 178, 122, 0.35);
  }
  to {
    box-shadow:
      0 0 0 8px rgba(247, 221, 234, 0.5),
      0 0 0 16px rgba(212, 178, 122, 0.2),
      0 12px 50px rgba(212, 178, 122, 0.6),
      0 0 40px rgba(242, 198, 212, 0.3);
  }
}

@keyframes ringPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
  display: block;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

/* Override hero button colors for light bg */
.hero .btn-outline {
  color: var(--text-dark);
  border-color: var(--gold);
}

.hero .btn-outline:hover {
  background: rgba(212, 178, 122, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
  pointer-events: none;
  transition: opacity 0.3s;
}

.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ---- Services ---- */
.services {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

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

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

.service-card {
  background: linear-gradient(145deg, var(--white), var(--cream));
  border: 1px solid rgba(212, 178, 122, 0.2);
  border-radius: var(--radius);
  padding: 42px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-mid), var(--gold), var(--pink-mid));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 178, 122, 0.4);
}

.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-mid));
  border-radius: 14px;
  margin-bottom: 20px;
  transition: transform 0.4s;
}

.card-icon i, .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  stroke-width: 1.5;
}

.service-card:hover .card-icon { transform: scale(1.15) rotate(5deg); }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

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

.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80px;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-15deg) translateX(-100px);
  transition: none;
}

.service-card:hover .card-shine {
  transition: transform 0.7s ease;
  transform: skewX(-15deg) translateX(400px);
}

/* ---- About ---- */
.about {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--cream) 0%, #fef0f5 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.about-bg-deco {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 198, 212, 0.3), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  position: relative;
  padding: 20px;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(212, 178, 122, 0.3);
  border-radius: var(--radius);
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
}

.frame-corner.top-left { top: -4px; left: -4px; border-width: 2px 0 0 2px; border-radius: 6px 0 0 0; }
.frame-corner.top-right { top: -4px; right: -4px; border-width: 2px 2px 0 0; border-radius: 0 6px 0 0; }
.frame-corner.bottom-left { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; border-radius: 0 0 0 6px; }
.frame-corner.bottom-right { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; border-radius: 0 0 6px 0; }

.about-img-placeholder {
  border-radius: var(--radius-sm);
  height: 460px;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 0 30px rgba(242, 198, 212, 0.7))
    drop-shadow(0 0 60px rgba(212, 178, 122, 0.4))
    drop-shadow(0 0 100px rgba(242, 198, 212, 0.3));
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    filter:
      drop-shadow(0 0 20px rgba(242, 198, 212, 0.6))
      drop-shadow(0 0 50px rgba(212, 178, 122, 0.35))
      drop-shadow(0 0 80px rgba(242, 198, 212, 0.25));
  }
  to {
    filter:
      drop-shadow(0 0 40px rgba(242, 198, 212, 0.9))
      drop-shadow(0 0 80px rgba(212, 178, 122, 0.55))
      drop-shadow(0 0 120px rgba(242, 198, 212, 0.4));
  }
}

/* Cake Illustration */
.cake-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cake-tier {
  border-radius: 6px;
  position: relative;
}

.tier-3 {
  width: 80px;
  height: 50px;
  background: linear-gradient(145deg, #fff5f8, #f7c8d8);
  border: 2px solid rgba(212, 178, 122, 0.4);
  border-radius: 8px 8px 4px 4px;
}

.tier-2 {
  width: 120px;
  height: 60px;
  background: linear-gradient(145deg, #fff0f5, var(--pink-mid));
  border: 2px solid rgba(212, 178, 122, 0.4);
  margin-top: -2px;
}

.tier-1 {
  width: 160px;
  height: 70px;
  background: linear-gradient(145deg, #fce8ef, var(--pink-deep));
  border: 2px solid rgba(212, 178, 122, 0.4);
  margin-top: -2px;
  border-radius: 4px 4px 8px 8px;
}

.cake-topper {
  position: absolute;
  top: -32px;
  font-size: 1.5rem;
  color: var(--gold);
  animation: spin 8s linear infinite;
}

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

.cake-plate {
  width: 200px;
  height: 16px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  margin-top: 4px;
}

.floating-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  font-size: 1.4rem;
  animation: floatDot var(--dur, 5s) var(--d, 0s) infinite ease-in-out alternate;
}

.dot-1 { top: 15%; left: 15%; --dur: 4s; --d: 0s; }
.dot-2 { top: 10%; right: 18%; --dur: 5s; --d: 0.8s; }
.dot-3 { bottom: 20%; left: 12%; --dur: 4.5s; --d: 0.4s; }
.dot-4 { bottom: 15%; right: 15%; --dur: 5.5s; --d: 1.2s; }

@keyframes floatDot {
  from { transform: translateY(0) rotate(-5deg); }
  to { transform: translateY(-18px) rotate(5deg); }
}

.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; }
.about-text .gold-divider { margin: 0 0 28px 0; }

.about-body {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 178, 122, 0.2);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---- Gallery ---- */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

/* Category sections */
.gallery-category {
  margin-bottom: 72px;
}

.gallery-category:last-child { margin-bottom: 0; }

.gallery-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.gallery-cat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-mid));
  border-radius: 10px;
  flex-shrink: 0;
}

.gallery-cat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dark);
  stroke-width: 1.5;
}

.gallery-cat-title {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.gallery-cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,178,122,0.5), transparent);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  min-width: calc((100% - 32px) / 3);
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .carousel-slide { min-width: 100% !important; width: 100% !important; height: 260px; }
  .carousel-track { gap: 0; }
}

@media (max-width: 480px) {
  .carousel-slide { min-width: 100% !important; width: 100% !important; height: 240px; }
  .carousel-track { gap: 0; }
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide:hover .gallery-placeholder { transform: scale(1.07); }

.gallery-emoji { font-size: 4rem; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12)); }

/* Torturi palette */
.gc-t1 { background: linear-gradient(135deg, #fce8ef, #f9d0df); }
.gc-t2 { background: linear-gradient(135deg, #f5e8f5, #edd0ec); }
.gc-t3 { background: linear-gradient(135deg, #eee8fc, #d8d0f8); }
.gc-t4 { background: linear-gradient(135deg, #fce4ee, #f9c8dc); }
.gc-t5 { background: linear-gradient(135deg, #f8e0ec, #f2c8da); }
.gc-t6 { background: linear-gradient(135deg, #f0e4f8, #e0c8f0); }
.gc-t7 { background: linear-gradient(135deg, #fdf0e0, #f8dcc8); }
.gc-t8 { background: linear-gradient(135deg, #f8eaf0, #f0d4e4); }

/* Candy Bar palette */
.gc-c1 { background: linear-gradient(135deg, #fce8dc, #f8d0be); }
.gc-c2 { background: linear-gradient(135deg, #f4e0d8, #ecc8bc); }
.gc-c3 { background: linear-gradient(135deg, #fcecd8, #f8d8b8); }
.gc-c4 { background: linear-gradient(135deg, #fce4d8, #f8ccbc); }
.gc-c5 { background: linear-gradient(135deg, #f8f0e0, #f0e0c0); }
.gc-c6 { background: linear-gradient(135deg, #fde8d8, #f9d0b8); }
.gc-c7 { background: linear-gradient(135deg, #f9e4cc, #f4d0a8); }

/* Prăjituri palette */
.gc-p1 { background: linear-gradient(135deg, #f8f0d8, #f0e0b8); }
.gc-p2 { background: linear-gradient(135deg, #f0fce8, #d8f0c8); }
.gc-p3 { background: linear-gradient(135deg, #e8f4fc, #c8e4f8); }
.gc-p4 { background: linear-gradient(135deg, #f8e8e8, #f0d0d0); }
.gc-p5 { background: linear-gradient(135deg, #f4f0e0, #e8e0c0); }
.gc-p6 { background: linear-gradient(135deg, #e8f0fc, #d0e0f8); }
.gc-p7 { background: linear-gradient(135deg, #fce8f4, #f8d0ec); }
.gc-p8 { background: linear-gradient(135deg, #f0e8fc, #dcd0f8); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 42, 53, 0.78), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.carousel-slide:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* Carousel Buttons */
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 178, 122, 0.4);
  background: var(--white);
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-btn-prev { margin-right: 16px; }
.carousel-btn-next { margin-left: 16px; }

/* Real images in slides */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide:hover img { transform: scale(1.07); }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 178, 122, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.gallery-category {
  margin-bottom: 96px; /* extra space for dots */
}

/* ---- Contact ---- */
.contact {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--pink-light) 100%);
  position: relative;
  overflow: hidden;
}

.contact-bg-deco {
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 178, 122, 0.15), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid-single .contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .contact-grid-single .contact-items {
    grid-template-columns: 1fr;
  }
}

.contact-info h3,
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 178, 122, 0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(6px);
  border-color: rgba(212, 178, 122, 0.5);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-mid));
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
  stroke-width: 1.5;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2px;
}

.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(212, 178, 122, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 178, 122, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(212, 178, 122, 0.1), rgba(242, 198, 212, 0.1));
  border: 1px solid rgba(212, 178, 122, 0.3);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-style: italic;
}

.form-success.show { display: block; animation: fadeIn 0.5s forwards; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 25, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(212, 178, 122, 0.4);
  border-color: var(--gold);
}

.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212, 178, 122, 0.4);
  border-color: var(--gold);
}

.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }

/* ---- Footer ---- */
.footer {
  background: var(--text-dark);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 178, 122, 0.4);
  margin-bottom: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  font-family: var(--ff-display);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* Mobile menu blur overlay */
.menu-blur-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 42, 53, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-blur-overlay.active {
  opacity: 1;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in { animation: fadeIn 1s forwards; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger delays for children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(7) { transition-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(8) { transition-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(9) { transition-delay: 0.25s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-placeholder { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .burger { display: flex; top: 8px; }

  .navbar { padding: 20px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: rgba(255, 250, 252, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 50px rgba(212, 178, 122, 0.2);
  }

  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-dark) !important; font-size: 1.1rem; }
  .nav-links .nav-cta { padding: 12px 28px; display: inline-block; }

  /* Overlay behind modal */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 42, 53, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Close button */
  .nav-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
  }

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

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

  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 260px; justify-content: center; }

  .about-text .section-eyebrow,
  .about-text .section-title { text-align: center; }
  .about-text .gold-divider { margin: 0 auto 28px; }
  .about-stats { justify-content: center; }

  .contact-form { padding: 28px 24px; }

  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
}

@media (max-width: 480px) {
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 260px; justify-content: center; }
}
