/*
Theme Name: Black Male Revue
Theme URI: https://blackmalerevue.com
Author: Paul
Description: Custom minimal theme for Black Male Revue - coming soon landing page. Hand-built classic PHP theme, no page builder, no bloat plugins.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: blackmalerevue
*/

/* ==========================================================================
   Reset / base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img, video { max-width: 100%; display: block; }

/* ==========================================================================
   Hero / coming soon section
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%) contrast(1.15) brightness(1.3);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 24px;
    max-width: 900px;
}

.hero__eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #cfcfcf;
    margin-bottom: 18px;
}

.hero__title {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    line-height: 1.02;
    font-size: clamp(48px, 9vw, 110px);
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.hero__title .accent {
    color: #a8a8a8;
}

.hero__coming-soon {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: clamp(22px, 3.5vw, 34px);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #e5e5e5;
    margin-top: 22px;
}

.hero__divider {
    width: 70px;
    height: 1px;
    background: #666;
    margin: 32px auto;
}

.hero__contact {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: #d8d8d8;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    justify-content: center;
}

.hero__contact a {
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hero__contact a:hover {
    color: #fff;
    border-color: #fff;
}

.hero__footer-note {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a8a8a;
}

@media (max-width: 480px) {
    .hero__content { padding: 16px; }
    .hero__contact { font-size: 14px; gap: 8px 18px; }
}
