/* =========================================
   1. VARIABLES & SETUP
========================================= */
:root {
    --bg-gradient: linear-gradient(135deg, #fff5fa, #fde2f3, #f8c8dc);
    --accent: #d04a6d;
    --dark: #2a1b22;
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.8);
    --primary-pink: #ff1493;
}

* { 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;
    cursor: default;
}

/* =========================================
   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; 
    transition: color 0.3s ease; 
}

.nav-links a.active, .nav-links a:hover { 
    color: var(--accent); 
}

/* =========================================
   3. HERO SECTION
========================================= */
.hero-lookbook {
    min-height: 60vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    padding-top: 100px;
}

.hero-text h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 4rem; 
    color: var(--accent); 
    margin-bottom: 20px; 
    line-height: 1.1; 
}

.hero-text p { 
    font-size: 1.3rem; 
    font-weight: 600; 
    color: #555; 
}

/* =========================================
   4. LOOKBOOK CARDS (PERFECTLY HORIZONTAL)
========================================= */
.lookbook-container {
    max-width: 900px; 
    margin: 0 auto; 
    padding: 40px 5%;
    display: flex; 
    flex-direction: column; 
    gap: 60px;
    perspective: 1500px;
}

.lookbook-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--glass-border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(208, 74, 109, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.lookbook-card img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Clean Hover Effect (No Tilting) */
.lookbook-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(208, 74, 109, 0.15);
    z-index: 10;
}

.lookbook-card h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    color: var(--accent); 
    margin-bottom: 20px; 
}

.lookbook-card p { 
    font-size: 1.1rem; 
    line-height: 1.7; 
    margin-bottom: 15px; 
}

/* =========================================
   5. LISTS & SPECIAL TEXT
========================================= */
.chic-list { 
    list-style: none; 
    margin: 20px 0; 
}

.chic-list li {
    background: white; 
    padding: 15px 20px; 
    margin-bottom: 10px;
    border-radius: 15px; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.chic-list li::before { content: '✨'; }

.chic-list li:hover { 
    transform: translateX(10px); 
    background: var(--accent); 
    color: white; 
}

.highlight-text { 
    font-weight: 800; 
    color: var(--accent); 
    font-size: 1.2rem; 
    margin-top: 20px; 
}

.rule-box { 
    background: rgba(208, 74, 109, 0.1); 
    padding: 20px; 
    border-left: 5px solid var(--accent); 
    border-radius: 10px; 
    margin-top: 20px; 
    font-weight: 600; 
}

/* =========================================
   6. FAQ SECTION
========================================= */
.faq-item { 
    margin-bottom: 25px; 
    padding-bottom: 25px; 
    border-bottom: 1px solid rgba(208, 74, 109, 0.2); 
}

.faq-item:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
}

.faq-item h3 { 
    color: var(--dark); 
    margin-bottom: 10px; 
    font-size: 1.2rem; 
}

/* =========================================
   7. FOOTER
========================================= */
.footer { 
    background: #1a0a10; 
    color: white; 
    padding: 60px 8%; 
    border-radius: 40px 40px 0 0; 
    margin-top: 50px;
}

.footer-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 30px; 
}

.footer-section h3, .footer-section h4 { 
    font-family: 'Playfair Display', serif; 
    color: #f8c8dc; 
    margin-bottom: 15px; 
}

.footer ul { list-style: none; padding: 0; }
.footer a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer a:hover { color: white; padding-left: 5px; }

.copyright { 
    text-align: center; 
    border-top: 1px solid #333; 
    padding-top: 20px; 
    color: #666; 
    font-size: 0.8rem; 
}

/* =========================================
   8. ANIMATIONS (SCROLL REVEAL & SPARKLE)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px); /* Keeps it flat, just pushes it down */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Snaps perfectly flat and straight */
}

.sparkle-trail {
    position: fixed;
    pointer-events: none;
    font-size: 1.2rem;
    z-index: 9999;
    animation: fallAndFade 1s forwards;
}

@keyframes fallAndFade {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(30px) scale(0.5); opacity: 0; }
}

/* =========================================
   9. MOBILE RESPONSIVENESS
========================================= */
@media(max-width: 768px) {
    .hero-text h1 { font-size: 2.8rem; }
    .nav-links { display: none; } /* Hide links for a mobile menu */
    .lookbook-card { padding: 30px; }
}