@import url('fonts/fonts.css');

/* Reset body margin and padding */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensures the body covers the full viewport height */
    width: 100%;
    /* Ensures the body covers the full viewport width */
    background-color: #F9F9EF;
}

/* Set the responsive background image on the body */
body {
    background-image: url('Images/Backgrounds/BlankBackground.png');
    background-size: 100%;
    /* Adjust width fully, height adjusts proportionally */
    background-repeat: no-repeat;
    /* Prevents tiling */
    background-position: center top;
    /* Aligns the image to the top center */
}

.container {
    display: flex;
    flex-direction: column;
}

.TitleSection {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5%;
}

.Title {
    width: 100%;
    display: flex;
    justify-content: center;
}

h1 {
    font-family: 'Gendry', sans-serif;
    font-size: 7.5vw;
    line-height: 1;
    color: #1f234f;
    font-weight: unset;
    width: fit-content;
}

.Slogan {
    font-family: 'GothamBook', sans-serif;
    font-size: 2vw;
    font-weight: 600;
    color: #1f234f;
    width: 100%;
    padding-right: 5%;
}

h3 {
    margin-top: 15%;
    margin-left: 12%;
    font-family: 'Gendry', sans-serif;
    font-size: 2.8vw;
    line-height: 1;
    color: #1f234f;
    font-weight: unset;
}

.CounselorCardLeft {
    margin: 2%;
    border: 2px solid #1f234f;
    border-radius: 25px;
}

.CounselorCardRight {
    margin: 2%;
    border: 2px solid #1f234f;
    border-radius: 25px;
}

.CounselorContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 5%;
}

.Left,
.Right {
    width: 100%;
    display: flex;
    /*     justify-content: center;*/
}

.Left {
    justify-content: flex-start;
    padding-left: 10%;
}

.Right {
    justify-content: flex-end;
    padding-right: 10%;
}

.First,
.Second {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.CIMG {
    width: 25vw;
}

.RightInfo {
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    width: 100%;
}

.LeftInfo {
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    width: 100%;
}

.Name {
    margin: 0 0;
}

.Type {
    margin: 0 0;
    font-size: 2.5vw;
}

.TypeL {
    margin: 0 0;
    font-size: 2vw;
}

h4 {
    margin: 1% 0;
    font-family: 'Gendry', sans-serif;
    font-size: 1.5vw;
    line-height: 1;
    color: #1f234f;
    font-weight: unset;
}

h6 {
    margin: 1% 0;
    font-family: 'GothamBook', sans-serif;
    font-size: 1vw;
    font-weight: 600;
    color: #1f234f;
    background-color: #9A9EF8;
    padding: 1%;
}

.Description {
    margin-top: 3%;
    font-family: 'GothamBook', sans-serif;
    font-size: 1.5vw;
    color: #1f234f;
    width: 100%;
}

.BookButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 7%;
    margin-top: 5%;
}

.book-now,
.schedulebutton,
.CallButton,
.TextButton {
    color: #f9f9ef;
    background-color: #1f234f;
    border: 0;
    font-size: 1.2vw;
    font-family: 'GothamBook', sans-serif;
    font-weight: 600;
    padding: 5% 8%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now:hover,
.schedulebutton:hover,
.CallButton:hover,
.TextButton:hover {
    border-radius: 25px;
    background-color: #9A9EF8;
}

.InfoMobile,
.ButtonsMobile {
    display: none;
}

@media (max-width: 1024px) {
    .TitleSection {
        margin: 0;
    }

    .Slogan {
        padding-right: 7%;
    }

    h1 {
        margin: 0;
    }

    h3 {
        margin: auto;
        margin-top: 15%;
        font-size: 4vw;
    }

    .RightInfo,
    .LeftInfo {
        display: none;
    }

    .Left,
    .Right {
        width: fit-content;
        padding: 0;
    }

    .ButtonsMobile {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        margin-top: 5%;
    }

    .DescriptionMobile {
        margin-top: 1%;
        margin-bottom: 2%;
        font-family: 'GothamBook', sans-serif;
        font-size: 3vw;
        color: #1f234f;
        width: 100%;
    }

    .Name {
        font-size: 4vw;
    }

    .InfoMobile {
        display: flex;
        flex-direction: column;
        padding: 0 10%;
    }

    .Type {
        font-size: 3.5vw;
    }

    .TypeL {
        font-size: 3vw;
    }

    h4 {
        font-size: 2vw;
    }

    h6 {
        font-size: 2vw;
    }

    .book-now,
    .schedulebutton,
    .CallButton,
    .TextButton {
        font-size: 3vw;
    }

}