        :root {
            --coral: #EB4C4C;
            --orange: #FFA24C;
            --cream: #FFEDC7;
            --black: #1A1A1A;
            --white: #FFFFFF;
            --font-main: 'Elsie Swash Caps', serif;
            --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: var(--font-main); 
            background-color: var(--cream);
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- BACKGROUND PETAL ANIMATION --- */
        .petal-container {
            position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.6;
        }
        .petal {
            position: absolute; background: var(--coral); border-radius: 100% 0 100% 0;
            width: 15px; height: 15px; animation: fall linear infinite;
        }
        @keyframes fall {
            0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
            100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
        }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 30px 60px; display: flex; justify-content: space-between;
            align-items: center; transition: var(--transition);
        }
        header.scrolled { background: rgba(255, 237, 199, 0.9); padding: 15px 60px; backdrop-filter: blur(10px); }
        
.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px; /* optional, if you want text + image */
}

.logo-img {
    height: 150px;      /* adjust as needed */
    width: auto;
    display: block;
}

        .nav-controls { display: flex; align-items: center; gap: 30px; }
        .auth-btn { cursor: pointer; font-weight: 900; color: var(--coral); border: 2px solid var(--coral); padding: 8px 20px; border-radius: 30px; transition: 0.3s; }
        .auth-btn:hover { background: var(--coral); color: white; }

        .hamburger { cursor: pointer; background: none; border: none; color: var(--black); }

        /* --- NAVIGATION OVERLAY --- */
        .nav-overlay {
            position: fixed; inset: 0; background: var(--cream); z-index: 2000;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transform: translateY(-100%); transition: var(--transition);
        }
        .nav-overlay.active { transform: translateY(0); }
        .nav-links { list-style: none; text-align: center; }
        .nav-links li { margin: 20px 0; overflow: hidden; }
        .nav-links a { 
            font-size: 3.5rem; text-decoration: none; color: var(--black); 
            display: flex; align-items: center; gap: 20px; transition: 0.4s; cursor: pointer;
        }
        .nav-links a:hover { color: var(--coral); transform: scale(1.05); }

        /* --- HERO --- */
        .hero {
            height: 100vh; position: relative; display: flex; align-items: center;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://i.pinimg.com/736x/1d/e3/e4/1de3e4bb04d10f8953075292850c3edf.jpg') center/cover;
            overflow: hidden;
        }
        .hero-content { padding: 0 10%; z-index: 10; width: 100%; display: flex; justify-content: space-between; align-items: center; }
        .hero-text h1 { font-size: 6rem; color: white; line-height: 1; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
        .hero-text p { font-size: 1.5rem; color: white; font-style: italic; }
        
        .btn-pulse {
            width: 180px; height: 180px; border-radius: 50%; border: none;
            background: var(--coral); color: white; font-family: inherit;
            font-size: 1.2rem; font-weight: 900; cursor: pointer;
            animation: pulse 2s infinite; transition: 0.3s;
        }
        .btn-pulse:hover { background: var(--orange); transform: scale(1.1); }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(235, 76, 76, 0.7); }
            70% { box-shadow: 0 0 0 30px rgba(235, 76, 76, 0); }
            100% { box-shadow: 0 0 0 0 rgba(235, 76, 76, 0); }
        }

        /* --- AUTH PAGES --- */
        .auth-container {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            padding: 100px 20px; background: var(--cream);
        }
        .auth-card {
            background: white; padding: 60px; border-radius: 40px; width: 100%; max-width: 500px;
            box-shadow: 0 20px 50px rgba(235, 76, 76, 0.1);
        }
        .auth-card h2 { font-size: 2.5rem; color: var(--coral); margin-bottom: 30px; text-align: center; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 900; }
        .form-group input { width: 100%; padding: 15px; border-radius: 15px; border: 1px solid #ddd; outline: none; font-family: inherit; }
        .auth-submit { width: 100%; padding: 15px; border-radius: 15px; border: none; background: var(--coral); color: white; font-family: inherit; font-weight: 900; cursor: pointer; }

        /* --- STORY SECTIONS --- */
        .section { padding: 120px 0; position: relative; z-index: 5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .story-img { width: 100%; border-radius: 40px; box-shadow: 30px 30px 0 var(--orange); transition: 0.5s; }
        .story-img:hover { transform: translate(-10px, -10px); }

        /* --- CARDS --- */
        .card-container { display: flex; gap: 30px; overflow-x: auto; padding: 40px 10%; scrollbar-width: none; }
        .card {
            min-width: 350px; background: white; border-radius: 30px; overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05); transition: 0.4s; cursor: pointer;
        }
        .card:hover { transform: translateY(-20px); box-shadow: 0 30px 60px rgba(235, 76, 76, 0.2); }
        .card-img { width: 100%; height: 250px; object-fit: cover; }
        .card-body { padding: 30px; }

        /* --- MODAL --- */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 5000;
            display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal.active { display: flex; }
        .modal-content {
            background: var(--cream); max-width: 1000px; width: 100%; border-radius: 40px;
            display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; position: relative;
        }
        .modal-info { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
        .close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; color: var(--coral); }

        /* --- FOOTER --- */
        footer { background: var(--coral); color: white; padding: 100px 60px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; text-align: left; }
        .footer-links a { color: white; text-decoration: none; display: block; margin-bottom: 10px; opacity: 0.8; transition: 0.3s; cursor: pointer; }
        .footer-links a:hover { opacity: 1; padding-left: 5px; }

        /* --- UTILS --- */
        .reveal { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.23, 1, 0.32, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .page { display: none; }
        .page.active { display: block; }
        .filter-nav { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; }
        .filter-btn { background: white; border: 2px solid var(--coral); padding: 10px 25px; border-radius: 30px; cursor: pointer; font-family: inherit; font-weight: 900; }
        .filter-btn.active { background: var(--coral); color: white; }

        @media (max-width: 800px) {
            .story-grid, .modal-content { grid-template-columns: 1fr; }
            .hero-text h1 { font-size: 3.5rem; }
            .hero-content { flex-direction: column; text-align: center; gap: 40px; }
        }
