        :root {
            --soft-orange: #E2852E;
            --warm-peach: #FFB76C;
            --soft-gold: #F5C857;
            --header-orange: #F16D34;
            --white: #FFFFFF;
            --off-white: #FCFCFC;
            --text-main: #3d3d3d;
            --shadow: 0 15px 40px rgba(0,0,0,0.04);
        }

        /* Base & Typography */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Pompiere', sans-serif;
            font-weight: 400 !important; /* No bold anywhere */
        }

        body {
            background-color: var(--white);
            color: var(--text-main);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        p { font-size: 1.4rem; line-height: 1.8; margin-bottom: 2rem; }
        h1 { font-size: 6rem; color: var(--soft-orange); line-height: 1; }
        h2 { font-size: 4rem; color: var(--soft-orange); }
        h3 { font-size: 2.5rem; color: var(--warm-peach); }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--white); }
        ::-webkit-scrollbar-thumb { background: var(--warm-peach); border-radius: 10px; }

        /* Header */
        header {
            position: fixed; top: 0; width: 100%; height: 110px;
            z-index: 1000; display: flex; align-items: center; justify-content: space-between;
            padding: 0 5%; transition: all 0.5s ease;
        }
        header.scrolled { background-color: var(--header-orange); height: 110px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        
        .logo-container { display: flex; align-items: center; gap: 15px; cursor: pointer; }
        .logo-img { height: 280px; width: 280px; transition: transform 0.3s; } /* Increased logo size */
        .logo-text { font-size: 2.8rem; color: var(--soft-orange); }
        header.scrolled .logo-text, header.scrolled .nav-link { color: var(--white); }

        nav { display: flex; gap: 35px; }
        .nav-link { font-size: 1.6rem; color: var(--soft-orange); position: relative; text-decoration: none; cursor: pointer; }
        .nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: currentColor; transition: width 0.3s; }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }

        /* Pages System */
        .page { display: none; min-height: 100vh; padding-top: 110px; animation: pageFade 0.7s ease-out forwards; }
        .page.active { display: block; }
        @keyframes pageFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Sections */
        .container { max-width: 1300px; margin: 0 auto; padding: 100px 5%; }
        .section-divider { width: 150px; height: 1px; background: var(--soft-orange); margin: 30px 0; opacity: 0.5; }

        /* Hero */
        .hero {
            height: 100vh; width: 100%; display: flex; align-items: center;
            background: linear-gradient(135deg, var(--warm-peach) 0%, var(--soft-orange) 100%);
            position: relative; overflow: hidden; padding: 0 5%;
        }
        .hero-pattern {
            position: absolute; inset: 0; opacity: 0.15;
            background-image: url("https://www.transparenttextures.com/patterns/handmade-paper.png");
            animation: bgFloat 20s infinite linear;
        }
        @keyframes bgFloat { from { background-position: 0 0; } to { background-position: 100% 100%; } }

        .hero-card {
            background: var(--white); padding: 80px; border-radius: 50px;
            max-width: 700px; box-shadow: 0 30px 60px rgba(0,0,0,0.06);
            z-index: 10; position: relative;
        }
        .hero-img-side {
            flex: 1; height: 85vh; margin-left: 60px; border-radius: 100px 20px 100px 20px;
            overflow: hidden; opacity: 0.9; box-shadow: var(--shadow);
            transform: rotate(2deg);
        }

        /* Buttons */
        .btn {
            display: inline-block; padding: 15px 40px; border-radius: 40px;
            font-size: 1.4rem; border: none; cursor: pointer; transition: all 0.4s;
            background: var(--warm-peach); color: var(--white); text-decoration: none;
        }
        .btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(226, 133, 46, 0.2); }
        .btn-outline { background: transparent; border: 1px solid var(--soft-orange); color: var(--soft-orange); }

        /* Grids & Cards */
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 60px; }
        .journal-entry {
            background: var(--white); border-radius: 30px; overflow: hidden;
            box-shadow: var(--shadow); transition: transform 0.4s;
            display: flex; flex-direction: column;
        }
        .journal-entry:hover { transform: translateY(-12px); }
        .entry-thumb { width: 100%; height: 350px; object-fit: cover; filter: sepia(10%); }
        .entry-body { padding: 40px; flex: 1; }

        /* Filter Bar */
        .filter-bar { display: flex; gap: 15px; margin-bottom: 60px; justify-content: center; flex-wrap: wrap; }
        .filter-chip {
            padding: 10px 30px; border-radius: 30px; border: 1px solid var(--warm-peach);
            color: var(--warm-peach); cursor: pointer; font-size: 1.3rem; transition: 0.3s;
        }
        .filter-chip.active { background: var(--warm-peach); color: var(--white); }

        /* Tips Section */
        .tips-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
        .tip-box {
            background: var(--warm-peach); color: var(--white); padding: 50px;
            border-radius: 40px; transition: 0.4s; position: relative;
        }
        .tip-box:nth-child(2) { transform: translateY(50px); }
        .tip-box:nth-child(3) { transform: translateY(-50px); }
        .tip-box i { margin-bottom: 20px; opacity: 0.9; }

        /* Gallery */
        .gallery-wrapper { overflow-x: auto; padding: 50px 0; scrollbar-width: none; }
        .gallery-inner { display: flex; gap: 40px; padding: 0 5%; }
        .gallery-photo {
            min-width: 350px; height: 500px; border-radius: 20px; position: relative;
            transform: rotate(-2deg); transition: 0.5s; box-shadow: var(--shadow);
        }
        .gallery-photo:nth-child(even) { transform: rotate(3deg); }
        .gallery-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
        .gallery-photo:hover { transform: rotate(0) scale(1.05); z-index: 5; }

        /* Overlay / Quick View */
        .overlay {
            position: fixed; inset: 0; background: rgba(255, 255, 255, 0.98);
            z-index: 2000; display: none; animation: fadeIn 0.4s ease;
            overflow-y: auto; padding: 80px 10%;
        }
        .overlay.active { display: block; }
        .close-overlay { position: fixed; top: 40px; right: 40px; cursor: pointer; color: var(--soft-orange); }

        /* Auth Styles */
        .auth-card {
            max-width: 500px; margin: 80px auto; padding: 60px;
            background: var(--off-white); border-radius: 40px; box-shadow: var(--shadow);
        }
        .input-group { margin-bottom: 25px; }
        .input-group label { display: block; font-size: 1.3rem; margin-bottom: 10px; color: var(--soft-orange); }
        .input-group input {
            width: 100%; padding: 18px; border-radius: 20px; border: 1px solid #eee;
            background: white; font-size: 1.2rem; outline: none; transition: border 0.3s;
        }
        .input-group input:focus { border-color: var(--warm-peach); }

        /* Newsletter */
        .newsletter-section {
            background: var(--warm-peach); border-radius: 60px; margin: 100px 5%;
            padding: 100px 5%; text-align: center; color: var(--white);
        }
        .news-input {
            padding: 20px 40px; border-radius: 40px; border: none; width: 400px;
            font-size: 1.2rem; margin-right: 15px; outline: none;
        }

        /* Footer */
        footer { background: var(--header-orange); color: var(--white); padding: 100px 5% 50px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 80px; }
        .footer-logo { font-size: 3rem; color: var(--white); margin-bottom: 20px; }
        .footer-link { display: block; color: var(--white); opacity: 0.8; font-size: 1.3rem; margin-bottom: 12px; cursor: pointer; }
        .footer-link:hover { opacity: 1; transform: translateX(8px); transition: 0.3s; }
        .social-wrap { display: flex; gap: 20px; margin-top: 30px; }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        /* Responsive Adjustments */
