/* =============================================
   ASSY SURPRISES — GLOBAL STYLES
   Brand: Hot Pink, Deep Magenta, Gold, White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito:wght@400;600;700;800;900&family=Dancing+Script:wght@700&display=swap');

/* ── CSS Variables ── */
:root {
  --pink:        #E8097E;
  --pink-light:  #F472B6;
  --pink-pale:   #FDE8F4;
  --magenta:     #C2006A;
  --hot:         #FF2D9B;
  --gold:        #D4A017;
  --gold-light:  #F5C842;
  --cream:       #FFF8F2;
  --dark:        #1A0010;
  --dark-mid:    #3D0022;
  --white:       #FFFFFF;
  --red:         #C0001A;
  --purple:      #7B1FA2;

  --shadow-pink: 0 8px 40px rgba(232,9,126,0.25);
  --shadow-gold: 0 8px 40px rgba(212,160,23,0.3);
  --radius-sm:   10px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-xl:   48px;

  --font-display: 'Playfair Display', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Nunito', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pink-pale); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 0, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--pink);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.nav.scrolled {
  height: 60px;
  background: rgba(26,0,16,0.98);
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--pink-light);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(232,9,126,0.5);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.7rem;
  border-radius: 20px;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 15px rgba(232,9,126,0.4);
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--magenta)) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--pink-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile Nav ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(26,0,16,0.98);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  border-bottom: 2px solid var(--pink);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(232,9,126,0.2);
  transition: all 0.25s;
}

.nav-mobile a:hover {
  background: var(--pink);
  color: var(--white);
}

/* ═══════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════ */
.page-content {
  padding-top: 70px;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('../images/assy-background.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-decor .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-bg-decor .circle-1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; right: -200px;
  animation: floatBig 8s ease-in-out infinite;
}

.hero-bg-decor .circle-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -150px; left: -150px;
  animation: floatBig 10s ease-in-out infinite reverse;
}

.hero-bg-decor .circle-3 {
  width: 200px; height: 200px;
  background: var(--pink-light);
  top: 30%; left: 10%;
  opacity: 0.08;
  animation: floatBig 6s ease-in-out infinite 2s;
}

.hero-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-hearts span {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  animation: riseHeart 6s ease-in infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,9,126,0.2);
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 .gold-text {
  color: var(--gold-light);
  display: block;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin: 1rem 0 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-location {
  margin-top: 2rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 6px 25px rgba(232,9,126,0.4);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-location span {
  color: #fff;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(232,9,126,0.4);
}

.btn-primary:hover {
  box-shadow: 0 10px 35px rgba(232,9,126,0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--dark);
  box-shadow: 0 6px 25px rgba(212,160,23,0.4);
}

.btn-outline {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  border: none;
  box-shadow: 0 6px 25px rgba(232,9,126,0.4);
}

.btn-outline:hover {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 6px 25px rgba(232,9,126,0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   SECTION TITLES
═══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-title .pink { color: var(--pink); }
.section-title .gold { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: #7A4060;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Section Divider ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink));
}

.divider::after {
  background: linear-gradient(90deg, var(--pink), transparent);
}

.divider-heart { font-size: 1.2rem; }

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(232,9,126,0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(232,9,126,0.1);
  position: relative;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.88rem;
  color: #7A4060;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Price Badge ── */
.price-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(232,9,126,0.35);
}

.price-badge.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════
   PRODUCT GRID
═══════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232,9,126,0.08);
  border: 1px solid rgba(232,9,126,0.1);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--magenta), var(--pink));
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-light);
}

