/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-red: #C10A27;
    --color-yellow: #FFED00;
    --color-black: #000000;
    --color-gray: #777777;
    --color-white: #FFFFFF;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 3rem;
    /* Optional: Add a subtle glow or shadow if needed, but keeping it clean for now */
}

/* Typography */
h1.highlight {
    color: var(--color-yellow);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Divider */
.divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-red);
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact-text {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
}

/* Footer */
footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: #444;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* CTA Button */
.cta-container {
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    /* Slightly rounded corners for a modern feel */
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 10, 39, 0.3);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    h1.highlight {
        font-size: 2.5rem;
    }

    .logo {
        max-width: 150px;
        margin-bottom: 2rem;
    }

    .container {
        padding: 1.5rem;
    }
}