/* --- Design System & CSS Variables --- */
:root {
    /* Palette Colori */
    --color-paper: #fdfbf7;
    /* Bianco Carta / Pergamena */
    --color-beige: #e8e4d9;
    /* Dettagli Beige */
    --color-anthracite: #1a1a1a;
    /* Testi in Nero Antracite */
    --color-rust: #8b261d;
    /* Accenti cromatici in Rosso Ruggine */
    --color-green-muted: #8b9c8a;
    /* Verde Vigna Desaturato (extra) */

    /* Tipografia */
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-paper);
    color: var(--color-anthracite);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.nav-logo {
    font-family: var(--font-serif);
    font-weight: 400;
    /* Richiama la classicità */
}

/* --- Paper Texture Overlay --- */
.paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    /* Un pattern SVG molto leggero per simulare la carta */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.8;
}

/* --- Utility Classes --- */
.hidden {
    display: none !important;
}

.mobile-only {
    display: none;
}

.hidden-initially {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.visible {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--color-anthracite);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-anthracite);
    color: var(--color-paper);
}

.btn-primary:hover {
    background-color: var(--color-rust);
    border-color: var(--color-rust);
    color: var(--color-paper);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-anthracite);
}

.btn-secondary:hover {
    background-color: var(--color-beige);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* --- Age Gate Modal --- */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-paper);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.age-gate-content {
    max-width: 500px;
    animation: fadeIn 1.5s ease forwards;
}

.age-gate .logo-text {
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.logo-img-large {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
}

.age-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-rust);
}

.age-desc {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #555;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-error {
    margin-top: 1.5rem;
    color: var(--color-rust);
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sipario Transition Screen --- */
.sipario {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    /* fallback */
    z-index: 10000;
    transition: opacity 1.5s ease;
}

.sipario.fade-out {
    opacity: 0;
    pointer-events: none;
}

.sipario-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sipario-img-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sipario-img-desktop {
        display: none;
    }

    .sipario-img-mobile {
        display: block;
        object-fit: contain;
        object-position: center center;
        background-color: #f5f0e8;
    }
}

@media (max-width: 768px) {
    .sipario {
        background-color: #1a1a1a;
    }

    .sipario-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 4vh 20px 0;
        text-align: center;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

.sipario-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 4vh;
    background: transparent;
    z-index: 2;
}

.sipario-text {
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--color-anthracite);
    text-align: center;
    padding: 0 20px;
    letter-spacing: 1px;
    line-height: 1.3;
    white-space: nowrap;
    /* Force single line if screen allows */
}

@media (max-width: 768px) {
    .sipario-text {
        font-size: 1.4rem;
        white-space: normal;
        /* Allow wrap on mobile */
    }
}

.sipario-hint {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-anthracite);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

@keyframes siparioPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* --- Stop Scrolling when Age Gate is active --- */
body.no-scroll {
    overflow: hidden;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    /* Center container */
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(253, 251, 247, 0.9) 0%, rgba(253, 251, 247, 0) 100%);
    backdrop-filter: blur(5px);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-anthracite);
}

.logo-img-nav {
    width: 180px;
    height: auto;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 100px; /* Space for scroll indicator below image */
}

.hero-text-container {
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
    /* Above map */
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--color-anthracite);
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-rust);
}

.hero-image-container {
    width: 90vw;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.scroll-indicator {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 40px;
}

.arrow-down {
    width: 1px;
    height: 40px;
    background-color: var(--color-anthracite);
    margin: 10px auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        justify-content: flex-start;
    }

    .hero-image-container {
        width: 100%;
        max-width: 350px;
    }

    .scroll-indicator {
        position: static;
        transform: none;
        margin-top: 24px;
    }
}

/* --- Sections Common --- */
section {
    padding: 100px 5%;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-anthracite);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-rust);
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.bg-beige {
    background-color: var(--color-beige);
}

.bg-anthracite {
    background-color: var(--color-anthracite);
    color: var(--color-paper);
}

.bg-anthracite h2,
.bg-anthracite h4 {
    color: var(--color-paper);
}

.box-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* --- Storytelling (Parallax) --- */
.story-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('Foto%20e%20render%20ROGIN/drive-download-20260226T104413Z-1-001/foto%20etichette.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* Darken background for text legibility */
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.6);
}

.story-content {
    position: relative;
    z-index: 2;
    background-color: var(--color-paper);
    padding: 60px 40px;
    max-width: 900px;
    margin-left: auto;
    /* Align slightly off-center */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* --- Story Title & Body (Le Origini) --- */
.story-title {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-anthracite);
}

.story-body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-anthracite);
    font-size: 1.05rem;
}

.emphasis-tavola {
    font-style: italic;
    color: var(--color-rust);
    letter-spacing: 0.5px;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    font-family: var(--font-serif);
    line-height: 1.8;
}

/* --- Botanicals --- */
.botanicals-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.botanical-item {
    flex: 1 1 18%;
    min-width: 150px;
    text-align: center;
    position: relative;
    cursor: crosshair;
}

.botanical-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    filter: grayscale(80%) sepia(20%);
}

