/* =========================================
   BOARDWALK BELTLINE — MASTER STYLESHEET
   Dark Blue • Gold • Red • Black
   Clean • Cinematic • Mobile-Perfect
   ========================================= */

:root {
    --blue: #07101f;
    --blue-deep: #040a14;
    --gold: #d4af37;
    --gold-soft: rgba(212,175,55,0.35);
    --red: #b30000;
    --black: #000;
    --white: #fff;

    --radius: 16px;
    --transition: 0.3s ease;
}

/* GLOBAL */
body {
    margin: 0;
    background: var(--blue);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* LOCKED BACKGROUND — ALL PAGES */
.page-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.42);
}

/* iPhone background fix */
@supports (-webkit-touch-callout: none) {
    .page-bg {
        background-attachment: scroll;
    }
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    color: var(--gold);
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--gold-soft);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--red);
}

/* HERO */
.hero {
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 5;
    animation: fadeIn 1.2s ease forwards;
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--gold);
    text-shadow: 0 0 18px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.4rem;
    margin-top: 12px;
    opacity: 0.9;
}

/* BUTTONS */
.btn, .cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 20px;
}

.btn:hover, .cta:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    padding: 90px 40px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.section h2 {
    color: var(--gold);
    font-size: 2.4rem;
}

.section.alt {
    background: rgba(0,0,0,0.55);
}

/* PAGE CONTENT */
.page-content {
    padding: 140px 40px;
    text-align: center;
}

/* CARDS */
.card {
    background: rgba(0,0,0,0.65);
    padding: 32px;
    margin: 40px auto;
    max-width: 650px;
    border-radius: var(--radius);
    border: 1px solid var(--gold-soft);
    backdrop-filter: blur(6px);
}

.card h2 {
    color: var(--gold);
    margin-bottom: 12px;
}

/* PRODUCT IMAGE */
.product-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid var(--gold-soft);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 50px;
    background: rgba(0,0,0,0.85);
    color: var(--gold);
    margin-top: 100px;
    border-top: 1px solid var(--gold-soft);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 1.1rem; }
    .nav { padding: 18px 20px; }
    .nav-links { gap: 18px; }
    .section { padding: 70px 20px; }
    .page-content { padding: 120px 20px; }
}
