/* --- 1. VARIABLES & RESET --- */
:root {
    --primary: #d63384; /* Deep Pink */
    --secondary: #ff85a2; /* Soft Pink */
    --accent: #45caff; /* Blue from logo */
    --dark: #1d1d1f;
    --light: #f5f5f7; /* Apple Gray */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* --- 2. LOADER --- */
#loader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s; }
.loader-content { text-align: center; }
.loader-logo { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
.loader-line { width: 0; height: 3px; background: linear-gradient(to right, var(--primary), var(--accent)); animation: loadLine 1.5s infinite; margin: 10px auto; }
@keyframes loadLine { 0% { width: 0; opacity: 1; } 100% { width: 100px; opacity: 0; } }

/* --- 3. NAVIGATION (GLASS EFFECT) --- */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: auto; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; font-family: 'Playfair Display', serif; }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-btn { background: var(--dark); color: var(--white) !important; padding: 10px 20px; border-radius: 50px; }
.nav-btn:hover { background: var(--primary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 180px; box-shadow: var(--shadow); border-radius: 12px; padding: 10px; margin-top: 15px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; }
.dropdown-menu a:hover { background: var(--light); color: var(--primary); }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* --- 4. HERO SECTION --- */
.hero { position: relative; height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1513201099705-a9746e1e201f?auto=format&fit=crop&w=1920&q=80'); /* Placeholder BG */
    background-size: cover; background-position: center;
    z-index: -1;
    transform: scale(1.1); /* For parallax */
}
.hero-content { max-width: 800px; padding: 20px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.tagline { display: inline-block; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }

.hero-buttons { display: flex; gap: 15px; justify-content: center; }
.btn { padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn.primary { background: var(--primary); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--dark); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* --- 5. SECTIONS --- */
.section { padding: 100px 5%; }
.bg-light { background: var(--light); }
.container { max-width: 1200px; margin: auto; }
.narrow { max-width: 800px; }
.text-center { text-align: center; }

/* Mission */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.stat-box { text-align: center; padding: 30px; background: var(--light); border-radius: 20px; margin-top: 10px; transition: 0.3s; }
.stat-box:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.stat-box i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; }

/* Gallery */
.gallery-wrapper { overflow: hidden; padding: 50px 0; background: var(--white); }
.scroll-track { display: flex; width: calc(300px * 10); animation: scroll 30s linear infinite; }
.slide { width: 300px; padding: 0 10px; }
.placeholder-img { width: 100%; height: 300px; background: #eee; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #aaa; font-weight: bold; font-size: 1.2rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-300px * 5)); } }

/* Collections Grid */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.offer-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid rgba(0,0,0,0.05); }
.offer-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.card-img { height: 250px; background: #ddd; } /* Add images via HTML or bg-image here */
.card-info { padding: 25px; }
.card-info h3 { color: var(--primary); margin-bottom: 5px; }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--light); padding: 30px; border-radius: 20px; text-align: center; }
.stars { color: gold; margin-bottom: 15px; }

/* FAQ */
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 10px; padding: 15px 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); cursor: pointer; }
.faq-item summary { font-weight: 600; list-style: none; position: relative; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; font-weight: bold; color: var(--primary); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { margin-top: 10px; font-size: 0.9rem; color: #555; }

/* Contact */
.contact-box { background: var(--dark); color: var(--white); padding: 60px; border-radius: 30px; text-align: center; }
.contact-methods { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.method i { color: var(--primary); margin-right: 10px; }
.btn-call { display: inline-block; background: var(--primary); color: var(--white); padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.2rem; }

/* --- 6. FOOTER --- */
footer { background: #f5f5f7; padding: 60px 5%; margin-top: 50px; border-top: 1px solid #ddd; }
.footer-container { max-width: 1200px; margin: auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.footer-brand h3 { font-size: 1.8rem; margin-bottom: 5px; }
.footer-credits { font-size: 0.9rem; color: #666; }
.tech-credits a { color: var(--primary); text-decoration: none; font-weight: 600; }
.tech-credits p { margin-top: 5px; }

/* --- 7. UTILS & ANIMATION CLASSES --- */
.hidden { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.show { opacity: 1; transform: translateY(0); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; padding: 15px 25px; border-radius: 50px; display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 5000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.05); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .mission-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
}
