/*------------------- Imported Fonts -------------------*/
@font-face {
    font-family: 'Elms-Sans';
    src: url('../../fonts/Elms_Sans/ElmsSans-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*------------------- Main Content -------------------*/
/* Title */
.sasq-title-container {
    background-color: rgb(12, 39, 60);
    text-align: center;
    padding: 30px 0;
    max-height: 100px;
}

.sasq-title img {
    width: 60%;

    max-width: 450px;
    height: auto;

    opacity: 0;                     /* start invisible */
    transform: scale(0.8);          /* start smaller */
    transition: opacity 1s ease, 
                transform 1s ease;  /* animate both */
}

.sasq-title img.animate {
    opacity: 1;                     /* fade in */
    transform: scale(1);            /* grow to full size */
}

/* Main Grid */
.main-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    color: rgb(25, 93, 105);
}

.main-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 800px;
}

/*----- Join the Watch Title -----*/
.join-title-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 50px 0 50px 0;
}

.join-title-grid img {
    width: 20%;
    height: auto;
}

.join-title-text {
    font-size: 2.5rem;
    font-weight: bold;
}

@media (max-width: 800px) {
    .join-title-text {
        font-size: 1.5rem;
        font-weight: bold;
    }
}

/*----- Information Grids -----*/
/*--- Info Container ---*/
.info-container {
    align-items: left;
    margin-top: -20px;
}

.info-item-container {
    padding: 50px 0 0 0;
}

/*--- Info Title ---*/
.info-title-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.info-title-grid img {
    width: 50px;
    height: auto;
}

.info-title-text {
    font-size: 1.75rem;
    font-weight: bold;
}

/*--- Info Body ---*/
.info-grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    margin: 10px 0 0 100px;
}

@media (max-width: 800px) {
    .info-grid {
        margin: 10px 0 0 40px;
    }
}

.sotw_bullet {
    width: 2%;
    height: auto;
    margin-top: 8px
}

.info-text {
    font-size: 1.3rem;
}

/*----- Contact Section -----*/
.contact-section {
    margin-top: 50px;
    text-align: center;
    /* center under text */
}

.contact-header {
    margin-bottom: 10px;
}

.info-title-text {
    font-size: large;
    font-weight: bold;
    color: rgb(25, 93, 105);
}

.contact-button {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: rgb(204, 191, 146);
    background: rgb(25, 93, 105);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.contact-button:hover {
    background: rgb(12, 39, 60);
}

.visit-bold {
    font-weight: 900;
    padding-top: 10px;
}

/* Images directly below info */
.left-nav-img {
    position: relative;
    margin: 20px 0 10px 0;
}

.bottom-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}