/* ================================
   ROOT VARIABLES & RESET
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --rose:        #b0235a;
  --rose-dark:   #8f1c48;
  --rose-light:  #f7e8ef;
  --cream:       #fdf8f5;
  --cream-dark:  #f5ede6;
  --white:       #ffffff;
  --text:        #2a2a2a;
  --text-light:  #666666;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 14px 44px rgba(0,0,0,0.14);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.product-grid .reveal-card:nth-child(2)  { transition-delay: 0.07s; }
.product-grid .reveal-card:nth-child(3)  { transition-delay: 0.14s; }
.product-grid .reveal-card:nth-child(4)  { transition-delay: 0.21s; }
.product-grid .reveal-card:nth-child(5)  { transition-delay: 0.07s; }
.product-grid .reveal-card:nth-child(6)  { transition-delay: 0.14s; }
.product-grid .reveal-card:nth-child(7)  { transition-delay: 0.21s; }
.product-grid .reveal-card:nth-child(8)  { transition-delay: 0.07s; }
.product-grid .reveal-card:nth-child(9)  { transition-delay: 0.14s; }
.product-grid .reveal-card:nth-child(10) { transition-delay: 0.21s; }

.also-grid .reveal-card:nth-child(2) { transition-delay: 0.10s; }
.also-grid .reveal-card:nth-child(3) { transition-delay: 0.20s; }

.why-grid .reveal-card:nth-child(2) { transition-delay: 0.10s; }
.why-grid .reveal-card:nth-child(3) { transition-delay: 0.20s; }

/* ================================
   HEADER
   ================================ */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  gap: 12px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--rose);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

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

.nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  background: var(--rose);
  color: var(--white);
}

.social-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.social-header a {
  background: var(--rose);
  color: var(--white);
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  line-height: 1;
}

.social-header a:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--rose-light);
  color: var(--rose);
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 90px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff5f8 0%, #fdf8f5 35%, #fceef4 65%, #f8dfe9 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(176,35,90,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(176,35,90,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.fade-in {
  animation: fadeInUp 0.9s ease both;
}

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

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(176,35,90,0.15);
  box-shadow: 0 8px 32px rgba(176,35,90,0.22);
  margin: 0 auto 18px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-tagline {
  color: var(--text-light);
  font-size: 14px;
  letter-spacing: 0.4px;
  margin: 0 0 30px;
}

/* ================================
   MSB ANNOUNCEMENT BANNER
   ================================ */
.msb-banner {
  background: linear-gradient(90deg, var(--rose-dark) 0%, var(--rose) 50%, #c4285f 100%);
  color: var(--white);
  padding: 14px 20px;
}

.msb-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.msb-badge {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.msb-text {
  font-size: 14px;
  font-weight: 400;
}

.msb-text strong {
  font-weight: 700;
}

.msb-btn {
  background: var(--white);
  color: var(--rose);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 20px;
  transition: var(--transition);
  white-space: nowrap;
}

.msb-btn:hover {
  background: var(--rose-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================================
   SECTIONS
   ================================ */
.section {
  padding: 72px 20px;
  text-align: center;
}

.section.light {
  background: var(--white);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--text-light);
  font-size: 14px;
  margin: 0 0 42px;
  line-height: 1.5;
}

.text {
  max-width: 660px;
  margin: 0 auto 28px;
  line-height: 1.85;
  color: var(--text-light);
  font-size: 15px;
}

/* ================================
   PRODUCT GRID (COLLECTIONS)
   ================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: left;
}

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

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f8f2f5;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

/* ================================
   ENQUIRE BUTTONS
   ================================ */
.enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  transition: var(--transition);
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.enquire-btn:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.book-btn {
  background: #2a7d4f;
}

.book-btn:hover {
  background: #1f6040;
}

/* ================================
   ALSO AVAILABLE SECTION
   ================================ */
.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}

.also-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: left;
}

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

.also-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f2f5;
}

.also-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.also-card:hover .also-img-wrap img {
  transform: scale(1.05);
}

.also-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.also-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 14px;
  width: fit-content;
  letter-spacing: 0.2px;
}

.also-badge.official {
  background: #fff3e0;
  color: #b45309;
}

.also-badge.seats {
  background: #e8f5e9;
  color: #2a7d4f;
}

.also-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

.also-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ================================
   WHY CHOOSE US
   ================================ */
.why-section {
  background: var(--cream-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.3;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ================================
   INSTAGRAM SECTION
   ================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}

.insta-embed {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.insta-embed .instagram-media {
  min-width: unset !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: var(--radius) !important;
}

.ig-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
}

.ig-link:hover {
  text-decoration: underline;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  cursor: pointer;
}

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

.primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(176,35,90,0.30);
}

.secondary {
  background: #eeeeee;
  color: var(--text);
}

.secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* ================================
   SOCIAL FOLLOW
   ================================ */
.social-follow {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #1c1c1c;
  color: rgba(255,255,255,0.65);
  padding: 40px 20px;
  text-align: center;
  font-size: 13px;
}

footer p {
  margin: 7px 0;
}

footer .small {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.social-footer a {
  color: rgba(255,255,255,0.65);
  font-size: 22px;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.social-footer a:hover {
  color: var(--rose);
  transform: scale(1.2) translateY(-2px);
}

/* ================================
   FLOATING WHATSAPP BUTTON
   ================================ */
.floating-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}

.floating-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.wa-icon {
  width: 30px;
  height: 30px;
  display: block;
}

/* ================================
   TABLET (769px – 1024px)
   ================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid  { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .also-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .insta-grid    { grid-template-columns: repeat(2, 1fr); }
  .insta-embed:nth-child(3) { display: none; }
}

/* ================================
   MOBILE (up to 768px)
   ================================ */
@media (max-width: 768px) {

  /* Header */
  .header {
    padding: 12px 16px;
    gap: 8px;
  }

  .logo-text {
    font-size: 15px;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 10px 14px 14px;
    box-shadow: var(--shadow-md);
    z-index: 998;
    gap: 2px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 11px 14px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }

  .social-header a:not(.whatsapp-icon) {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 56px 16px 66px;
    min-height: 360px;
  }

  h1 { font-size: 26px; }
  .hero-tagline { font-size: 13px; }
  .logo { width: 96px; height: 96px; }

  /* MSB Banner */
  .msb-banner { padding: 12px 14px; }
  .msb-text { font-size: 13px; }
  .msb-btn { font-size: 12px; padding: 6px 14px; }

  /* Sections */
  .section { padding: 52px 16px; }
  h2 { font-size: 24px; }
  .section-sub { font-size: 13px; margin-bottom: 30px; }
  .text { font-size: 14px; }

  /* Product grid: 2 columns on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  .product-info h3 { font-size: 13px; }
  .enquire-btn { font-size: 11px; padding: 7px 10px; gap: 4px; }

  /* Also available: 1 column stacked */
  .also-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Why grid: 1 column */
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-card { padding: 26px 20px; }

  /* Instagram: 1 column */
  .insta-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Floating button */
  .floating-btn {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }

  .wa-icon { width: 26px; height: 26px; }

  /* Social follow buttons */
  .social-follow { gap: 10px; }
  .btn { padding: 13px 22px; font-size: 13px; }
}

/* ================================
   VERY SMALL SCREENS (up to 400px)
   ================================ */
@media (max-width: 400px) {
  .product-grid { gap: 10px; }
  .product-info { padding: 10px 10px 12px; }
  .product-info h3 { font-size: 12px; }
  h1 { font-size: 23px; }
  .msb-banner-inner { gap: 8px; }
}
