* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background: url(ASSETS/background.webp);
    background-size: cover;
    background-color: black;
    overflow-x: hidden;
    background-repeat: no-repeat;
}

/*NAVBAR START*/
.navbar {
    width: 100%;
    min-height: 5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    visibility: visible;
    display: block;
}

li {
    list-style: none;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
}

li a {
    text-decoration: none;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo_div {
    width: 200px;
    height: auto;
}

.logo {
    width: 100%;
}

.book_now_anchor {
    text-decoration: none;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book_now {
    font-size: 30px;
    font-weight: 800;
    margin-right: 25px;
}

.burger_menu {
    visibility: hidden;
    display: none;
    height: 60px;
    width: 47.5px;
    margin-right: 15px;
}

.burger_menu_a {
    font-size: 50px;
    width: 50px;
    height: auto;
}

.sidebar {
    width: 100%;
    height: 100px;
    display: none;
    visibility: hidden;
    justify-content: center;
    align-items: center;
}

.hidemenu {
    display: none;
    visibility: hidden;
    width: 47.5px;
    height: 65px;
    margin-right: 15px;
}

.hidemenu_a {
    font-size: 50px;
    width: 50px;
    height: auto;
}


/*NAVBAR END*/

/*MAIN START*/
.main {
    height: 100%;
    width: 100%;
}

/*MAIN END*/

/*PHOTO SALON START*/
.photo_div {
    height: 100%;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}

.photo_header_div {
    height: 80vh;
    min-height: 30em;
    width: 100%;
    background-image: url(ASSETS/photo_woman.webp);
    background-size: cover;
}

.photo_header {
    display: flex;
    color: white;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 6vw;
    font-weight: 100;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*PHOTO SALON END*/

/* SALON PICTURES START */

h2,
h3,
h4 {
    width: 100%;
    font-size: 7em;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    padding-top: 25px;
    padding-bottom: 75px;
}

h3 {
    padding-top: 50px;
    padding-bottom: 50px;
}

h4 {
    padding-top: 50px;
    padding-bottom: 50px;
}


.salon_div {
    min-height: 50em;
    height: 100vh;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.salon_pictures {
    position: relative;
    width: 800px;
    height: 100%;
    /* Set your desired height here */
    display: flex;
    justify-content: center;
    align-items: center;
}

.salon_img {
    position: absolute;
    width: 100%;
    /* Match the container width */
    height: 100%;
    /* Match the container height */
    object-fit: cover;
    /* Fill the container, cropping if necessary */
    object-position: center;
    /* Center the image within the container */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}


.salon_img:nth-child(2) {
    object-position: 100% 70%;
}

.salon_img.active {
    opacity: 1;
    z-index: 2;
}


/* SALON PICTURES END */

/*SERVICES START*/

.services {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.services_header,
.disclaimer,
.services_text,
.colour_text,
.treatment_text {
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*HAIRCUT START*/

.haircut_and_hairextension {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.hair_cut {
    display: flex;
    width: 100%;
    height: 100%;
}

.hair_extension {
    display: flex;
    width: 100%;
    height: 100%;
}

.hair_colour {
    display: flex;
    width: 100%;
    height: 100%;
}

.hair_treatment {
    display: flex;
    width: 100%;
    height: 100%;
}

.haircut_inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    flex-direction: column;
}

.services_header {
    text-align: center;
    color: white;
    font-size: 2.4vw;
    font-weight: 500;
}

.disclaimer {
    text-align: center;
    color: white;
    font-size: 1vw;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.book_now_other_anchor {
    text-decoration: none;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book_now_other {
    font-size: 30px;
    font-weight: 800;
}

/* HAIRCUT PHOTO */

.haircut_photo_div_left {
    display: flex;
    justify-content: start;
    height: auto;
    width: auto;
    margin-left: 25px;
    margin-bottom: 25px;
}

.haircut_photo_div_right {
    display: flex;
    justify-content: end;
    height: auto;
    width: auto;
    margin-right: 25px;
    margin-bottom: 25px;
}

.haircut_photo {
    object-fit: cover;
    display: flex;
    width: 400px;
    height: 400px;
}

.services_text {
    text-align: center;
    color: white;
    font-size: 1vw;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* HAIRCUT PHOTO DIV */

/*HAIRCUT END*/

/*HAIR COLOUR START*/

.colour_and_treatment {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.colour_text {
    text-align: center;
    color: white;
    font-size: 1vw;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*HAIR COLOUR END*/

/*HAIR TREATMENT START*/

.treatment_text {
    text-align: center;
    color: white;
    font-size: 1vw;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*HAIR TREATMENT START*/

/*SERVICES END*/

/*CONTACT START*/

.contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 75vh;
    min-height: 50em;
    margin-bottom: 50px;
}

.contact_text {
    display: flex;
    width: 100vw;
    height: 25vh;
    font-size: 4vw;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram_facebook {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    min-height: 35em;
}

/* INSTAGRAM START */

.instagram {
    display: flex;
    height: 100%;
    flex-direction: column;
    width: 50%;
}

.instagram_header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 30px;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 50%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram_grid {
    display: grid;
    grid-template-columns: 3;
    grid-template-rows: 2;
    width: 100%;
    height: 100%;
    column-gap: 50px;
    justify-content: center;
}

.instagram_1 {
    grid-column: 1;
    grid-row: 1;
    width: 200px;
    height: 200px;
}

.instagram_2 {
    grid-column: 2;
    grid-row: 1;
    width: 200px;
    height: 200px;
}

.instagram_3 {
    grid-column: 3;
    grid-row: 1;
    width: 200px;
    height: 200px;
}

.instagram_4 {
    grid-column: 1;
    grid-row: 2;
    width: 200px;
    height: 200px;
}

.instagram_5 {
    grid-column: 2;
    grid-row: 2;
    width: 200px;
    height: 200px;
}

.instagram_6 {
    grid-column: 3;
    grid-row: 2;
    width: 200px;
    height: 200px;
}

#instagram_photo {
    object-fit: cover;
    width: 200px;
    height: 200px;
}

/* INSTAGRAM END */

/* FACEBOOK START */

.facebook {
    display: flex;
    height: 100%;
    flex-direction: column;
    width: 50%;
}


.facebook_header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 30px;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 50%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.facebook_grid {
    display: grid;
    grid-template-columns: 3;
    grid-template-rows: 2;
    width: 100%;
    height: 100%;
    column-gap: 50px;
    justify-content: center;
}

.facebook_1 {
    grid-column: 1;
    grid-row: 1;
    width: 200px;
    height: 200px;
}

.facebook_2 {
    grid-column: 2;
    grid-row: 1;
    width: 200px;
    height: 200px;
}

.facebook_3 {
    grid-column: 3;
    grid-row: 1;
    width: 200px;
    height: 200px;
}

.facebook_4 {
    grid-column: 1;
    grid-row: 2;
    width: 200px;
    height: 200px;
}

.facebook_5 {
    grid-column: 2;
    grid-row: 2;
    width: 200px;
    height: 200px;
}

.facebook_6 {
    grid-column: 3;
    grid-row: 2;
    width: 200px;
    height: 200px;
}

#facebook_photo {
    object-fit: cover;
    width: 200px;
    height: 200px;
}

/* FACEBOOK END*/

/*CONTACT END*/

/*FOOTER START*/

.footer {
    display: flex;
    width: 100%;
    height: 60vh;
    min-height: 30em;
}


/* INFO START*/

.info {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.info_logo {
    width: 300px;
    height: auto;
}

.info_address {
    font-size: 1.25vw;
    margin-top: 10px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info_email {
    font-size: 1.25vw;
    margin-top: 10px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info_email a {
    text-decoration: none;
}

.info_socials svg {
    height: 100px;
    width: 100px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.info_socials a {
    text-decoration: none;
    color: transparent;
}

.info_socials a:visited {
    text-decoration: none;
    color: transparent
}

.info_socials a:hover {
    text-decoration: none;
    color: transparent;
}

.info_socials a:active {
    text-decoration: none;
    color: transparent;
}

.info_socials a:focus {
    text-decoration: none;
    color: transparent;
}

/* INFO END*/

/* HOURS STARt*/

.hours {
    display: flex;
    height: 100%;
    min-height: 10em;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.hours p {
    font-size: 1.25vw;
    background: linear-gradient(180deg, #ffffda 0%, #e8b178 70%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hours_header {
    font-weight: 600;
}

/* HOURS END */

/* MAPS START */

.maps {
    display: flex;
    height: 100%;
    width: 100%;
    filter: invert(90%) hue-rotate(180deg) saturate(125%);
    padding: 25px;
}

.maps iframe {
    height: 100%;
    width: 100%;
}

/* MAPS END */

/* FOOTER END */

/* MEDIA QUERY START*/

/* NAVBAR START */

@media screen and (max-width: 800px) {

    .photo_header_div {
        height: 83vh;
    }

    .ul {
        visibility: hidden;
        display: none;
    }

    .sidebar li {
        margin-right: 30px;
        margin-left: 30px;
    }

    .burger_menu {
        visibility: visible;
        display: flex;
    }

    .logo_div {
        width: 25vw;
        margin-left: 5px;
    }
}

@media screen and (max-width: 625px) {
    .logo_div {
        width: 150px;
        margin-left: 7.5px;
    }
}

@media screen and (max-width: 477px) {
    .book_now {
        text-align: center;
        font-size: 25px;
    }
}

/* NAVBAR END */

/* SERVICES START */

@media screen and (max-width: 900px) {
    .photo_header_div {
        background-position: center;
    }

    .salon_pictures {
        width: 100%;
    }

    .salon_img:nth-child(3) {
        object-position: 20% 100%;
    }
}

@media screen and (max-width: 1569px) {
    .haircut_and_hairextension {
        flex-direction: column;
    }

    .services_header {
        font-size: 60px;
    }

    .services_text {
        font-size: 20px;
    }

    .colour_text {
        font-size: 15px;
    }

    .treatment_text {
        font-size: 20px;
    }

    .colour_and_treatment {
        flex-direction: column;
    }

    .contact_text {
        font-size: 40px;
    }

    .disclaimer {
        font-size: 20px;
    }
}

@media screen and (max-width: 1045px) {
    .hair_cut {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .hair_extension {
        flex-direction: column-reverse;
        margin-bottom: 1rem;
    }

    .hair_colour {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .hair_treatment {
        flex-direction: column-reverse;
    }

    .services_header {
        font-size: 50px;
    }

    .haircut_photo_div_left {
        justify-content: center;
        margin: 25px;
    }

    .haircut_photo_div_right {
        justify-content: center;
        margin: 25px;
    }

    h2,
    h3,
    h4 {
        font-size: 10vw;
    }
}


/* SERVICES END */

/* SOCIAL MEDIA START*/
@media screen and (max-width: 1470px) {
    .instagram_facebook {
        min-height: 50em;
    }

    .instagram_grid {
        grid-template-columns: 2;
        grid-template-rows: 3;
        column-gap: 100px;
    }

    .instagram_3 {
        grid-column: 1;
        grid-row: 3;
    }

    .instagram_6 {
        grid-column: 2;
        grid-row: 3;
    }

    .facebook_grid {
        grid-template-columns: 2;
        grid-template-rows: 3;
        column-gap: 100px;
    }

    .facebook_3 {
        grid-column: 1;
        grid-row: 3;
    }

    .facebook_6 {
        grid-column: 2;
        grid-row: 3;
    }

    .contact {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 1150px) {
    .instagram_1 {
        display: none;
        visibility: hidden;
    }

    .instagram_4 {
        display: none;
        visibility: hidden;
    }

    .instagram_6 {
        display: none;
        visibility: hidden;
    }

    .instagram_2 {
        grid-row: 1;
        grid-column: 1;
    }

    .instagram_3 {
        grid-row: 3;
        grid-column: 1;
    }

    .instagram_5 {
        grid-row: 2;
        grid-column: 1;

    }

    .instagram-grid {
        grid-template-columns: 1;
        grid-template-rows: 3;
        column-gap: 20px;
    }

    .facebook_1 {
        display: none;
        visibility: hidden;
    }

    .facebook_3 {
        display: none;
        visibility: hidden;
    }

    .facebook_4 {
        display: none;
        visibility: hidden;
    }

    .facebook_2 {
        grid-row: 1;
        grid-column: 1;
    }

    .facebook_5 {
        grid-row: 3;
        grid-column: 1;
    }

    .facebook_6 {
        grid-row: 2;
        grid-column: 1;

    }

    .facebook-grid {
        grid-template-columns: 1;
        grid-template-rows: 3;
        column-gap: 20px;
    }
}


@media screen and (max-width: 500px) {
    .instagram_facebook {
        height: 45em;
        min-height: 40em;
    }

    .footer {
        height: auto;
    }

    .instagram_2 {
        width: 150px;
        height: 150px;
    }

    .instagram_5 {
        width: 150px;
        height: 150px;
    }

    .instagram_3 {
        width: 150px;
        height: 150px;
    }

    #instagram_photo {
        width: 150px;
        height: 150px;
    }

    .facebook_2 {
        width: 150px;
        height: 150px;
    }

    .facebook_5 {
        width: 150px;
        height: 150px;
    }

    .facebook_6 {
        width: 150px;
        height: 150px;
    }

    #facebook_photo {
        width: 150px;
        height: 150px;
    }

    .services_header {
        font-size: 9.5vw;
    }

    .treatment_text {
        font-size: 15px;
    }

    .services_text {
        font-size: 15px;
    }

    .instagram_header {
        font-size: 25px;
    }

    .facebook_header {
        font-size: 25px;
    }

    .sidebar li {
        margin-right: 30px;
        margin-left: 30px;
    }

    h2,
    h3,
    h4 {
        font-size: 11vw;
    }
}

@media screen and (max-height: 600px) {
    .hours p {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .hours {
        margin-bottom: 50px;
    }

}

/* SOCIAL MEDIA END*/

/* FOOTER START */

@media screen and (max-width: 1035px) {
    .footer {
        flex-direction: column;
        height: 100%;
    }

    .maps iframe {
        height: 50vh;
    }

    .info_address {
        font-size: 15px;
    }

    .info_email {
        font-size: 15px;
    }

    .hours {
        height: 40vh;
    }

    .hours p {
        font-size: 15px;
    }

    .info_socials svg {
        width: 90px;
        height: 90px;
    }
}

/* FOOTER END */

/* MEDIA QUERY END*/