
body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #F5F3F0;
    min-height: 100vh;
    display: flex; 
    flex-direction: column;
    margin: 0;
    padding: 0;
    position: relative;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header{
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
}
/* Hamburger Menu - Hidden on desktop */
.hamburger {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* Background Slideshow */
.bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-slide.active {
    opacity: 1;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(245, 243, 240, 0.3) 0%,
        rgba(245, 243, 240, 0.2) 50%,
        rgba(245, 243, 240, 0.3) 100%
    );
    z-index: -1;
}

/* Navigation styles*/
        .chest-container {
            position: relative;
            width: 100%;
            background-color: rgba(212, 201, 190, 0.2);
            padding: 1rem 2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 2rem;
            z-index: 1;
        }

        .chest-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0.5rem;
            background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 100%);
            z-index: 1;
        }

        .chest-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0.75rem;
            background: linear-gradient(0deg, rgba(0,0,0,0.06) 0%, transparent 100%);
            z-index: 1;
        }

        .nav-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            padding-right: 2rem;
            border-right: 1px solid rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .logo-placeholder {
            width: 120px;
            height: 80px;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Georgia, serif;
            font-size: 1.25rem;
            font-weight: 300;
            color: #F5F3F0;
            letter-spacing: 0.05em;
        }

        .nav-drawers {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .drawers-grid {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .drawer-wrapper {
            flex: 1;
            max-width: 18rem;
        }

        .drawer {
            position: relative;
            background-color: #E8E3DB;
            padding: 0.75rem 0.75rem 1.25rem 0.75rem;
            border-radius: 2px;
            border: 1px solid rgba(0,0,0,0.06);
            min-height: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            text-decoration: none;
        }

        .drawer:hover {
            transform: translateY(4px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .drawer.active {
            background-color: #C0735C;
            transform: translateY(48px);
            box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
        }

        .drawer.dimmed {
            opacity: 0.8;
        }

        .drawer-icon {
            width: 22px;
            height: 22px;
        }

        .drawer-icon svg {
            width: 100%;
            height: 100%;
            stroke: #3E3D3A;
            stroke-width: 1.5;
            fill: none;
        }

        .drawer.active .drawer-icon svg {
            stroke: #F5F3F0;
        }

        .drawer-label {
            font-size: 0.7rem;
            font-weight: 300;
            letter-spacing: 0.12em;
            color: #3E3D3A;
            transition: color 300ms ease;
        }

        .drawer.active .drawer-label {
            color: #F5F3F0;
        }

        .drawer-handle {
            position: absolute;
            bottom: 0.75rem;
            left: 50%;
            transform: translateX(-50%);
        }
        /* T-Bar Pull with Aged Patina */
        .handle-bar {
            position: relative;
            width: 72px;
            height: 8px;
            background: linear-gradient(180deg, #C5A878 0%, #B8956A 25%, #A68560 50%, #9A7B54 75%, #8A6B44 100%);
            border-radius: 1px;
            border: 0.5px solid rgba(138, 107, 68, 0.6);
            box-shadow: inset 0 -1px 3px rgba(0,0,0,0.35), inset 0 1px 1px rgba(255,255,255,0.15), 0 3px 6px rgba(0,0,0,0.18);
            overflow: hidden;
        }

        .oxidation-1 {
            position: absolute;
            top: 1px;
            left: 12px;
            width: 8px;
            height: 3px;
            background-color: rgba(80, 60, 40, 0.25);
            border-radius: 50%;
            filter: blur(0.5px);
        }

        .oxidation-2 {
            position: absolute;
            bottom: 1px;
            right: 18px;
            width: 6px;
            height: 2px;
            background-color: rgba(70, 50, 30, 0.3);
            border-radius: 50%;
            filter: blur(0.5px);
        }

        .worn-highlight {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 2px;
            background: radial-gradient(ellipse, rgba(212, 184, 134, 0.4) 0%, transparent 70%);
            filter: blur(0.5px);
        }

        .verdigris {
            position: absolute;
            top: 2px;
            left: 24px;
            width: 5px;
            height: 2px;
            background-color: rgba(100, 120, 100, 0.15);
            border-radius: 50%;
            filter: blur(0.8px);
        }

        .scratch-1 {
            position: absolute;
            top: 3px;
            left: 32px;
            width: 12px;
            height: 0.5px;
            background-color: rgba(0,0,0,0.15);
            transform: rotate(-2deg);
        }

        .scratch-2 {
            position: absolute;
            bottom: 2px;
            left: 44px;
            width: 8px;
            height: 0.5px;
            background-color: rgba(0,0,0,0.12);
            transform: rotate(3deg);
        }

        

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Hamburger Menu */
            .hamburger {
                display: block;
                position: fixed;
                top: 1rem;
                right: 1rem;
                z-index: 1000;
                background-color: #E8E3DB;
                border: 1px solid rgba(0,0,0,0.06);
                border-radius: 4px;
                padding: 0.75rem;
                cursor: pointer;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                transition: all 300ms ease;
            }

            .hamburger:hover {
                background-color: #C0735C;
            }

            .hamburger:hover .hamburger-line {
                background-color: #F5F3F0;
            }

            .hamburger-line {
                width: 24px;
                height: 2px;
                background-color: #3E3D3A;
                margin: 5px 0;
                transition: all 300ms ease;
            }

            .hamburger.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }

            .hamburger.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }

            /* Mobile Overlay */
            .mobile-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(0,0,0,0.5);
                z-index: 998;
                opacity: 0;
                transition: opacity 400ms ease;
            }

            .mobile-overlay.active {
                display: block;
                opacity: 1;
            }
            .chest-container {
                position: fixed;
                top: 0;
                left: 0;
                height: 100vh;
                width: 280px;
                padding: 5rem 1.5rem 2rem;
                transform: translateX(-100%);
                transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 999;
                overflow-y: auto;
                flex-direction: column;
                gap: 1rem;
            }

            .chest-container.mobile-open {
                transform: translateX(0);
                box-shadow: 4px 0 24px rgba(0,0,0,0.15);
            }

            /* Hide logo on mobile */
            
            .nav-logo {
                display: none;
            }

            /* Drawers take full width on mobile */
            .nav-drawers {
                width: 100%;
            }

            .drawers-grid {
                flex-direction: column;
                gap: 0.5rem;
                max-width: 100%;
            }

            .drawer-wrapper {
                max-width: 100%;
            }

            .drawer {
                flex-direction: row;
                justify-content: flex-start;
                padding: 1.25rem 1rem;
                min-height: auto;
                gap: 1rem;
            }

            .drawer:hover {
                transform: translateX(8px);
            }

            .drawer.active {
                transform: translateX(16px);
            }

            .drawer-icon {
                width: 24px;
                height: 24px;
            }

            .drawer-label {
                flex: 1;
                text-align: left;
                font-size: 0.7rem;
            }

            .drawer-handle {
                position: static;
                transform: none;
                display: flex;
                align-items: center;
            }

            /* Round knob for mobile */
            .handle-bar {
                display: none;
            }

            /* Hide T-bar specific elements on mobile */
            .oxidation-1,
            .oxidation-2,
            .worn-highlight,
            .verdigris,
            .scratch-1,
            .scratch-2,

            .footer {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1.5rem;
            }

            .footer-left {
                width: 100%;
                max-width: 100%;
            }

            .towel-rack {
                max-width: 100%;
                height: 100px;
            }

            .rack-panel {
                height: 14px;
            }

            .rack-screw {
                width: 5px;
                height: 5px;
            }

            .rack-screw:nth-child(1) {
                left: 6px;
            }

            .rack-screw:nth-child(2) {
                right: 6px;
            }

            .hangers-container {
                padding: 0 5px;
                gap: 0.25rem;
            }

            .towel-hanger {
                width: 22%;
                height: 70px;
            }

            .hanger-peg {
                width: 10px;
                height: 6px;
            }

            .hanger-hook {
                width: 8px;
                height: 14px;
            }

            .hanger-string {
                top: 16px;
                height: 14px;
            }}
