:root {
    --bg-dark: #f3f3f3;
    --text-light: #20193C;
    --brand-red: #BC3E2D;
    --brand-orange: #D25215;
    --brand-purple: #8F1858;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

/* Updated Navbar for Top-Left Logo */
.navbar {
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(243, 243, 243, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between; /* Pushes items to opposite ends */
    align-items: center;
}

.nav-logo-img {
    height: 50px; /* Controls the size of the logo in the corner */
    width: auto;
    display: block;
}

.cta-button-small {
    background-color: var(--brand-red);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.cta-button-small:hover { 
    background-color: var(--brand-orange); 
}

/* Main Content Area */
.container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px; /* More space at top since logo moved to nav */
}

h2 { 
    font-size: 2.8rem; 
    margin-bottom: 2rem; 
    line-height: 1.1; 
}

.highlight { color: var(--brand-red); }

.mission p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-block;
    border: 1px solid var(--brand-purple);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer { 
    margin-top: 6rem; 
    padding-bottom: 2rem;
    opacity: 0.4; 
    font-size: 0.8rem; 
}
/* Mediaboom Style Form */
.contact-container {
    padding-top: 60px;
}

.mediaboom-form {
    display: flex;
    flex-direction: column;
    gap: 2px; /* Matches the tight spacing in the screenshot */
    max-width: 100%; /* Allows it to fill the container width */
    margin-top: 40px;
}

.mediaboom-form .input-group {
    width: 100%;
    background-color: transparent;
}

.mediaboom-form input, 
.mediaboom-form textarea {
    width: 100%;
    padding: 20px;
    background-color: #ffffff !important; /* Force white background */
    border: none;
    border-bottom: 1px solid #ddd; /* Subtle separation */
    color: #333 !important; /* Dark text for readability on white */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Specific placeholder styling to match the grey in your screenshot */
.mediaboom-form input::placeholder, 
.mediaboom-form textarea::placeholder {
    color: #888;
}

.submit-btn-full {
    background-color: var(--brand-red);
    color: white;
    padding: 20px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.submit-btn-full:hover {
    background-color: var(--brand-orange);
}