.botanical-info {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: var(--color-anthracite);
    color: var(--color-paper);
    padding: 15px;
    border-top: 3px solid var(--color-rust);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.botanical-info h3 {
    color: var(--color-rust);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.botanical-info p {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.8;
    font-size: 0.9rem;
}

.botanical-item:hover .botanical-icon {
    border-color: var(--color-rust);
    filter: grayscale(0%) sepia(0%);
    transform: scale(1.05);
}

.botanical-item:hover .botanical-info {
    opacity: 1;
    visibility: visible;
    bottom: -60px;
}

/* --- Perfect Serve (Tabs) --- */
.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn:hover {
    color: var(--color-anthracite);
}

.tab-btn.active {
    color: var(--color-rust);
    border-bottom-color: var(--color-rust);
    font-weight: 600;
}

.tabs-content {
    background-color: var(--color-paper);
    padding: 40px;
    min-height: 250px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    width: 100%;
}

.hidden-tab {
    display: none;
}

.serve-card h3 {
    font-size: 1.8rem;
    color: var(--color-rust);
    margin-bottom: 15px;
}

.serve-card p {
    margin-bottom: 10px;
}

/* --- Events & B2B --- */
.events-text {
    flex: 1;
}

.events-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: var(--color-paper);
    font-family: var(--font-sans);
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--color-rust);
}

.w-100 {
    width: 100%;
}

.form-success {
    margin-top: 15px;
    color: var(--color-green-muted);
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--color-paper);
}

.logo-img-footer {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-link {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-paper);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.border-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-paper);
}

.border-light:hover {
    background-color: var(--color-paper);
    color: var(--color-anthracite);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #666;
    font-size: 0.8rem;
}

/* --- Cart Toggle (Homepage) --- */
.cart-toggle-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-anthracite);
    padding: 6px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cart-toggle-btn:hover {
    color: var(--color-rust);
    transform: translateY(-1px);
}

.cart-badge-main {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: var(--color-rust);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-badge-main.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Cart Sidebar (Homepage) --- */
.cart-overlay-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 44, 44, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.cart-overlay-main.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background-color: var(--color-paper);
    z-index: 9500;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-title-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-anthracite);
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-anthracite);
    padding: 4px;
    transition: color 0.3s ease;
}

.cart-close-btn:hover {
    color: var(--color-rust);
}

.cart-items-main {
    flex: 1;
    overflow-y: auto;
    padding: 16px 28px;
}

.cart-empty-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 28px;
    text-align: center;
    flex: 1;
}

.cart-empty-main-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-anthracite);
    margin-bottom: 4px;
}

.cart-empty-main-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-rust);
    text-decoration: none;
}

.cart-summary-main {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: white;
    display: none;
}

.cart-summary-main.visible {
    display: block;
}

.cart-item-home {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-home-img {
    width: 50px;
    height: 58px;
    background: linear-gradient(145deg, var(--color-paper) 0%, var(--color-beige) 100%);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-home-img img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.cart-item-home-details {
    flex: 1;
}

.cart-item-home-name {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-anthracite);
}

.cart-item-home-meta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #888;
}

.cart-item-home-total {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-anthracite);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-anthracite);
    margin-bottom: 16px;
}

.cart-summary-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 2rem;
}

/* Mobile Menu Overlay - hidden by default on desktop */
.mobile-menu-overlay {
    display: none;
}

/* --- Media Queries --- */
@media (max-width: 768px) {

    /* Layout & Flex */
    .flex-row {
        flex-direction: column;
    }

    /* Container Spacing & Margins */
    body {
        padding: 0;
    }

    section {
        padding: 60px 20px;
    }

    .nav-container,
    .box-container,
    .hero-text-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Adaptive Typography */
    .hero-title,
    h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-text-container {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-top: 4px;
        letter-spacing: 1.5px;
    }

    .section-title,
    h2,
    .bundle-title {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    body,
    p,
    .story-text p {
        font-size: 16px; /* Minimum 16px for readability on mobile */
    }

    /* Full-width Buttons */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-add-to-cart,
    .btn-add-bundle {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    /* Botanicals Mobile Slider */
    .botanicals-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 20px 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .botanicals-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .botanical-item {
        flex: 0 0 60%;
        scroll-snap-align: center;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
        background: var(--color-paper);
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    }

    .botanical-icon {
        width: 90px;
        height: 90px;
        filter: grayscale(0%) sepia(0%);
        border-color: var(--color-rust);
    }

    .botanical-info {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 14px;
        box-shadow: none;
        border-top: none;
        background-color: transparent;
        color: var(--color-anthracite);
        padding: 0;
    }

    .botanical-info h3 {
        color: var(--color-anthracite);
        font-size: 1.1rem;
    }

    .botanical-info p {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
    }

    /* Tabs "Servito!" — scroll orizzontale su mobile */
    .tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0;
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 0;
        scrollbar-width: none;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 10px 14px;
        white-space: nowrap;
    }

    .tabs-content {
        padding: 24px 16px;
    }

    .story-content {
        margin: 0;
        padding: 30px 20px;
    }
    .parallax {
        background-attachment: scroll !important;
    }

    .disable-mobile {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-only.hamburger-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-btn span {
        width: 100%;
        height: 2px;
        background-color: var(--color-anthracite);
        transition: all 0.3s ease;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-paper);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .menu-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--color-anthracite);
        cursor: pointer;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 60px;
        text-align: center;
    }

    .mobile-link {
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--color-anthracite);
        text-decoration: none;
    }

    .mt-4 {
        margin-top: 30px;
    }
}