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

:root {
  --gold-primary: #c9a656;
  --gold-secondary: #e2c682;
  --red-primary: #8c1c1c;
  --red-hover: #b02323;
  --bg-white: #ffffff;
  --bg-light: #fdfbf8;
  --text-main: #1a1a1a;
  --text-muted: #5e5e5e;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 50px rgba(140, 28, 28, 0.1);
  
  --nav-height: 120px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  overflow-x: hidden;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--bg-white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid rgba(140, 28, 28, 0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  height: 90px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--gold-primary);
}

.nav-wrapper { 
  display: flex; justify-content: space-between; align-items: center; height: 100%; 
}

.logo { display: flex; align-items: center; gap: 20px; position: relative; text-decoration: none; }
.logo img { height: 95px; width: auto; transition: height 0.5s ease; }
header.sticky .logo img { height: 70px; }

.logo-text { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.3rem; font-weight: 700; 
  color: #8c1c1c; letter-spacing: 1.5px; 
  white-space: nowrap; position: relative; display: inline-block;
  padding: 0 50px 15px;
  background-image: linear-gradient(to right, transparent 40px, #c9a656 40px, #ffdf91 50%, #c9a656 calc(100% - 40px), transparent calc(100% - 40px));
  background-size: 100% 2px; background-position: bottom 12px center; background-repeat: no-repeat;
}

header.sticky .logo-text { font-size: 1.8rem; padding-bottom: 10px; }

.logo-text::after, .logo-text::before {
  content: '♦'; position: absolute; bottom: 0px; color: #00b894;
  font-size: 1.4rem; text-shadow: 0 0 15px rgba(0, 184, 148, 0.6); z-index: 10;
}
.logo-text::before { left: 15px; }
.logo-text::after { right: 15px; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; padding-right: 20px; }
.nav-links a {
  color: #8c1c1c; font-size: 1.05rem; font-weight: 600; 
  letter-spacing: 1.5px; text-transform: uppercase; font-family: 'Cormorant Garamond', serif;
  position: relative; padding-bottom: 12px; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  background-image: linear-gradient(to right, #c9a656, #ffdf91 50%, #c9a656);
  background-size: 100% 2px; background-position: bottom 8px center; background-repeat: no-repeat;
  opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active { 
  opacity: 1;
  letter-spacing: 2px;
  text-shadow: 0 0 1px rgba(140, 28, 28, 0.2);
}

.hamburger { display: none; }




.hamburger span { display: block; width: 30px; height: 3px; background: var(--red-primary); margin-bottom: 5px; transition: 0.3s; }

/* Hero Section */
.hero {
  height: 100vh; min-height: 800px; display: flex; align-items: center; justify-content: center;
  text-align: center; background: url('../hero.jpg') center/cover no-repeat fixed; position: relative;
  padding-top: var(--nav-height);
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 60px; border: 2px solid rgba(255,255,255,0.1); outline: 1px solid rgba(255,255,255,0.2); outline-offset: -20px; }
.hero h1 { 
  font-size: 5rem; margin-bottom: 30px; color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 700;
  text-shadow: 0 5px 30px rgba(0,0,0,0.8); text-transform: uppercase; letter-spacing: 2px;
}
.hero-title {
  font-family: 'Bodoni Moda', serif !important; font-size: 6rem !important; letter-spacing: 2px !important; line-height: 1.1 !important; font-weight: 400 !important; text-transform: none !important;
}
.hero p { color: #fff; font-size: 1.3rem; margin: 0 auto 50px; opacity: 0.9; max-width: 800px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; padding: 20px 50px; border-radius: 0; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; text-decoration: none; transition: 0.4s; font-family: var(--font-body); font-size: 0.9rem; }
.btn-primary { background: var(--red-primary); color: #fff; border: 1px solid var(--red-primary); }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.btn-outline { border: 1px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--red-primary); transform: translateY(-5px); }

/* General Sections */
.section { padding: 120px 0; }
.section-subtitle { display: block; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 5px; color: var(--gold-primary); margin-bottom: 20px; font-weight: 700; }
.section-title { font-size: 3.8rem; color: var(--red-primary); font-family: var(--font-heading); margin-bottom: 35px; line-height: 1.1; font-weight: 700; }
.divider-gold { width: 100px; height: 3px; background: var(--gold-primary); margin: 0 auto 50px; }
.divider-gold-left { width: 80px; height: 3px; background: var(--gold-primary); margin-bottom: 40px; }

.bg-light { background-color: var(--bg-light); }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Our Story Section */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.about-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.9; }

.stats-row { display: flex; gap: 60px; margin-bottom: 45px; }
.stat-item { text-align: left; }
.stat-number { font-size: 3.5rem; font-family: var(--font-heading); color: var(--red-primary); font-weight: 700; display: block; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-primary); font-weight: 700; }

.about-image-wrapper { position: relative; border: 1px solid var(--gold-primary); padding: 20px; box-shadow: 20px 20px 0 var(--bg-light); transition: 0.5s; }
.about-image-wrapper:hover { transform: translate(-10px, -10px); box-shadow: 30px 30px 0 var(--gold-secondary); }
.img-placeholder { width: 100%; aspect-ratio: 4/5; background: #eee url('../story.jpg') center/cover; display: flex; align-items: center; justify-content: center; position: relative; }
.img-placeholder::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
.img-placeholder span { position: relative; font-family: var(--font-heading); font-size: 2.2rem; color: #fff; background: rgba(140, 28, 28, 0.85); padding: 15px 45px; border: 1px solid var(--gold-primary); backdrop-filter: blur(5px); }

#celebration-canvas { 
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
  pointer-events: none; z-index: 9999; 
}

/* Updated Signature Services Section - Permanent Backgrounds */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 30px; }
.service-card { 
  background: #fff; border: 1px solid rgba(0,0,0,0.04); transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
  position: relative; overflow: hidden; text-align: center; min-height: 500px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.service-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1); filter: brightness(0.6); opacity: 1;
}
.service-card-content { position: relative; z-index: 2; padding: 45px; transition: 0.5s; }
.service-card:hover .service-card-bg { filter: brightness(0.7); transform: scale(1.1); }
.service-card:hover .service-card-content { transform: translateY(-10px); }

.icon-box { font-size: 3.5rem; color: #fff; margin-bottom: 30px; transition: 0.4s; text-shadow: 0 0 20px rgba(0,0,0,0.5); }
.service-card h3 { font-size: 2.2rem; margin-bottom: 20px; font-family: var(--font-heading); color: #fff; transition: 0.4s; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.service-card p { color: rgba(255,255,255,0.9); margin-bottom: 30px; line-height: 1.7; transition: 0.4s; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
.service-card .btn { background: #fff; color: var(--red-primary); border-color: #fff; transition: 0.4s; }
.service-card:hover .btn { background: var(--red-primary); color: #fff; border-color: var(--red-primary); }

/* Testimonials */
.testimonials { background-color: #fff; }
.testimonial-card { max-width: 1000px; margin: 0 auto; background: var(--bg-light); padding: 100px 80px; border: 2px solid var(--gold-primary); position: relative; transition: 0.5s; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.testimonial-card:hover { transform: scale(1.02); }
.quote-icon { font-size: 4rem; color: var(--gold-primary); margin-bottom: 40px; opacity: 0.4; display: block; width: 100%; text-align: center; }
.testimonial-text { font-size: 1.8rem; font-family: var(--font-heading); color: var(--text-main); font-style: italic; line-height: 1.6; margin-bottom: 45px; text-align: center; }
.client-info { text-align: center; }
.client-info h4 { font-size: 1.4rem; color: var(--red-primary); margin-bottom: 5px; font-family: var(--font-heading); }
.client-info span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-primary); font-weight: 700; }

/* Instagram Feed */
/* Performance & Lag Optimization */
.section, .insta-item, .service-card, .gallery-item-compact { 
  will-change: transform, opacity; 
  backface-visibility: hidden;
  transform: translateZ(0); 
}

.insta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; margin-top: 50px; }
.mini-box { height: 350px; border: 1px solid rgba(201,166,86,0.1); transition: 0.5s; cursor: pointer; }
.mini-box:hover { transform: translateY(-10px); border-color: var(--gold-primary); }

.gallery-mini-grid { 
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin-top: 40px; 
}
.mini-box { 
  aspect-ratio: 1/1; background-size: cover; background-position: center; 
  border: 1px solid rgba(201,166,86,0.3); transition: 0.5s; 
}
.mini-box:hover { transform: scale(1.05); border-color: var(--gold-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

@media (max-width: 992px) { .gallery-mini-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-mini-grid { grid-template-columns: repeat(2, 1fr); } }

/* Decorative Why Choose Us Section */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.feature-item { 
  background: var(--bg-light); padding: 60px 40px; border: 1px solid rgba(201,166,86,0.2);
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; text-align: center;
}
.feature-item::after { 
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; 
  background: var(--gold-primary); transform: scaleX(0); transition: 0.6s; 
}
.feature-item:hover { transform: translateY(-15px); box-shadow: 0 40px 80px rgba(140, 28, 28, 0.08); border-color: var(--gold-primary); }
.feature-item:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 3.5rem; color: var(--red-primary); margin-bottom: 30px; transition: 0.4s; }
.feature-item:hover .feature-icon { transform: scale(1.1); color: var(--gold-primary); }
.feature-item h4 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 20px; color: var(--text-main); }
.feature-item p { color: var(--text-muted); line-height: 1.7; font-size: 1rem; }

/* Professional Boutique Footer */
.footer { background: #1a1a1a; color: #fff; padding: 120px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--gold-primary), #fff, var(--gold-primary)); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 80px; align-items: flex-start; margin-bottom: 100px; }
.footer-center { text-align: center; }
.footer-logo { height: 120px; margin-bottom: 40px; transition: 0.5s; filter: brightness(1.2); }
.footer-center p { font-style: italic; opacity: 0.8; font-size: 1.1rem; max-width: 400px; margin: 0 auto 40px; }
.footer h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold-primary); margin-bottom: 35px; text-transform: uppercase; letter-spacing: 3px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 20px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; transition: 0.3s; display: inline-block; position: relative; }
.footer-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold-primary); transition: 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { width: 100%; }

.footer-contact .contact-list { list-style: none; }
.footer-contact li { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.footer-contact i { color: var(--gold-primary); font-size: 1.3rem; margin-top: 5px; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.footer-contact a:hover { color: #fff; }

.footer-social-strip { border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 0; text-align: center; }
.footer-social-strip .social-links { justify-content: center; margin-top: 0; }
.footer-bottom { background: #0a0a0a; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.text-center { text-align: center; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .footer-center { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* Mission & Vision Redesign */
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.mv-card { 
  background: #fff; padding: 80px 50px; border: 1px solid rgba(201,166,86,0.3); text-align: center;
  transition: 0.5s; position: relative; overflow: hidden;
}
.mv-card::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,166,86,0.1); pointer-events: none; }
.mv-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(140, 28, 28, 0.05); border-color: var(--gold-primary); }
.mv-icon { font-size: 3.5rem; color: var(--red-primary); margin-bottom: 30px; }
.mv-card h3 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; color: var(--red-primary); }
.mv-card p { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); }

/* Absolute Professional Contact Page Update */
.contact-container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; min-height: 700px; box-shadow: 0 40px 100px rgba(0,0,0,0.1); margin-top: 50px; overflow: hidden; }
.contact-info-panel { 
  padding: 100px 70px; background: #8c1c1c; color: #fff; position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info-panel::after { 
  content: ''; position: absolute; inset: 0; 
  background: url('https://www.transparenttextures.com/patterns/cubes.png'); 
  opacity: 0.08; pointer-events: none;
}
.contact-info-panel h2 { font-size: 4rem; font-family: var(--font-heading); margin-bottom: 40px; line-height: 1.1; }
.contact-info-list { list-style: none; margin-top: 40px; }
.contact-info-list li { margin-bottom: 35px; display: flex; align-items: center; gap: 20px; font-size: 1.1rem; overflow-wrap: anywhere; word-break: break-word; }
.contact-info-list i { color: var(--gold-primary); font-size: 1.4rem; width: 30px; flex-shrink: 0; }

.contact-form-panel { padding: 100px 80px; background: #fff; }
.contact-form-panel h3 { font-size: 3rem; font-family: var(--font-heading); margin-bottom: 50px; color: var(--red-primary); }
.contact-form .form-group { margin-bottom: 40px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 15px 0; border: none; border-bottom: 1px solid #ddd;
  background: transparent; font-family: var(--font-body); font-size: 1.1rem;
  transition: 0.4s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { 
  border-bottom-color: var(--gold-primary); outline: none; 
}
.contact-form label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-primary); font-weight: 700; margin-bottom: 5px; }

@media (max-width: 992px) {
  .contact-container { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(50px); transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.8s; }

/* Responsive Updates */
@media (max-width: 1200px) {
  .logo-text { font-size: 1.6rem; padding: 0 35px 10px; }
  .logo-text::before { left: 5px; } .logo-text::after { right: 5px; }
  .logo img { height: 80px; }
  .hero h1 { font-size: 4rem; }
  .footer-grid { gap: 60px; }
}

@media (max-width: 992px) {
  :root { --nav-height: 100px; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: -100%; width: 100vw; height: calc(100vh - var(--nav-height));
    background: var(--bg-white); flex-direction: column; justify-content: flex-start;
    padding: 50px 0; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; gap: 2rem; box-shadow: inset 0 10px 20px rgba(0,0,0,0.02);
    align-items: center; text-align: center; margin: 0;
  }
  .nav-links.active { left: 0; }
  header.sticky .nav-links { top: 90px; height: calc(100vh - 90px); }
  .hamburger { display: block; cursor: pointer; z-index: 1001; flex-shrink: 0; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  header { height: 100px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-text { text-align: center; }
  .divider-gold-left { margin-inline: auto; }
  .stats-row { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .hero h1, .hero-title { font-size: 2.8rem !important; line-height: 1.2 !important; word-wrap: break-word; }
  .hero-content { padding: 30px 15px; outline-offset: -10px; border-width: 1px; width: 100%; max-width: 100vw; box-sizing: border-box; }
  .hero p { font-size: 1rem; margin-bottom: 30px; }
  .section-title { font-size: 2.8rem; }
  .service-row { grid-template-columns: 1fr; }
  .service-img { min-height: 400px; border: none; border-bottom: 4px solid var(--gold-primary); }
  .service-row.reverse .service-img { border: none; border-bottom: 4px solid var(--gold-primary); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { margin-inline: auto; height: 100px; }
  .footer p { text-align: center; }
  .logo { max-width: calc(100vw - 80px); gap: 10px; }
  header.sticky .logo img, .logo img { height: 45px; max-height: 45px; width: auto; object-fit: contain; }
  header.sticky .logo-text, .logo-text { 
    display: inline-block; 
    font-size: 1.1rem; 
    padding: 0; 
    background: none; 
    white-space: normal; 
    line-height: 1.1; 
  }
  .logo-text::before, .logo-text::after { display: none; content: none; }
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .btn { padding: 15px 30px; width: 100%; text-align: center; }
  .hero-buttons { flex-direction: column; gap: 15px; }
  .contact-info-panel { padding: 50px 30px; }
  .contact-info-panel h2 { font-size: 2.5rem; }
  .contact-form-panel { padding: 50px 30px; }
  .contact-form-panel h3 { font-size: 2rem; margin-bottom: 30px; }
}

@media (max-width: 480px) {
  .logo { gap: 8px; }
  header.sticky .logo img, .logo img { height: 35px; max-height: 35px; }
  header.sticky .logo-text, .logo-text { font-size: 0.9rem; }
  .hero h1, .hero-title { font-size: 2.2rem !important; word-wrap: break-word; }
  .section { padding: 60px 0; }
  .stat-number { font-size: 2.5rem; }
  .service-card { min-height: 400px; }
  .testimonial-card { padding: 50px 30px; }
  .testimonial-text { font-size: 1.4rem; }
  .about-image-wrapper { padding: 10px; }
  .img-placeholder span { font-size: 1.5rem; padding: 10px 20px; }
  .contact-info-panel { padding: 40px 20px; }
  .contact-info-panel h2 { font-size: 2.2rem; }
  .contact-form-panel { padding: 40px 20px; }
  .contact-info-list li { font-size: 1rem; gap: 15px; }
}
