/* =========================================
   1. VARIABLES & SETUP
========================================= */
:root {
    --bg-gradient: linear-gradient(135deg, #fff5fa, #fde2f3, #f8c8dc);
    --accent: #d04a6d;
    --dark: #2a1b22;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.8);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* =========================================
   2. EDITORIAL NAVIGATION & LOGO
========================================= */
.editorial-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.3); /* Frosted glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
}

.editorial-nav .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

/* The Circular Icon */
.logo-icon-circle {
    width: 45px;  
    height: 45px; 
    border-radius: 50%;
    overflow: hidden; 
    flex-shrink: 0; 
    border: 2px solid rgba(248, 200, 220, 0.8); 
    background: #fff; 
    box-shadow: 0 0 10px rgba(208, 74, 109, 0.2); 
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    list-style: none; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
    transition: color 0.3s ease; 
}

.nav-links a.active, .nav-links a:hover { 
    color: var(--accent); 
}

/* =========================================
   3. FULL-SCREEN KISS SPLASH SCREEN
========================================= */
#intro-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-gradient);
    z-index: 999999; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#intro-splash.hidden {
    opacity: 0;
    visibility: hidden;
}

#lips-img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 1.2s ease-out;
}

#lips-img.kissing {
    transform: scale(1.5);
    opacity: 0;
}

/* =========================================
   4. CUSTOM CURSOR
========================================= */
#cursor-dot {
    position: fixed; width: 8px; height: 8px; background: var(--accent);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
}

#cursor-ring {
    position: fixed; width: 40px; height: 40px; border: 2px solid var(--accent);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%); transition: 0.1s ease-out;
}

/* =========================================
   5. HERO SECTION
========================================= */
.hero {
    min-height: 100vh; padding: 120px 5% 50px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 50px; perspective: 2000px;
}

.hero-text { flex: 1; transform: translateZ(50px); }

h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; line-height: 1; margin-bottom: 20px; color: var(--accent); }

.hero-text p { font-size: 1.2rem; line-height: 1.6; font-weight: 400; max-width: 500px; }

.hero-image-container {
    flex: 1; position: relative; transform-style: preserve-3d; display: flex; justify-content: center;
}

.editorial-image {
    width: 100%; max-width: 500px; border-radius: 30px;
    box-shadow: 0 40px 80px rgba(208, 74, 109, 0.3);
    border: 2px solid rgba(255,255,255,0.6);
    transform: translateZ(30px); transition: transform 0.1s ease-out;
}

.floating-sticker {
    position: absolute; background: white; padding: 10px 20px;
    border-radius: 50px; font-weight: 800; color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateZ(80px);
}

.s1 { top: 10%; right: 0; }
.s2 { bottom: 15%; left: 0; }

/* =========================================
   6. SPOTLIGHT CARDS
========================================= */
.content-container { max-width: 1200px; margin: 0 auto; padding: 50px 5%; }

.spotlight-card {
    position: relative; background: var(--glass-bg);
    border-radius: 30px; padding: 50px; margin-bottom: 50px;
    border: 1px solid var(--glass-border); overflow: hidden; backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05); transform-style: preserve-3d;
}

.spotlight-card::before {
    content: ''; position: absolute; top: var(--mouse-y); left: var(--mouse-x);
    width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    transform: translate(-50%, -50%); pointer-events: none; opacity: 0; transition: opacity 0.3s; z-index: -1;
}

.spotlight-card:hover::before { opacity: 1; }

.spotlight-card h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 20px; color: var(--accent); }
.spotlight-card p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 20px; }

/* =========================================
   7. LISTS
========================================= */
.aesthetic-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 30px; }

.aesthetic-list li { background: rgba(255,255,255,0.6); padding: 15px 25px; border-radius: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; transition: 0.3s; }

.aesthetic-list li::before { content: '✨'; }

.aesthetic-list li:hover { transform: translateY(-5px); background: white; box-shadow: 0 10px 20px rgba(208, 74, 109, 0.15); }

.routine-list { counter-reset: routine-counter; list-style: none; display: flex; flex-direction: column; gap: 15px; }

.routine-list li { position: relative; padding: 20px 20px 20px 70px; background: white; border-radius: 20px; font-weight: 600; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s; }

.routine-list li::before { counter-increment: routine-counter; content: "0" counter(routine-counter); position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--accent); font-family: 'Playfair Display'; font-size: 1.5rem; font-weight: 900; }

.routine-list li:hover { transform: translateX(20px); background: var(--accent); color: white; }

.routine-list li:hover::before { color: rgba(255,255,255,0.5); }

/* =========================================
   8. FAQ
========================================= */
.faq-item { margin-bottom: 20px; background: white; border-radius: 20px; overflow: hidden; border: 1px solid rgba(208, 74, 109, 0.2); }

.faq-question { padding: 25px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; color: var(--dark); }

.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: #555; }

.faq-item.active .faq-answer { padding: 0 25px 25px; max-height: 200px; }

.faq-item.active .faq-question { color: var(--accent); }

/* =========================================
   9. FOOTER
========================================= */
.footer { background: #1a0a10; color: white; padding: 80px 5% 30px; margin-top: 50px; border-radius: 50px 50px 0 0; }

.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }

.footer-section h3, .footer-section h4 { font-family: 'Playfair Display', serif; color: #f8c8dc; margin-bottom: 20px; }

.footer-section p { line-height: 1.6; color: #ccc; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section ul a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-section ul a:hover { color: white; padding-left: 5px; }

.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; color: #777; font-size: 0.9rem; }

/* =========================================
   10. ANIMATIONS
========================================= */
.reveal { opacity: 0; transform: translateY(80px) rotateX(-10deg); transition: 1s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.active { opacity: 1; transform: translateY(0) rotateX(0); }

/* =========================================
   11. RESPONSIVE DESIGN
========================================= */
@media(max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    h1 { font-size: 3rem; }
    .floating-sticker { display: none; }
    .nav-links { display: none; } /* Hide links for a mobile menu */
}