/* --- 1. CORE BRANDING & SYSTEM FONTS --- */
:root {
    --bg-light: #f3f3f3;
    --text-dark: #20193C;
    --brand-red: #BC3E2D;
    --brand-orange: #D25215;
    --brand-purple: #8F1858;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- 2. HIGHLIGHTS --- */
.highlight {
    color: var(--brand-red) !important;
    font-weight: 800;
}

/* --- 3. NAVIGATION (Desktop & Global) --- */
.navbar {
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-button-orange {
    background-color: var(--brand-orange);
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap; /* Keeps text on one line */
}

.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* --- 4. LANDING HERO --- */
.landing-hero {
    padding: 100px 20px;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.hero-text { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 2rem; }
.hero-subtext { font-size: 1.4rem; line-height: 1.8; opacity: 0.9; }

/* --- 5. SECTIONS & BIO CARDS --- */
.why-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.why-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 850px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.team-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.bio-summary-justified {
    text-align: justify;
    font-size: 0.95rem;
    color: #444;
}

.job-title {
    color: var(--brand-purple);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.bio-header { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.linkedin-icon { color: var(--brand-purple); text-decoration: none; font-size: 1.5rem; }

/* --- 6. CONTACT PAGE --- */
.contact-container {
    max-width: 600px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h1 { font-size: 3.5rem; font-weight: 800; }
.contact-subtext { font-size: 1.3rem; color: #555; margin-bottom: 40px; }

.mediaboom-form { display: flex; flex-direction: column; gap: 25px; }
.form-group { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.form-group label { font-weight: bold; font-size: 0.85rem; color: var(--brand-purple); text-transform: uppercase; }

.mediaboom-form input, .mediaboom-form textarea {
    width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem;
}

.form-button-wrapper { display: flex; justify-content: center; margin-top: 10px; }
.submit-btn-full {
    background-color: var(--brand-red); color: white; padding: 15px 60px;
    border: none; border-radius: 4px; font-weight: 700; text-transform: uppercase; cursor: pointer;
}

/* --- 7. COMING SOON --- */
.coming-soon-text {
    font-size: 1.5rem;
    color: var(--brand-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* --- 8. MOBILE RESPONSIVE (FIXED HEADER) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px; /* Tighter padding for mobile */
    }

    .nav-container {
        flex-direction: row; /* FORCE SIDE-BY-SIDE */
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo-img {
        height: 35px; /* Slightly smaller logo to save space */
    }

    .cta-button-orange {
        padding: 8px 16px; /* Smaller button to fit next to logo */
        font-size: 0.8rem;
    }

    .hero-text { font-size: 2.2rem; }
    .hero-subtext { font-size: 1.1rem; }
    .contact-header h1 { font-size: 2.5rem; }
    .contact-container { margin: 40px auto; }
    .team-card { min-width: 100%; }
}

footer { text-align: center; padding: 40px; opacity: 0.5; font-size: 0.8rem; }
