/* General Body */

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #222;
}


/* --- Top Bar --- */

.top-bar {
    display: flex;
    justify-content: flex-end;
    /* keeps date/time and theme toggle on the right */
    align-items: center;
    padding: 8px 20px;
    background: #1f1f1f;
    /* darker gray */
    color: #fff;
    font-size: 14px;
    gap: 15px;
}


/* Optional: small styling for date/time */

#date-time {
    font-weight: 500;
}


/* --- Logo --- */


/* --- Logo Container Above Nav --- */

.logo {
    text-align: center;
    /* center logo above nav */
    padding: 15px 0;
    background: #fff;
    /* optional: same as nav background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 10;
}


/* Logo Image */

.logo a img {
    max-height: 60px;
    width: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a img:hover {
    transform: scale(1.05);
    /* slight zoom on hover */
}


/* Navigation */

nav {
    background: #fff;
    /* matches logo background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    /* center nav links */
    list-style: none;
    margin: 0;
    padding: 10px 0;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: #e63946;
    color: #fff;
    transform: translateY(-2px);
}


/* Responsive */

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}


/* Contact Section Styling */


/* Contact Section Container */

.contact-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}


/* Section Title */

.contact-section h1 {
    font-size: 2.3rem;
    color: #E50914;
    margin-bottom: 10px;
    font-weight: 700;
}


/* Section Subtitle */

.contact-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 35px;
}


/* Contact Details Block */

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 50px;
}

.contact-details p {
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #E50914;
    font-size: 1.3rem;
}


/* Mailchimp Form Wrapper */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


/* Inputs & Textarea */

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #E50914;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}


/* Submit Button */


/* Main container */

#mc_embed_signup {
    background: #1a1a1a;
    /* Dark background for contrast */
    color: #fff;
    font-family: 'Helvetica', Arial, sans-serif;
    width: 500px;
    max-width: 90%;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin: 50px auto;
    border-top: 5px solid #ff4500;
    /* Accent color for 2237 News */
}


/* Form heading */

#mc_embed_signup h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #E50914;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Subtext for required fields */

.indicates-required {
    font-size: 0.85rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 20px;
}


/* Input field groups */

.mc-field-group {
    margin-bottom: 18px;
}


/* Labels */

.mc-field-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #fff;
}


/* Inputs and select */

.mc-field-group input,
.mc-field-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mc-field-group input:focus,
.mc-field-group select:focus {
    border-color: #E50914;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    outline: none;
}


/* Submit button */

.button {
    background-color: #E50914;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #E50914;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(224, 62, 0, 0.5);
}


/* Error and success messages */

#mc_embed_signup .response {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}

#mce-error-response {
    color: #ff6b6b;
}

#mce-success-response {
    color: #4caf50;
}


/* Optional footer (Mailchimp branding) */

#mc_embed_signup .foot {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #ccc;
}

#mc_embed_signup .foot a {
    color: #E50914;
    text-decoration: none;
}

#mc_embed_signup .foot a:hover {
    text-decoration: underline;
}


/* Responsive */

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    .contact-section {
        padding: 30px 20px;
    }
}