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

/* Load custom font */
@font-face {
    font-family: 'GeneralSans';
    src: url('fonts/GeneralSans-Variable.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans';
    src: url('fonts/GeneralSans-VariableItalic.ttf') format('truetype');
    font-style: italic;
}

body {
    background-color: #143958;
    color: #ffffff;
    font-family: 'GeneralSans', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

header {
    margin-top: clamp(2rem, 5vh, 4rem);
}

.logo {
    width: clamp(50px, 4.5vw, 100px);
    filter: invert(1);
    margin-bottom: clamp(1.5rem, 5vh, 15rem);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 2.8rem);
    font-weight: bold;
    margin-bottom: clamp(1rem, 2vh, 15rem);
}

main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Schedule section */
.schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

.schedule h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.schedule p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    margin-top: 2vh;
    width: clamp(260px, 40vw, 350px);
    border-bottom: 1px solid #ffffff;
}

.schedule p .day {
    text-align: left;
}

.schedule p .time {
    text-align: right;
}

/* --- ADDRESS SECTION --- */
.address-info {
    line-height: 1.4;
    margin-bottom: clamp(2rem, 7vh, 4rem);
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1vh, 8px);
}

.address-info .address {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
}

/* Footer brand */
footer {
    margin-bottom: clamp(0.5rem, 1.2vh, 2.5rem);
}

.brand-image {
    width: clamp(150px, 10vw, 250px);
    height: auto;
}



@media (max-width: 768px),
(max-height: 650px) {
    header {
        margin-top: 1.5rem;
    }

    .logo {
        margin-bottom: 10vh;
    }

    .subtitle {
        margin-bottom: 4vh;
    }

    .address-info {
        margin-top: 6vh;
        margin-bottom: 10vh;
    }

    footer {
        margin-bottom: 4.5rem;
    }
}