﻿/* ─────────────── GLOBAL ─────────────── */

body {
    margin: 0;
    background: #FFD700; /* Gold background */
    font-family: "Segoe UI", Arial, sans-serif;
    color: #000; /* Black text */
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* ─────────────── DECORATIVE CORNER STRIPES ─────────────── */

.corner-stripes {
    position: fixed;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, transparent 70%, #333 70%) 0 0, linear-gradient(135deg, transparent 60%, #444 60%) 0 20px, linear-gradient(135deg, transparent 50%, #555 50%) 0 40px;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.5;
}

.top-left {
    top: 0;
    left: 0;
}

.top-right {
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

.bottom-left {
    bottom: 0;
    left: 0;
    transform: scaleY(-1);
}

.bottom-right {
    bottom: 0;
    right: 0;
    transform: scale(-1);
}

/* ─────────────── HEADER ─────────────── */

.header {
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
    z-index: 10;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;700&display=swap');

/* Brand Title (already Anton) */
.brand-title {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #000;
    text-transform: uppercase;
}

/* Tagline */
.brand-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #000; /* silhouette bar */
    color: #FFD700; /* gold text */
    text-align: center;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NAV */
.navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
}

    .navigation a {
        text-decoration: none;
        color: #000;
        font-size: 20px;
        font-weight: 700;
        padding-bottom: 5px;
        border-bottom: 3px solid transparent;
    }

        .navigation a:hover {
            border-bottom: 3px solid #000;
        }

/* ─────────────── HERO SECTION ─────────────── */

.hero {
    text-align: center;
    padding: 60px 20px;
    margin-top: -40px;
    color: #000;
}

    .hero h2 {
        font-size: 48px;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 30px;
    }

/* CTA Button */
.cta-button {
    background: #000;
    padding: 14px 30px;
    border-radius: 6px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

    .cta-button:hover {
        background: #333;
    }

/* ─────────────── CONTENT CARD ─────────────── */

.content-card {
    background: #fff8dc; /* Light gold/cream */
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #000;
}

    .content-card h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .content-card p {
        font-size: 18px;
        line-height: 1.6;
    }
.footer-bar {
    background: #000;
    color: #FFD700; /* Gold text */
    text-align: center;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .footer-bar a {
        color: #FFD700;
        text-decoration: none;
    }

        .footer-bar a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
/* Make the page a flex column */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main content grows to fill space */
main {
    flex: 1;
}

/* Footer stays at bottom */
.footer-bar {
    background: #000;
    color: #FFD700;
    text-align: center;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-bar a {
    color: #FFD700;
    text-decoration: none;
}
.footer-bar a:hover {
    text-decoration: underline;
}
