/* ===== Reset & Base ===== */
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

a {
    color: #F29441;
} a:visited {
    color: #1E4E59;
}

a.home-button {
    color: #F29441;
    text-decoration: none;
} a.home-button:visited {
    color: #F29441;
    text-decoration: none;
}

/* ===== Fonts ===== */
@font-face {
    font-family: 'KimberleyBl-Regular';
    src: url('../fonts/Kimberley.otf') format('opentype');
}

/* ===== Background ===== */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -20;
    background: linear-gradient(to bottom, #7ED9C8 0%, #1E4E59 100%);
}

.bg-clouds {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    transform: translateY(-2rem); /* -translate-y-8 */
}

.bg-clouds img {
    width: 100%;
}

/* ===== Content Wrapper ===== */
.content {
    position: relative;
    z-index: 10;
}

/* ===== Language Button ===== */
.lang-button-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.lang-button, .home-button {
    background: transparent;
    border: 0.3em solid #F29441;
    border-radius: 0.5em;
    color: #F29441;
    font-family: 'Kimberley', sans-serif;
    cursor: pointer;
}

/* ===== Title ===== */
.title-wrapper {
    display: flex;
    justify-content: center;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.title-wrapper img {
    width: 75%;
}

/* ===== Lang Text ===== */
#lang-text {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    text-align: center;
    color: #C9F2E7;
    font-family: 'KimberleyBl-Regular', sans-serif;
}

/* ===== Bar Rotations ===== */
.bar-rotations-container {
    margin-left: auto;
    margin-right: auto;
}

.bar-rotations-container img {
    width: 100%;
}

/* ===== City Background ===== */
.bg-city {
    width: 100%;
    overflow: hidden;
    margin-top: auto;
    height: 39vw;
}

.bg-city img {
    width: 100%;
}

.flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* ===== Responsive ===== */
@media (orientation: landscape) {
    .bg-clouds {
        transform: translateY(-10%);
    }

    .divider {
        height: 19.5vw;
    }

    #lang-text {
        font-size: 2rem;
    }

    .generic-divider {
        height: 5vw;
    }

    .lang-button, .home-button {
        padding: 0.5rem 1rem;
        font-size: 2.5rem;
    }

    .bar-rotations-container {
        width: 50%;
    }
}

@media (orientation: portrait) {
    .divider {
        height: 11vw;
    }

    #lang-text {
        font-size: 1.3rem;
    }

    .generic-divider {
        height: 10vw;
    }

    .lang-button, .home-button {
        padding: 0.25rem 0.5rem;
        font-size: 1.2rem;
    }

    .bar-rotations-container {
        width: 75%;
    }

    .title-wrapper {
        transform: translateY(-3em);
    }
}