@media (max-width: 1200px) {
    .container { padding: 80px 5%; }
    .hero-card { padding: 60px; max-width: 600px; }
    .hero-img-side { margin-left: 40px; }
}

@media (max-width: 992px) {
    header { padding: 0 3%; }
    .logo-img { height: 200px; width: 200px; }
    nav { gap: 25px; }
    h1 { font-size: 4.5rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 2rem; }
    .hero { flex-direction: column; justify-content: center; text-align: center; }
    .hero-card, .hero-img-side { width: 100%; margin: 20px 0; }
}

@media (max-width: 768px) {
    header { flex-direction: column; height: auto; padding: 20px 5%; }
    .logo-container { margin-bottom: 15px; }
    nav { flex-direction: column; gap: 15px; display: none; } /* hidden by default for mobile */
    nav.active { display: flex; } /* toggle with JS hamburger */
    .hero-card { padding: 40px; border-radius: 30px; }
    .hero-img-side { height: 60vh; border-radius: 50px 15px 50px 15px; margin-left: 0; }
    .grid { gap: 30px; }
    .tips-layout { grid-template-columns: 1fr; gap: 30px; }
    .newsletter-section { padding: 50px 5%; border-radius: 30px; }
}

@media (max-width: 480px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    .nav-link { font-size: 1.4rem; }
    .btn { padding: 12px 30px; font-size: 1.2rem; }
    .journal-entry { flex-direction: column; }
    .entry-thumb { height: 250px; }
    .gallery-photo { min-width: 250px; height: 350px; }
    .news-input { width: 100%; margin-bottom: 15px; }
    .btn-outline { padding: 10px 25px; font-size: 1.1rem; }
}
/* Hamburger Styles */
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
    height: 3px; width: 25px; background: var(--soft-orange); border-radius: 3px;
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
}
