/* Main styles for Liberty Ice Machine splash page */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #0022ff;
    box-shadow: -1px -4px 101px -41px rgba(0, 0, 0, 0.75) inset;
    -webkit-box-shadow: -1px -4px 101px -41px rgba(0, 0, 0, 0.75) inset;
    -moz-box-shadow: -1px -4px 101px -41px rgba(0, 0, 0, 0.75) inset;
    font-family: Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 600px;
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 2rem;
}

h1 {
    color: white;
    text-align: center;
    font-family: inherit;
    font-size: 1.8rem;
    margin: 1rem 0;
    font-weight: 400;
    line-height: 1.3;
}

.contact-info {
    color: white;
    text-align: center;
    line-height: 1.2;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-style: normal;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-link:hover,
.contact-link:focus {
    opacity: 0.9;
    text-decoration: underline;
}

.address {
    margin: 2rem 0 !important;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .container {
        margin-top: 10vh;
    }

    .logo {
        max-width: 95%;
    }

    h1 {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .contact-info {
        font-size: 1rem;
        padding: 0 1rem;
    }
}