﻿/* prelogin.css */

body, html {
    margin: 0;
    font-family: Arial, sans-serif;
}

.hero {
    background-image: url("../images/hero.jpeg");
    background-size: cover;
    background-position: center;
    height: 65vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

    .hero h1 {
        font-size: 3rem;
        margin: 0;
    }

.intro {
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    text-align: center;
    padding: 0 1rem;
}

    .intro h2 {
        font-size: 2.2rem;
        color: #004d40;
        margin-bottom: 1rem;
    }

    .intro p {
        font-size: 1.15rem;
        line-height: 1.6;
        color: #333;
        margin: 0 auto;
    }


.call-to-action {
    margin: 4rem auto 2rem auto;
    padding: 2rem;
    background-color: #004d40;
    color: white;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

    .call-to-action h2 {
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .call-to-action p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .call-to-action .cta-buttons a {
        background-color: #ffffff;
        color: #004d40;
        font-weight: bold;
        border: 2px solid #ffffff;
        transition: all 0.3s ease;
    }

        .call-to-action .cta-buttons a:hover {
            background-color: transparent;
            color: #ffffff;
            border-color: #ffffff;
        }


.cta-buttons {
    margin-top: 2rem;
}

    .cta-buttons a {
        display: inline-block;
        margin: .5rem;
        padding: .75rem 1.5rem;
        background-color: #004d40;
        color: white;
        border-radius: 6px;
        text-decoration: none;
        transition: background 0.3s;
    }

        .cta-buttons a:hover {
            background-color: #00695c;
        }


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
