/* TULE CREEK CAVALIERS - SIDEBAR & COPPER LINKS
   This file controls the Desktop Sidebar and the Mobile Slide-out Menu.
*/

/* === 1. DESKTOP SIDEBAR CONTAINER === */
.sidebar {
    flex: 0 0 240px; 
    background-color: #e6c8b7; 
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(168, 126, 106, 0.1) 0%, transparent 60%),
        linear-gradient(to right, rgba(168, 126, 106, 0.05), transparent 30px),
        url('https://www.transparenttextures.com/patterns/papyrus-dark.png');
    border-right: 4px solid #4a2c11;
    box-shadow: inset -5px 0 25px rgba(168, 126, 106, 0.2);
    z-index: 50;
    padding: 15px 10px;
}

.sidebar ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.sidebar li { 
    margin-bottom: 12px; 
}

/* === 2. HAMMERED COPPER LINKS (Desktop) === */
.sidebar li a {
    display: block;
    padding: 14px 10px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border: 2px solid #4a2c11;
    border-radius: 4px;
    background-image: url('https://tulecreekcavaliers.com/images/copper.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.9);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: 0.3s all ease;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.sidebar li a:hover {
    transform: translateY(-2px);
    filter: brightness(1.15); 
    box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
    border-color: #8b5a2b;
}

/* === 3. MOBILE SIDEBAR OVERRIDES === */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0; 
        left: -280px; /* Hidden off-screen */
        width: 260px; 
        height: 100%; 
        z-index: 200; 
        background-image: url('https://tulecreekcavaliers.com/images/wood-bg.webp'); 
        background-size: cover; 
        padding: 0;
        transition: transform 0.3s ease-in-out;
    }

    .sidebar.active { 
        transform: translateX(280px); /* Slides in */
    }

    /* Links turn into white text on wood for mobile readability */
    .sidebar li a { 
        background-image: none; 
        background-color: transparent;
        border: none; 
        border-radius: 0;
        color: #ffffff !important; 
        text-align: left; 
        text-shadow: 2px 2px 4px #000;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-transform: none;
        font-size: 1.1rem;
    }

    .sidebar li { margin-bottom: 0; }

    /* The 'Explore' Header inside the sidebar */
    .sidebar-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: rgba(0,0,0,0.5);
        color: white;
        font-weight: 700;
        border-bottom: 2px solid #e6c8b7;
    }

    .close-menu {
        background: none;
        border: 1px solid white;
        color: white;
        padding: 2px 8px;
        cursor: pointer;
    }
}