@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --color-rose: #C85A87;
  --color-plum: #8B2A57;
  --color-blush: #F2D4E3;
  --color-cream: #FCF1F5;
  --color-plum-ink: #3D1F3A;
  --color-gold: #C9A96E;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-plum-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-plum);
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-plum);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-rose);
  margin-bottom: 3rem;
  font-style: italic;
  font-family: var(--font-heading);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--color-plum);
  color: var(--color-cream);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
  font-weight: 500;
}
.btn:hover {
  background-color: var(--color-rose);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 90, 135, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-plum);
  border: 1px solid var(--color-plum);
}
.btn-outline:hover {
  background-color: var(--color-plum);
  color: var(--color-cream);
}

/* Header & Nav (Luxury Boutique Static Compact Design) */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  isolation: isolate; /* Crucial: Isolates blending so mix-blend-mode on the logo blends ONLY with the header background and doesn't leak into the page content behind it */
  background-color: var(--color-cream); /* Solid soft blush/pale pink background permanently */
  border-bottom: 1px solid rgba(242, 212, 227, 0.45);
  padding: 0.5rem 0; /* Reduced padding for compact look */
  box-shadow: 0 4px 15px rgba(139, 42, 87, 0.05); /* Permanent elegant shadow */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo - Blended seamlessly with the header */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  opacity: 1 !important; /* Always fully visible */
}

.logo img {
  height: 65px; /* Compact height for premium luxury feel */
  max-width: min(450px, 55vw);
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* Blends logo image background with header */
  transition: transform 0.3s ease;
  opacity: 1 !important; /* Always fully visible */
}

.logo img:hover {
  transform: scale(1.03);
  opacity: 1 !important;
}

/* Nav Links & Typography */
.nav-links {
  display: flex;
  gap: 1.6rem; /* Slightly reduced gap between items for a cleaner, compact look */
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700; /* Bold/premium appearance */
  font-size: 0.9rem; /* Slightly smaller size for luxury minimal feel */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-plum-ink); /* Permanently dark mauve/deep plum text color */
  position: relative;
  transition: color 0.3s ease;
}

/* Individual link hover & active state */
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-rose) !important; /* Elegant rose highlight */
}

/* Smooth Hover Underline Animation */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-rose);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-plum);
}

/* Sections */
section {
  padding: 6rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-blush);
  background-image:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(135deg, rgba(242, 212, 227, 0.92), rgba(253, 247, 245, 0.98));
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(85vw, 960px);
  height: min(85vh, 720px);
  background-image: url('assets/poster.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.18;
  filter: saturate(0.8) brightness(1.05);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-plum-ink);
}

.hero p {
  font-size: 1.5rem;
  color: var(--color-plum);
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-style: italic;
}

.brand-story {
  padding-top: 1rem;
}

.story-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 212, 227, 0.72));
  border: 1px solid rgba(200, 90, 135, 0.15);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(61, 31, 58, 0.08);
}

.story-card p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--color-plum-ink);
  text-align: center;
}

/* Featured Categories */
.featured-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.home-category-card {
  scroll-snap-align: start;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 400px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 31, 58, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--color-cream);
  transition: var(--transition);
}

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

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(139, 42, 87, 0.9), transparent);
}

.category-overlay h3 {
  color: var(--color-cream);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Gallery Grids */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  background: white;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-info {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid var(--color-blush);
}

.gallery-info h4 {
  font-family: var(--font-body);
  color: var(--color-plum-ink);
  margin-bottom: 0.5rem;
}

.gallery-page-section {
  padding-top: 150px;
}

.gallery-page-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.gallery-page-intro p {
  font-size: 1.05rem;
  color: var(--color-plum-ink);
}

.gallery-placeholder {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 212, 227, 0.72));
  border: 1px solid rgba(200, 90, 135, 0.18);
}

.gallery-placeholder-box {
  text-align: center;
  padding: 2rem;
  color: var(--color-plum);
}

.gallery-placeholder-box i {
  font-size: 2.4rem;
  color: var(--color-rose);
  margin-bottom: 1rem;
}

.gallery-placeholder-box h4 {
  margin-bottom: 0.4rem;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 31, 58, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--color-cream);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-content img {
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.modal-content-scrollable {
  width: min(92vw, 720px);
  max-height: 85vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--color-rose);
}

/* Floating Social Buttons */
.instagram-float,
.whatsapp-float {
  position: fixed;
  right: 30px;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 100;
  transition: var(--transition);
}

