/* Color Palette & Fonts */
:root {
    --primary-blue: #1f48a2;
    --primary-red: #ef4837;
    --primary-white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: var(--font-body);
    color: var(--primary-white);
}

.main-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* --- IMPORTANT: Change 'background.jpg' to your image file --- */
    background: url('background.jpg') no-repeat center center/cover;
    position: relative;
}

/* This creates the blue overlay */
.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.85; /* Adjust opacity to make the background more or less visible */
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.logo {
    max-width: 250px;
    margin-bottom: 2.5rem;
}

.main-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
}

.main-heading .highlight {
    color: var(--primary-red);
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
    color: var(--primary-blue);
}

/* Countdown Timer */
#countdown {
    gap: 15px;
}

.timer-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-box span {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.timer-box p {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Contact Info */
.contact-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 3rem;
}
.contact-info{
    margin-top: 20px;
}
.contact-info a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.contact-info .fa-envelope {
    margin-right: 8px;
    color: var(--primary-red);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.2rem;
    }
    .timer-box {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    .timer-box span {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    #countdown {
        gap: 10px;
    }
    .timer-box {
        min-width: 70px;
        padding: 0.8rem;
    }
    .timer-box span {
        font-size: 1.8rem;
    }
     .timer-box p {
        font-size: 0.7rem;
    }
}