/* styles.css */

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo-container {
    width: 100%; /* Ensures the container takes up the full width */
    display: flex;
    justify-content: center;
}

.logo-container .logo {
    max-width: 100%;   /* Makes the SVG responsive */
    height: auto;      /* Maintain aspect ratio */
    /*max-width: 150px;  /* Limits max size for larger screens */
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    text-decoration: none;
    background-color: #007BFF;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1em;
}

.cta-button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design for Mobile and Tablet */

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    /* .logo-container .logo {
        max-width: 120px;  /* Makes the logo smaller for tablets */
    } */
}

/* Mobile-first Design */
@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.8em;
    }

    /* .logo-container .logo {
        max-width: 100px;  /* Makes the logo even smaller on mobile */
    } */

    footer {
        font-size: 0.8em;
        padding: 10px 0;
    }
}
