/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-Page Layout */
html, body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f0f0f0; /* Updated background */
    text-align: center;
}

/* Centered Container */
.container {
    width: 60%;  /* Keeps content centered */
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Company Name (Logo) */
.logo {
    font-size: 6rem; /* Increased size */
    font-weight: bold;
}

/* Tagline */
.tagline {
    font-size: 1.2rem; /* Keeps tagline larger than footer */
    font-weight: 300;
    color: #555;
    margin-top: 24px; /* Increased margin */
    line-height: 1.5;
    text-align: center;
    width: 100%; /* Ensures it stays centered */
}

/* Footer (Stretching Across Full Width) */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100vw; /* Uses full viewport width */
    display: flex;
    justify-content: space-between; /* Spreads text across full width */
    padding: 0 15%; /* Adds spacing on the sides */
    font-size: 0.9rem; /* Smaller than tagline */
    font-weight: 300;
    color: #555;
    text-align: center;
}

/* 📱 Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .container {
        width: 80%; /* Keeps content centered */
    }

    .logo {
        font-size: 3rem; /* Shrink logo size on mobile */
    }

    .tagline {
        font-size: 1rem; /* Smaller on mobile but still larger than footer */
    }

    .footer {
        width: 100vw; /* Keeps footer full-width on mobile */
        font-size: 0.8rem; /* Footer stays smaller than tagline */
        padding: 0 10%; /* Reduces side spacing on small screens */
        flex-direction: column; /* Stacks footer items on mobile */
        gap: 5px;
    }
}
