/* DEBUG */
.item {
    background-color: aqua;
}
/* DEBUG */
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-underline-offset: 4px;
    font-size: 14px;
}

a{
    color: white;
}

.notification {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-content-container {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 12px;
    margin-right: 12px;
    max-width: 1920px;
    width: 100%;
    padding: 0px 8px 0px 8px;
}

.notification-content-container p, u {
    color: #D5D5D5;
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    justify-content: space-between;
    align-items: center;
    margin: 0px 12px 0px 12px;
    padding: 0px 8px 0px 8px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.viewport {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viewport-container {
    width: 100%;
    max-width: 1920px;
}

.welcome-text {
    text-align: center;
    font-weight: bold;
    font-size: 72px;
    color: #202020;
    line-height: 85%;
    letter-spacing: -4px;
    margin-bottom: 4px;
}

.welcome-description {
    text-align: center;
    color: #373737;
    line-height: 150%;
    max-width: 45ch;
}

.welcome-desc-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.admission-button {
    font-size: inherit;
    background-color: black;
    color: white;
    font-family: inherit;
    font-weight: bold;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    border: none;
    border-radius: 10000px;
    letter-spacing: 0.5px;
}

.call-button {
    font-size: inherit;
    background-color: #EFEFEF;
    color: black;
    font-family: inherit;
    font-weight: bold;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    border: none;
    border-radius: 10000px;
    letter-spacing: 0.5px;
}

.contact-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.location-container {
    margin-top: 14px;
}

.location-tag-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 24px;
    color: #373737;
}

/* Styling the featured image contianer to make it scrollable */
.featured-image-container {
    width: auto;
    margin-top: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-item {
    margin-right: 20px;
}

.featured-item-odd {
    margin-top: -24px;
}

.black-section {
    padding: 16px;
    font-size: 1.5em;
}

.black-section p {
    color: #E8E8E8;
    width: auto;
    font-size: 16px;
    line-height: 150%;
    max-width: 500px;
}

.features {
    display: flex;
    flex-direction: column;
}
/* Media queries */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .body {
        font-size: 14px;
    }
    .logo-container img{
        height: 28px;
    }
    .welcome-text {
        font-size: 48px;
        letter-spacing: -1px;
    }
    .contact-buttons-container {
        background-color: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        font-size: 16px;
    }
    .logo-container img{
        height: 36px;
    }
    .welcome-text {
        font-size: 60px;
        letter-spacing: -2px;
    }
    .contact-buttons-container {
        flex-direction: row;
    }
    .features {
        flex-direction: row;
    }
}

@media screen and (min-width: 1024px) {
    body {
        font-size: 18px;
    }
    .logo-container img{
        height: 48px;
    }
    .contact-buttons-container {
        flex-direction: row;
    }
    .features {
        flex-direction: row;
    }
}


