:root {
    --text-light: #fffdfc; 
    --accent: #f8c8dc; 
    --primary-pink: #ff1493; /* Added your signature bright pink */
    --lavender: #ebe6f0;
    --dark-plum: #1f1519;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-plum);
    font-family: 'Jost', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    perspective: 1200px;
}

/* =========================================
   1. EDITORIAL NAV ALIGNMENT & LOGO
========================================= */
.editorial-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    background: rgba(31, 21, 25, 0.85); /* Dark frosted glass */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.editorial-nav .logo {
    display: flex;
    align-items: center;
    gap: 15px; 
    cursor: pointer;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink); 
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); 
}

.logo-icon-circle {
    width: 45px;  
    height: 45px; 
    border-radius: 50%;
    overflow: hidden; 
    flex-shrink: 0; 
    border: 2px solid rgba(255, 182, 193, 0.6); 
    background: #fff; 
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3); 
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* ADDED: Navigation Links Styling */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-pink);
}

/* =========================================
   2. ANIMATED BACKGROUND & PLANE
========================================= */
.bg-layers { position: fixed; inset: 0; z-index: -2; overflow: hidden; }

.bg-lavender-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, #352236 0%, var(--dark-plum) 100%);
}

#paper-plane {
    position: absolute; width: 50px; height: 50px;
    color: var(--accent); z-index: -1;
    filter: drop-shadow(0 0 10px var(--accent));
    pointer-events: auto; cursor: pointer;
    transition: transform 0.1s linear;
}

#paper-plane:hover {
    animation: loop-de-loop 1s ease-in-out forwards;
}

@keyframes loop-de-loop {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.5); }
    100% { transform: rotate(720deg) scale(1); }
}

.particle {
    position: absolute; background: white; border-radius: 50%;
    opacity: 0.3; pointer-events: none;
    animation: float-up var(--d) linear infinite;
}

@keyframes float-up {
    to { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* =========================================
   3. LAYOUT & INTERACTIVE CARDS
========================================= */
.main-container { max-width: 1100px; margin: 0 auto; padding: 120px 5% 50px; }

.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; margin-top: 50px;
}

.glass-panel {
    background: var(--glass); 
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); 
    border-radius: 20px;
    padding: 40px; 
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
}

.glass-panel:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 182, 193, 0.3); /* Soft pink border on hover */
}

/* =========================================
   4. FORM ELEMENTS
========================================= */
.input-group { margin-bottom: 20px; transform: translateZ(20px); }

label { 
    display: block; font-size: 0.8rem; text-transform: uppercase; 
    letter-spacing: 2px; margin-bottom: 8px; color: var(--accent); 
}

input, select, textarea {
    width: 100%; background: rgba(255,255,255,0.05); 
    border: 1px solid var(--glass-border);
    padding: 15px; color: white; border-radius: 10px; 
    font-family: 'Jost', sans-serif;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus { 
    border-color: var(--primary-pink); 
    background: rgba(255,255,255,0.1); 
    outline: none; 
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
}

/* Custom Select Dropdown Styling */
select {
    appearance: none;
    cursor: pointer;
}

.glow-button {
    width: 100%; padding: 15px; background: var(--accent); border: none;
    border-radius: 10px; color: var(--dark-plum); font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; cursor: pointer;
    transition: 0.3s; transform: translateZ(30px);
    margin-top: 10px;
}

.glow-button:hover { 
    background: white; 
    box-shadow: 0 0 20px var(--accent); 
    transform: translateZ(40px) scale(1.02); 
}

/* =========================================
   5. TYPOGRAPHY & FAQ
========================================= */
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; text-align: center; }
.subtitle { text-align: center; font-size: 1.1rem; letter-spacing: 2px; color: var(--accent); }
.contact-item { font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.mt-20 { margin-top: 20px; line-height: 1.6; opacity: 0.8; }
.form-footer { margin-top: 20px; text-align: center; font-style: italic; font-size: 0.9rem; opacity: 0.7; }

/* REVEAL LOGIC */
.editorial-reveal h1 { transform: translateY(100%); transition: 1s cubic-bezier(0.19, 1, 0.22, 1); }
.editorial-reveal.active h1 { transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.editorial-reveal.active .fade-up { opacity: 1; transform: translateY(0); }

/* =========================================
   6. CURSOR & RESPONSIVE
========================================= */
#aura-cursor {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(248, 200, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: -1; transform: translate(-50%, -50%);
}

@media(max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; } /* Hides links on mobile for a hamburger menu */
}