.product-emoji {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.product-name {
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-mid);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   PACKAGE CARDS
═══════════════════════════════════════ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.package-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.package-card.pink-theme {
  background: linear-gradient(160deg, #fff0f8, #ffe0f2);
  border: 2px solid var(--pink-light);
  box-shadow: 0 8px 40px rgba(232,9,126,0.15);
}

.package-card.gold-theme {
  background: linear-gradient(160deg, #fffbf0, #fff3cc);
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 40px rgba(212,160,23,0.2);
}

.package-card.dark-theme {
  background: linear-gradient(160deg, var(--dark), var(--dark-mid));
  border: 2px solid var(--pink);
  box-shadow: 0 8px 40px rgba(232,9,126,0.3);
  color: var(--white);
}

.package-card.dark-theme .package-price-label,
.package-card.dark-theme .package-sub {
  color: rgba(255,255,255,0.7);
}

.package-card.dark-theme .package-items li {
  color: rgba(255,255,255,0.85);
  border-color: rgba(232,9,126,0.3);
}

.package-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.package-card.gold-theme .package-price { color: var(--gold); }
.package-card.dark-theme .package-price { color: var(--gold-light); }

.package-price-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9A5070;
  margin-bottom: 1.2rem;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.package-card.dark-theme .package-name { color: var(--white); }

.package-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-items li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-mid);
  border-bottom: 1px dashed rgba(232,9,126,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-items li::before {
  content: '♥';
  color: var(--pink);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.package-items li:last-child { border-bottom: none; }

.package-sub {
  font-size: 0.82rem;
  color: #7A4060;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

.section-pink {
  background: linear-gradient(160deg, #FDE8F4 0%, #FFD6ED 100%);
}

.section-gold {
  background: linear-gradient(160deg, #FFFBF0 0%, #FFF3CC 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   SERVICES STRIP (HOME)
═══════════════════════════════════════ */
.services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.service-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(232,9,126,0.08);
  border: 1px solid rgba(232,9,126,0.12);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.service-item .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.service-item:hover .icon { transform: scale(1.2) rotate(-5deg); }

.service-item .label {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-mid);
}

/* ═══════════════════════════════════════
   CONTACT BANNER
═══════════════════════════════════════ */
.contact-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, var(--magenta) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  opacity: 0.03;
  white-space: nowrap;
  letter-spacing: 2rem;
}

.contact-banner h2 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-info-item {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-item .icon { font-size: 1.4rem; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
  border-top: 2px solid var(--pink);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink-light);
  margin-bottom: 0.75rem;
}

.footer-logo span { color: var(--gold-light); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink-light);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--pink-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232,9,126,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-pink {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 40%, #8B0050 80%, var(--pink) 100%);
  color: var(--white);
}

.page-hero-pink .section-title { color: var(--white); }
.page-hero-pink .section-sub { color: rgba(255,255,255,0.7); }
.page-hero-pink .section-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.page-hero-dark {
  background: linear-gradient(160deg, #0A0005, #1A0010, #2D0018);
  color: var(--white);
}

.page-hero-dark .section-title { color: var(--white); }
.page-hero-dark .section-sub { color: rgba(255,255,255,0.65); }

.page-hero-gold {
  background: linear-gradient(160deg, #1A0F00, #3D2500, #7A4A00, #D4A017);
  color: var(--white);
}

.page-hero-gold .section-title { color: var(--white); }
.page-hero-gold .section-sub { color: rgba(255,255,255,0.7); }
.page-hero-gold .section-tag {
  background: rgba(212,160,23,0.25);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light);
}

/* Floating hearts decoration */
.page-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-deco span {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.12;
}

/* ═══════════════════════════════════════
   TESTIMONIAL / QUOTE BAND
═══════════════════════════════════════ */
.quote-band {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.quote-band p {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-emoji-placeholder {
  font-size: 5rem;
  opacity: 0.4;
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,0,16,0.9), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item .gallery-label {
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatBig {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-30px) rotate(5deg); }
}

@keyframes riseHeart {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-300px) scale(1.2); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section { padding: 3rem 1.25rem; }
  .hero h1 { font-size: 3.2rem; }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-info { gap: 1.5rem; }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.featured-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin:40px 0;
}

.featured-gallery img{
    width:100%;
    height:auto;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(232,9,126,0.25);
    transition:0.3s;
}

.featured-gallery img:hover{
    transform:scale(1.03);
}

@media (max-width:768px){
    .featured-gallery{
        grid-template-columns:1fr;
    }
}
.picnic-showcase{
    display:flex;
    gap:20px;
    margin:50px 0;
    align-items:flex-start;
}

.picnic-showcase-img{
    width:50%;
    height:auto;
    object-fit:contain;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

@media (max-width:768px){
    .picnic-showcase{
        flex-direction:column;
    }

    .picnic-showcase-img{
        width:100%;
        height:auto;
    }
}
.surprise-showcase{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:10px; /* smaller gap */
    margin:30px 0;
}

.surprise-showcase-img{
    width:35%; /* smaller images */
    height:auto;
    object-fit:contain;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

@media (max-width:768px){
    .surprise-showcase{
        gap:8px;
    }

    .surprise-showcase-img{
        width:48%;
    }
}
.kiddies-showcase{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:10px;
    margin:30px 0;
}

.kiddies-showcase-img{
    width:35%;
    height:auto;
    object-fit:contain;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

@media (max-width:768px){
    .kiddies-showcase{
        gap:8px;
    }

    .kiddies-showcase-img{
        width:48%;
    }
}
.bracelet-showcase{
    display:flex;
    justify-content:center;
    margin:30px 0 40px;
}

.bracelet-showcase-img{
    width:40%;
    height:auto;
    object-fit:contain;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

@media(max-width:768px){
    .bracelet-showcase-img{
        width:70%;
    }
}/* ===== GALLERY FILTERS ===== */

.gallery-filter-nav{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.gallery-filter-btn{
    border:none;
    background:#fff;
    color:#333;
    padding:12px 20px;
    border-radius:30px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active{
    background:linear-gradient(135deg,#E8097E,#C2006A);
    color:#fff;
}

/* ===== GALLERY GRID ===== */

.gallery-grid-full{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gal-item{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    background:#fff;
}

.gal-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.gal-item:hover img{
    transform:scale(1.08);
}

/* ===== OVERLAY ===== */

.gal-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    color:#fff;
    opacity:0;
    transition:0.3s ease;
}

.gal-item:hover .gal-overlay{
    opacity:1;
}

.gal-cat-badge{
    background:#E8097E;
    display:inline-block;
    padding:6px 12px;
    border-radius:20px;
    font-size:0.8rem;
    font-weight:700;
    margin-bottom:10px;
    width:fit-content;
}

.gal-label{
    font-size:1rem;
    font-weight:800;
}

.gal-zoom{
    position:absolute;
    top:15px;
    right:15px;
    font-size:1.5rem;
}

/* ===== LIGHTBOX ===== */

.gal-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.gal-lightbox.active{
    display:flex;
}

.gal-lb-inner{
    max-width:90%;
    max-height:90%;
    text-align:center;
}

.gal-lb-inner img{
    max-width:100%;
    max-height:80vh;
    border-radius:20px;
}

.gal-lb-caption{
    color:#fff;
    margin-top:15px;
    font-size:1rem;
    font-weight:700;
}

.gal-lb-close,
.gal-lb-prev,
.gal-lb-next{
    position:absolute;
    border:none;
    background:rgba(255,255,255,0.15);
    color:#fff;
    cursor:pointer;
    border-radius:50%;
}

.gal-lb-close{
    top:20px;
    right:20px;
    width:50px;
    height:50px;
    font-size:1.5rem;
}

.gal-lb-prev,
.gal-lb-next{
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    font-size:2rem;
}

.gal-lb-prev{
    left:20px;
}

.gal-lb-next{
    right:20px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .gallery-grid-full{
        grid-template-columns:1fr;
    }

    .gal-item img{
        height:260px;
    }

    .gallery-filter-nav{
        gap:8px;
    }

    .gallery-filter-btn{
        padding:10px 15px;
        font-size:0.85rem;
    }
}