/* Global layout */
html {
    height: 100%;
    overflow-y: scroll;        /* keep scrollbar consistent across pages */
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* NAV – shared across all pages */
.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    position: relative;
    padding-bottom: 3px;
    overflow: hidden;              /* for black bar animation */
    transition: opacity 0.15s;
}

/* Red underline (default faint, strong on hover/active) */
.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #ff2222;
    opacity: 0.25;
    transition: opacity 0.2s;
}

/* Classified black bar on press */
.nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1.4em;
    background-color: #000;
    transform: translateY(-50%);
    transition: width 0.18s;
    box-shadow: 0 0 0 1px #111 inset; /* subtle outline */
}

.nav a:hover {
    opacity: 1;
}

.nav a:hover::after {
    opacity: 1;
}

/* While pressing: animate black bar across text */
.nav a:active::before {
    width: 100%;
}

/* Active page – persistent strong underline */
.nav a.active::after {
    opacity: 1;
}

/* HOME HERO LAYOUT */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 64px;
    text-align: center;
}

.title {
    margin-top: 16px;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.3em;
}

.tagline {
    margin-top: 10px;
    font-size: 1.05rem;
    max-width: 420px;
}

.logo-block {
    margin-top: 28px;
}

.logo-block img {
    width: 160px;
    height: auto;
}

.location {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Founders on home */
.founders-section {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.founders-label {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
}

.founder-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, opacity 0.15s;
    opacity: 0.9;
}

.founder-link:hover {
    border-color: #fff;
    opacity: 1;
}

.accent-red {
    color: #ff2222;
}

/* ABOUT PAGE LAYOUT */
.container {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.65;
}

h1 {
    font-size: 2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

h2 {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 48px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 18px;
}

ul {
    padding-left: 16px;
}

ul li {
    margin-bottom: 8px;
}

/* MEDIA PAGE */
.media-main {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 72px;
}

.media-section {
    margin-bottom: 72px;
}

.media-heading {
    font-size: 1.4rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.media-subline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 720px;
}

/* 16:9 responsive embeds (YouTube) */
.embed-16x9 {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 28px;
    padding-top: 56.25%; /* 16:9 */
}

.embed-16x9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* TikTok clip layout */
.clips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 8px;
}

.clip-card {
    flex: 1 1 280px;
    max-width: 340px;
}

.clip-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.clip-embed {
    background-color: #000;
}

/* constrain TikTok embeds a bit */
.vaura-tiktok {
    max-width: 100% !important;
    min-width: 0 !important;
}

/* Music video block */
.video-block {
    max-width: 900px;
    margin: 0 auto;
}

.video-title {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.video-caption {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 18px;
}

/* EL upRAsing project block */
.project-block {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    max-width: 900px;
}

.project-art img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    border: 1px solid #444;
}

.project-copy {
    flex: 1 1 260px;
    font-size: 0.95rem;
}

.project-breakdown {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* simple button */
.btn-outline {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    border: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    text-decoration: none;
    color: #fff;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {

    .nav {
        justify-content: center;
        font-size: 0.78rem;
        padding: 12px;
    }

    .nav a {
        margin-left: 12px;
    }

    /* Home hero */
    .main {
        justify-content: center;
        padding: 16px 12px 40px;
    }

    .title {
        margin-top: 0;
        font-size: 2.2rem;
        letter-spacing: 0.2em;
    }

    .tagline {
        font-size: 0.92rem;
        max-width: 280px;
    }

    .logo-block {
        margin-top: 22px;
    }

    .logo-block img {
        width: 115px;
    }

    .location {
        margin-top: 8px;
        font-size: 0.8rem;
    }

    .founders-section {
        margin-top: 26px;
        gap: 4px;
    }

    .founders-label {
        font-size: 0.74rem;
        letter-spacing: 0.2em;
    }

    .founder-link {
        font-size: 0.86rem;
        letter-spacing: 0.16em;
    }

    /* About page */
    .container {
        margin: 40px auto;
    }

    h1 {
        font-size: 1.6rem;
    }

    /* Media page mobile */
    .media-main {
        padding: 20px 12px 48px;
    }

    .clips-grid {
        flex-direction: column;
        gap: 24px;
    }

    .project-block {
        flex-direction: column;
    }

    .project-art img {
        margin: 0 auto;
    }
}
