/* =========================================
   POE LARR - MASTER STYLESHEET V4.3
   Includes: Monarch Brand, Pro Form, 
   Music Player (Scrubbing), & PDF Fix
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Questrial&family=Montserrat:wght@400;600;700&display=swap');

:root {
    /* COLOR SYSTEM */
    --bg: #0E0E0E;
    --surface: #141414;
    --border: #2A2A2A;
    --text-main: #E0E0E0;
    --text-muted: #888888;
    --accent: #A0A0A0;
    
    /* TYPOGRAPHY SYSTEM */
    --font-heading: 'Questrial', sans-serif;
    --font-body: 'Didact Gothic', sans-serif;
    
    /* LAYOUT */
    --nav-height: 80px; 
    --max-width: 1000px;
}

/* 1. RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

/* 2. TYPOGRAPHY & METALLIC EFFECTS */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* MAIN HERO LOGO STYLE */
h1 { 
    font-family: var(--font-heading); 
    font-size: 3rem; 
    line-height: 1; 
    letter-spacing: 0.6em; 
    background: linear-gradient(180deg, #FFFFFF 20%, #777777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600; 
    margin-left: 0.6em; 
    margin-bottom: 30px; 
    filter: drop-shadow(0 2px 0px rgba(0,0,0,0.8)); 
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* INNER PAGE TITLES (BOOKING, MUSIC) */
.inner-page-title {
    font-size: 2.2rem !important;
    margin-left: 0 !important;
    letter-spacing: 0.3em !important;
    margin-bottom: 20px !important;
}

h2 { font-size: 1.8rem; border-bottom: 1px solid var(--border); padding-bottom: 15px; letter-spacing: 0.15em; }
h3 { font-size: 1.1rem; color: var(--accent); letter-spacing: 0.1em; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-weight: 400; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: #fff; }

/* 3. UTILITIES & GRID */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }
.clean-list { list-style: none; }
.clean-list li { margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 15px; color: var(--text-muted); }

/* 4. NAVIGATION */
header {
    position: fixed; top: 0; width: 100%;
    background: rgba(14, 14, 14, 0.95);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    height: var(--nav-height);
}
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup img { height: 40px; width: auto; }
.brand-lockup span { 
    font-family: var(--font-heading); 
    font-size: 1.1rem; 
    letter-spacing: 0.2em; 
    background: linear-gradient(180deg, #FFFFFF 20%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-family: var(--font-heading); font-weight: 600; }
nav a.active { color: #fff; border-bottom: 1px solid var(--accent); padding-bottom: 5px; }

/* 5. HERO SECTION */
.hero {
    min-height: 85vh; 
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #141414 0%, #0E0E0E 70%);
}
.hero img {
    width: 500px; 
    max-width: 85vw; 
    margin-bottom: -40px; 
    filter: drop-shadow(0 0 50px rgba(255,255,255,0.05));
    position: relative;
    z-index: 1;
}
.tagline { 
    display: block;
    color: var(--accent); 
    font-family: var(--font-heading);
    letter-spacing: 0.5em; 
    font-size: 0.9rem; 
    margin-top: 10px;
    margin-bottom: 10px; 
    text-transform: uppercase; 
    font-weight: 600;
    opacity: 0.8;
}

/* 6. BUTTONS */
.hero-btns { display: flex; gap: 20px; justify-content: center; margin-top: 40px; width: 100%; }
.btn {
    display: inline-block;
    padding: 14px 35px; 
    border: 1px solid var(--border);
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.8rem; 
    letter-spacing: 2px;
    font-family: var(--font-heading);
    font-weight: 700; 
    background: rgba(0,0,0,0.6); 
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px; 
    text-align: center;
}
.btn:hover { border-color: var(--accent); color: #fff; background: var(--surface); }
.btn-solid { background: var(--text-main); color: #000; border-color: var(--text-main); }
.btn-solid:hover { background: #fff; color: #000; }

/* 7. CONTACT FORM */
.contact-card { background: var(--surface); padding: 30px; border: 1px solid var(--border); }
label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; color: var(--accent); font-weight: 600; }
input, select, textarea { width: 100%; background: #000; border: 1px solid var(--border); color: #fff; padding: 15px; font-family: var(--font-body); font-size: 0.9rem; transition: border-color 0.3s ease; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--text-main); }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 15px center; background-size: 15px; }

/* 8. REAL MUSIC PLAYER */
.music-card { background: var(--surface); border: 1px solid var(--border); transition: transform 0.3s ease, border-color 0.3s ease; overflow: hidden; position: relative; }
.music-card:hover { border-color: var(--accent); transform: translateY(-5px); }

.album-art { 
    width: 100%; 
    height: 180px !important; /* REQUESTED SMALLER SIZE */
    background-size: cover; 
    background-position: center; 
    position: relative; 
    border-bottom: 1px solid var(--border); 
    background-color: #000; 
}

.play-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; cursor: pointer; z-index: 10; }
.music-card:hover .play-overlay { opacity: 1; }
.play-icon { font-size: 3rem; color: #fff; filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); user-select: none; }

.track-info { padding: 25px; text-align: left; }
.track-info h3 { margin-bottom: 5px; font-size: 1rem; letter-spacing: 0.1em; }

.player-controls { margin-top: 15px; }
.time-display { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.65rem; color: var(--accent); font-family: var(--font-heading); letter-spacing: 1px; }

.progress-container { 
    width: 100%; 
    height: 4px; 
    background: #222; 
    cursor: pointer; 
    position: relative; 
    border-radius: 2px; 
    transition: height 0.2s ease; 
}
.progress-container:hover { height: 6px; }
.progress-bar { width: 0%; height: 100%; background: #fff; border-radius: 2px; }

/* 9. RESPONSIVE REFINEMENT (REVERT TO SIMPLE NAV) */
@media (max-width: 768px) {
    /* Ensure Nav Stays Visible and Centered */
    header {
        position: relative; /* This prevents it from floating over your content */
        height: auto;
    }

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 15px;
    }

    nav { 
        display: block !important; 
    }
    
    nav ul { 
        display: flex;
        gap: 15px; 
        justify-content: center;
        list-style: none;
    }

    /* Restoring the original smaller, cleaner font */
    nav a { 
        font-size: 0.65rem; 
        letter-spacing: 2px; 
        text-transform: uppercase;
        color: var(--text-muted);
    }

    nav a.active {
        color: #fff;
        border-bottom: 1px solid var(--accent);
    }

    /* Basic Formatting Fixes for Content */
    .grid-2 { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }

    .hero img { 
        width: 250px; 
        margin-bottom: 10px; 
    }

    .hero h1 { 
        font-size: 1.6rem; 
        letter-spacing: 0.3em;
        margin-left: 0.3em;
    }

    .tagline { 
        font-size: 0.7rem; 
        letter-spacing: 0.3em; 
    }

    .hero-btns { 
        flex-direction: column; 
        gap: 15px; 
        padding: 0 40px; 
    }

    .btn { 
        width: 100%; 
        min-width: auto; 
    }

    /* Ensure Music Cards look right */
    .album-art { 
        height: 180px !important; 
    }
}

/* 10. PRINT / PDF STYLES (THE NUCLEAR OPTION) */
@media print {
    header, footer, .no-print, .btn, nav { display: none !important; }
    body { background: #fff !important; color: #000 !important; font-size: 11pt !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .container { max-width: 100% !important; width: 100% !important; padding: 0.5in !important; }
    h1, h2, h3, h4, p, li, span, strong { color: #000 !important; text-shadow: none !important; background: none !important; -webkit-text-fill-color: #000 !important; }
    .epk-header-logo { width: 100px !important; display: block; margin: 0 auto 15px auto; border: none !important; }
    h1 { font-size: 22pt !important; letter-spacing: 0.4em !important; text-align: center !important; margin-bottom: 5px !important; }
    .tagline { font-size: 10pt !important; letter-spacing: 0.4em !important; text-align: center !important; margin-bottom: 25px !important; }
    .epk-meta { border-top: 1.5pt solid #000 !important; border-bottom: 1.5pt solid #000 !important; padding: 8pt 0 !important; margin-bottom: 30pt !important; display: flex !important; justify-content: center !important; gap: 15pt !important; }
    img { max-width: 100% !important; filter: none !important; -webkit-filter: none !important; border: 0.5pt solid #eee !important; }
    .grid-2 { display: flex !important; gap: 30pt !important; }
}

/* LOGO GRID (TRUST BAR) */
.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.3;
    transition: 0.5s ease;
}
.logo-grid:hover { opacity: 0.8; }
.logo-grid img {
    height: 35px;
    width: auto;
    filter: grayscale(1) brightness(1.2);
    object-fit: contain;
}

/* NAV BUTTON STYLE */
.nav-btn {
    background: var(--text-main);
    color: #000 !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    border-radius: 2px;
    margin-left: 10px;
}
.nav-btn:hover { background: #fff !important; color: #000 !important; transform: translateY(-2px); }
