/* ============================================================
   Delano Drive – Rock Band Theme
   Dark Stage / Grit / High Contrast
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Core palette */
    --bg: #050505;
    --bg-soft: rgba(5,5,5,0.85);
    --panel: rgba(15,15,15,0.9);
    --panel-soft: rgba(20,20,20,0.85);
    --line: rgba(255,255,255,0.15);

    /* Text */
    --text: #f2f2f2;
    --muted: #b5b5b5;

    /* Brand */
    --accent: #b31217;          /* deep stage red */
    --accent-soft: rgba(179,18,23,0.25);
    --highlight: #d6b46a;       /* subtle gold */

    /* Forms */
    --input-bg: #111111;
    --input-bg-focus: #181818;
    --input-border: #666666;
    --input-border-focus: var(--accent);

    /* Utility */
    --ok: #4ade80;
    --danger: #f87171;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
        url('/images/background-dark-1920x1080.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ============================================================
   Layout
   ============================================================ */

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(4px);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 1rem;
}

.brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
}

.brand:hover {
    color: var(--highlight);
}

.tagline {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================================
   Navigation
   ============================================================ */

.site-nav {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}

.site-nav a {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.45rem 0.75rem;
}

.site-nav a:hover {
    color: var(--accent);
}

/* ============================================================
   Main Content
   ============================================================ */

.site-main {

    flex: 1 0 auto;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    margin: 0 0 0.75rem;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.6rem;
}

h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 0.75rem;
}

p {
    color: var(--muted);
    max-width: 100%;
}

/* ============================================================
   Cards / Sections
   ============================================================ */

.card {
    background: var(--panel-soft);
    border: 1px solid var(--line);
    padding: 1.5rem;
    margin: 1.75rem 0;
}

/* ============================================================
   Links
   ============================================================ */

a {
    color: var(--highlight);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

/* ============================================================
   Forms
   ============================================================ */

label {
    display: block;
    margin: 0.75rem 0 0.3rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input,
textarea,
select {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text);
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    background: var(--input-bg-focus);
    border-color: var(--input-border-focus);
}

button {
    font-family: 'Oswald', sans-serif;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text);
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

button:hover {
    background: var(--accent);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 1.75rem 0;
}

.site-footer .footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--muted);
}


.fb-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}

.fb-page,
.fb-page iframe {
    max-width: 100% !important;
}

@media (max-width: 600px) {
    .fb-page {
        transform: scale(0.9);
        transform-origin: top center;
    }
}


/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 760px) {
    h1 {
        font-size: 2rem;
    }

    .header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
