/* --- RESET & VARIABLES --- */
:root {
    --color-black: #050505;
    --color-red: #d32f2f; /* Stencil Red */
    --color-green: #2e7d32; /* Stencil Green */
    --color-white: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, .nav-left a, .nav-right a, .text-link {
    font-family: 'Permanent Marker', cursive; /* Banksy Style Font */
    text-transform: uppercase;
}

/* --- HEADER (RED BACKGROUND) --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-red); /* Red background for visibility */
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-left, .nav-right { display: flex; gap: 30px; }

.nav-left a, .nav-right a {
    font-size: 1.2rem;
    color: var(--color-black); /* Black text on Red background */
}

.nav-left a:hover, .nav-right a:hover {
    color: var(--color-white);
}

.logo-container { margin: 0 40px; }

.nav-logo {
    height: 70px; /* Adjust size */
    width: auto;
    display: block;
    /* If the jpg has a white box, blend mode multiply can sometimes hide it 
       if the background is dark enough, but it works best on transparency */
    mix-blend-mode: multiply; 
}

/* --- HERO SECTION (Cleaned up) --- */
.hero-section {
    margin-top: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--color-black);
    padding: 20px 0;
}

.banner-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* --- STENCIL FEATURE SECTION --- */
.stencil-feature {
    background-color: var(--color-green);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.stencil-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    gap: 50px;
}

.stencil-text {
    flex: 1;
    color: var(--color-black);
}

.stencil-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--color-black);
    display: inline-block;
}

.stencil-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Wrapper to space the button from the text */
.stencil-cta {
    margin-top: 20px;
    display: block;
}

/* The Button Styling */
.action-button {
    width: 180px; /* Adjust size as needed */
    transition: transform 0.2s ease;
    cursor: pointer;
    /* Optional: Drop shadow to make it pop off the green background */
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.2)); 
}

.action-button:hover {
    transform: scale(1.1) rotate(-3deg); /* Banksy-style tilt on hover */
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    padding: 30px;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

.social-links { margin-bottom: 20px; }
.social-links a { margin: 0 10px; color: #888; }
.social-links a:hover { color: var(--color-red); }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .nav-left, .nav-right { display: none; }
    .mobile-menu-icon { display: block; font-size: 2rem; position: absolute; right: 20px; }
    
    .stencil-content {
        flex-direction: column-reverse; /* Put image on top on mobile */
        text-align: center;
    }
    
    .hero-overlay {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}
/* --- DOPPIFY MOBILE UI IMPLEMENTATION --- */

/* 1. The Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    position: fixed;
    top: 20px;
    right: 20px; /* Doppify had left, but typically Right is better for thumbs */
    z-index: 2000; /* Above everything */
    background: var(--color-red); /* Match Bukowski Theme */
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* 2. The Sidebar Drawer (Hidden on Desktop) */
.sidebar-nav {
    display: none; /* Hidden on desktop */
}

/* --- MOBILE RESPONSIVENESS (Using Doppify Breakpoints) --- */
@media (max-width: 900px) {
    
    /* Show the hamburger button */
    .mobile-menu-toggle {
        display: flex; /* Activate flex to center the icon */
    }

    /* Hide the standard Desktop Header Links */
    .nav-left, .nav-right, .mobile-menu-icon {
        display: none !important;
    }

    /* Ensure Logo is Centered on Mobile */
    .site-header {
        justify-content: center;
        padding: 10px;
    }

    /* THE SLIDE-OUT DRAWER LOGIC */
    .sidebar-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px; /* Width of drawer */
        background-color: #000; /* Black background */
        transform: translateX(-100%); /* Start hidden off-screen */
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0,0,0,0.8);
        z-index: 1500; /* Below toggle button, above content */
        padding-top: 100px; /* Space for top elements */
        gap: 20px;
        border-right: 2px solid var(--color-green); /* Bukowski Green Border */
    }

    /* The class added by JS to slide it in */
    .sidebar-nav.mobile-active {
        transform: translateX(0);
    }

    /* Link Styling inside the Drawer */
    .sidebar-nav a {
        color: #fff;
        font-family: 'Permanent Marker', cursive;
        font-size: 1.5rem;
        text-decoration: none;
        padding: 10px 30px;
        border-left: 5px solid transparent;
        transition: 0.2s;
    }

    .sidebar-nav a:hover {
        background: #111;
        border-left: 5px solid var(--color-red); /* Red accent on hover */
        color: var(--color-red);
    }
}