/* === COLOR & THEME VARIABLES: earthy Y2K-vintage / gorpcore / hipster palette === */
:root {
    --bg-color: #1e1e1e;               /* Fallback dark color if image fails */
    --accent-primary: #000000;          /* Muted olive green */
    --accent-secondary: #b89778;        /* Warm taupe / vintage wool */
    --accent-tertiary: #8b5a2b;         /* Rust / burnt sienna */
    --text-color: #e8e3d9;              /* Creamy off-white */
    --button-bg: #2a2a2a;
    --button-border: #5c6b5c;
    --shadow-color: rgba(74, 112, 67, 0.35);
    
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* NEW: Background image – change filename here */
    --bg-image: url('bg.jpg');          /* ← Upload your image and update this filename */
    --overlay-opacity: 0.65;            /* Dark overlay strength – lower = more image visible */
}

/* Subtle optional grain/wool texture overlay (keep or remove) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url('images/back1.png') repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: -2;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: linear-gradient(rgba(0,0,0,var(--overlay-opacity)), rgba(0,0,0,var(--overlay-opacity))), 
                var(--bg-image) center/cover no-repeat fixed;
    background-color: var(--bg-color); /* Fallback */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.container {
    max-width: 550px;
    width: 90%;                         /* Better mobile scaling */
    padding: 50px 25px;
    border: 3px solid var(--accent-primary);
    border-radius: 12px;
    background: rgba(30, 30, 30, 0.88); /* Slightly more opaque for better contrast on busy images */
    box-shadow: 0 10px 30px var(--shadow-color), inset 0 0 20px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);         /* Stronger blur for glassy/readable effect */
    z-index: 1;
}

/* Mobile adjustments: reduce padding, font sizes for smaller screens */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }
    h1 {
        font-size: 2.6em;
    }
    p {
        font-size: 1.1em;
    }
    .link-button {
        font-size: 1.3em;
        padding: 14px 25px;
    }
    .logo {
        max-width: 180px;
    }
}

.logo {
    max-width: 220px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 12px var(--accent-secondary));
    border-radius: 8px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--accent-secondary);
    text-shadow: 2px 2px 0 #000, 4px 4px 0 var(--accent-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

p {
    font-family: var(--font-body);
    font-size: 1.3em;
    margin-bottom: 50px;
    opacity: 0.95;
    letter-spacing: 0.5px;
    line-height: 1.5;
    font-weight: 400;
}

.links-list {
    list-style: none;
}

.link-button {
    display: block;
    margin: 22px 0;
    padding: 16px 35px;
    background: linear-gradient(to bottom, var(--button-bg), #222);
    color: var(--accent-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 3px solid var(--accent-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #000, inset 0 0 8px rgba(0,0,0,0.4);
    text-shadow: 1px 1px 0 #000;
}

.link-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 var(--accent-tertiary), 0 0 20px var(--shadow-color);
    background: linear-gradient(to bottom, #333, #222);
    border-color: var(--accent-secondary);
}