.instagram-float {
  bottom: 102px;
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 45%, #962fbf 75%, #4f5bd5);
}

.whatsapp-float {
  bottom: 30px;
  background-color: #25d366;
}

.instagram-float:hover,
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.instagram-float:hover {
  box-shadow: 0 10px 24px rgba(214, 41, 118, 0.35);
}

.whatsapp-float:hover {
  background-color: #128C7E;
}

/* Footer */
footer {
  background-color: var(--color-plum-ink);
  color: var(--color-cream);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
  color: var(--color-blush);
  margin-bottom: 0.8rem;
  display: block;
}

.footer-col a:hover {
  color: var(--color-cream);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 212, 227, 0.2);
  color: var(--color-blush);
  font-size: 0.9rem;
}

/* Instagram Strip */
.instagram-strip {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}
.instagram-strip::-webkit-scrollbar {
  display: none; /* Chrome */
}

.ig-post {
  flex: 0 0 250px;
  height: 250px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ig-post:hover img {
  transform: scale(1.05);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 42, 87, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 2rem;
}

.ig-post:hover .ig-overlay {
  opacity: 1;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item i {
  color: var(--color-rose);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* About Page Specific */
.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--color-plum-ink);
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .hero::after {
    width: min(82vw, 680px);
    height: min(62vh, 480px);
    opacity: 0.26;
  }
  .contact-grid, .about-content {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .logo {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .logo img {
    height: 50px;
    max-width: 300px;
    mix-blend-mode: multiply;
  }


  .nav-links {
    position: fixed;
    right: -100%;
    top: 64px;
    flex-direction: column;
    background-color: var(--color-cream);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    padding: 2rem 0;
    gap: 1.5rem;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.2rem; }
  .hero::after {
    top: 52%;
    width: 92vw;
    height: 50vh;
    opacity: 0.22;
  }

  .featured-categories {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0 0.5rem;
    margin-top: 2rem;
  }

  .featured-categories::-webkit-scrollbar {
    height: 8px;
  }

  .featured-categories::-webkit-scrollbar-thumb {
    background: rgba(200, 90, 135, 0.35);
    border-radius: 999px;
  }

  .home-category-card {
    flex: 0 0 82%;
    min-width: 82%;
  }

  .story-card {
    padding: 2rem 1.4rem;
  }
  .story-card p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .section-title { font-size: 2rem; }
}

/* ─────────────────────────────────────────────────────────
   LUXURY FLOATING ACTION BUTTONS
   Stacked vertically · Bottom-right corner · Fixed position
   Inspired by the subtle Ritu Kumar floating icon style
   ───────────────────────────────────────────────────────── */

/* Wrapper: stacks all three buttons in a vertical column */
.floating-actions {
  position: fixed;
  bottom: 26px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 9999;
}

/* Base style shared by all three buttons */
.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;          /* Icon size */
  color: #fff;
  box-shadow: 0 4px 14px rgba(90, 30, 60, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  /* Subtle entry animation */
  animation: fabFadeIn 0.6s ease both;
}

/* Staggered entry delay per button */
.fab-btn:nth-child(1) { animation-delay: 0.1s; }
.fab-btn:nth-child(2) { animation-delay: 0.22s; }
.fab-btn:nth-child(3) { animation-delay: 0.34s; }

@keyframes fabFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Hover: slight scale + deeper shadow — no color flash */
.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 7px 20px rgba(90, 30, 60, 0.28);
}

/* ── Button 1: Instagram — dusty rose / blush ── */
.fab-instagram {
  background-color: #c4748c;   /* Dusty rose-mauve */
}
.fab-instagram:hover {
  background-color: #b55f79;   /* Slightly richer wine on hover */
}

/* ── Button 2: WhatsApp — soft sage-green (muted, no neon) ── */
.fab-whatsapp {
  background-color: #7aaa8f;   /* Muted sage green — refined, not bright */
}
.fab-whatsapp:hover {
  background-color: #64957a;
}

/* ── Button 3: Location/Map — soft mauve / muted plum ── */
.fab-location {
  background-color: #9e7d94;   /* Muted plum-mauve */
}
.fab-location:hover {
  background-color: #87668c;   /* Deeper wine-plum on hover */
}

/* Mobile: slightly smaller to avoid crowding small screens */
@media (max-width: 480px) {
  .floating-actions {
    bottom: 18px;
    right: 14px;
    gap: 11px;
  }
  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}
