@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.site-header {
    padding: 20px;
}

.site-header a,
.site-header button {
    pointer-events: auto
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    max-height: 140px;
}

.icon-right-side {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu-toggle img {
    width: 46px;
}

.icon-right-side i {
    font-size: 26px;
}



.menu-toggle {
    z-index: 10002
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform .45s ease;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10001;
}

.side-menu.active {
    transform: translateX(0)
}

.side-menu-nav {
    flex: 1;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;

}

.side-menu-nav a {
    display: block;
    color: #fff;
    font-size: 28px;
    transition: all .3s;
    text-decoration: none;
    margin-bottom: 24px;
}

.side-menu-nav a:hover {
    text-decoration: underline;
}

.side-menu-footer {
    color: #fff;
    font-size: 12px;
}

.side-social {
    display: flex;
    gap: 16px;
    font-size: 18px;
    margin-bottom: 10px;
    align-items: center;
}

/* HERO */
.hero-banner {
    min-height: 100vh;
    position: relative;
    place-content: center;
}

.hero-video,
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content p {
    font-size: clamp(1rem, 0.6rem + 1.4cqi, 1.2rem);
    letter-spacing: clamp(3px, 1px + 0.6cqi, 6px);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(3.8rem, 4rem + 6cqi, 9.5rem);
    line-height: 1.05;
    letter-spacing: -19px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.hero-title .word span {
    display: inline-block;
    opacity: 1;
}

.hero-title .word span:nth-child(5),
.hero-title .word span:nth-child(6),
.hero-title .word span:nth-child(7) {
    animation: letterFadeSoft 6s infinite ease-in-out;
    opacity: .4;
}

.hero-title .word span:nth-child(5) {
    animation-delay: 0s
}

.hero-title .word span:nth-child(6) {
    animation-delay: .6s
}

.hero-title .word span:nth-child(7) {
    animation-delay: 1.2s
}

@keyframes letterFadeSoft {
    0% {
        opacity: .35
    }

    30% {
        opacity: 1
    }

    60% {
        opacity: 1
    }

    100% {
        opacity: .35
    }
}


.hero-title .sub {
    display: block;
    opacity: .9;
}

.hero-content .btn {
    border: 2px solid #fff;
    background: none;
    color: #fff;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    font-weight: 500;
}


.about-section {
    display: flex;
    align-items: center;
    height: 100%;
    vertical-align: middle;
    padding-left: calc((100vw - 1320px) / 2);
}

.about-text {
    padding: 5rem 0;
}

.about-text h2 {
    text-transform: uppercase;
    font-size: 50px;
}

.about-text p {
    font-size: 24px;
    margin: 1.5rem 0;
}


.highlighting-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    height: 300px;
}

.about-wrapper {
    position: relative;
}

.fade-text {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(8rem, 18vw, 26rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    opacity: 0.04;
    transform: translateZ(0);
    z-index: 1;
    animation: fadeBreath 8s ease-in-out infinite;
    transition: transform 1.3s cubic-bezier(.12, .75, .4, 1), opacity .4s ease-out;
    letter-spacing: 4px;
}



@keyframes fadeBreath {
    0% {
        opacity: 0.035;
    }

    50% {
        opacity: 0.07;
    }

    100% {
        opacity: 0.035;
    }
}


.services-section {
    padding: 30px 0;
    background: #fff;
    padding-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
}




.service-card {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 1.2s cubic-bezier(.12, .75, .4, 1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 20%;
}

.arrow {
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 34px;
    transition: transform .6s ease;
    transform-origin: center;
}

.service-overlay h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #fff;
    padding: 15px 45px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 1px;
    transition: background .4s ease, color .4s ease;
    width: fit-content;
    margin: 0 auto;
}


.service-card:hover img {
    transform: scale(1);
}

.service-card:hover .arrow {
    transform: rotate(45deg);
}

.service-card .btn-outline:hover {
    background: #fff;
    color: #000;
}

.services-section h2 {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: #000;
}


.salon-locations {
    padding: 30px 0;
    background: #fff;
    padding-bottom: 0;
}


.salon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px;
    border-radius: 6px;
    margin-bottom: 30px;
}


.salon-card.dark {
    background: #0f0f0f;
    color: #fff;
}

.salon-card.light {
    background: #e6e6e6;
    color: #000;
    position: relative;
    z-index: 11;
}

.salon-content h3 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.address {
    font-size: 1.2rem;
    opacity: .9;
    display: flex;
    align-items: center;
    gap: 8px;
}


.salon-media {
    display: flex;
    align-items: center;
    gap: 40px;
}

.salon-media img {
    width: 300px;
    height: auto;
    border-radius: 2px;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 14px 32px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all .3s ease;
    font-weight: 600;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.dark-btn {
    border-color: #000;
    color: #000;
}

.dark-btn:hover {
    background: #000;
    color: #fff;
}

.fade-text-new {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(8rem, 16vw, 26rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    opacity: 0.04;
    transform: translateZ(0);
    z-index: 1;
    animation: fadeBreath 8s ease-in-out infinite;
    transition: transform 1.3s cubic-bezier(.12, .75, .4, 1), opacity .4s ease-out;
    letter-spacing: 4px;
    text-align: center;
}

section.highlighting-section-new {
    margin-top: -120px;
    overflow: hidden;
}



/* ================================
   COLLAGE SCROLL SECTION
================================ */

#collage-scroll-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* pinned viewport */
#collage-scroll-section .image-collage-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
}

/* collage container */
#collage-scroll-section .image-collage {
    position: relative;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================================
   COMMON IMAGE STYLE
================================ */

#collage-scroll-section .collage-item {
    position: absolute;
    background: #fff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .18);
    opacity: 0;
}

#collage-scroll-section .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================================
   FINAL POSITIONS
================================ */

/* top left */
#collage-scroll-section .item-1 {
    width: 380px;
    height: 540px;
    top: 40px;
    left: 120px;
    z-index: 2;
}

/* top right */
#collage-scroll-section .item-2 {
    width: 320px;
    height: 400px;
    top: 60px;
    right: 120px;
    z-index: 3;
}

/* center main */
#collage-scroll-section .item-3 {
    width: 460px;
    height: 600px;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

/* bottom right */
#collage-scroll-section .item-4 {
    width: 200px;
    height: 260px;
    bottom: 80px;
    right: 160px;
    z-index: 1;
    opacity: .75;
}

/* bottom left */
#collage-scroll-section .item-5 {
    width: 190px;
    height: 240px;
    bottom: 40px;
    left: 160px;
    z-index: 1;
    opacity: .85;
}


.testimonials-section {
    position: relative;
    padding: 140px 0 120px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.testimonials-title {
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-bg {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 160px;
    font-weight: 600;
    letter-spacing: 10px;
    color: #000;
    opacity: .04;
    white-space: nowrap;
    pointer-events: none;
}

.testimonial-item {
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    position: relative;
    padding: 0 40px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: "“";
    font-size: 50px;
    color: #999;
    position: absolute;
    top: -20px;
}

.testimonial-text::before {
    left: 0;
}

.testimonial-text::after {
    content: "”";
    right: 0;
}

.testimonial-name {
    margin-top: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* OWL CONTROLS */
.testimonials-carousel .owl-nav {
    margin-top: 40px;
}

.testimonials-carousel .owl-nav button {
    background: none !important;
    font-size: 22px !important;
    margin: 0 15px;
}

.testimonials-carousel .owl-dots {
    display: none;
}

.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
}


.footer-top {
    margin-bottom: 120px;
}

.footer-nav {
    gap: 36px;
    list-style: none;
}

.footer-nav a {
    font-size: 14px;
    letter-spacing: 1.4px;
    font-weight: 500;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 28px;
    height: 28px;
    background: #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-title {
    opacity: 0.8;
    font-size: clamp(90px, 11vw, 150px);
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 50px;
    letter-spacing: -11px;
}



.footer-phones {
    margin-bottom: 80px;
}

.phone {
    font-size: 37px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.phone a {
    color: #fff;
}

.phone a:hover {
    color: #999;
}

.arrows {
    font-size: 26px;
}

.footer-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
}



.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}





/* ================= RESPONSIVE ================= */


/* Added by Kousik  */

.inner-hero-banner {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.inner-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

.inner-hero-title {
    color: #fff;
    text-align: center;
    margin: 2rem 0;
    font-size: 35px;
    margin-bottom: 1rem;
}


/* ===================== */
.side-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-nav li {
    list-style: none;
}

.side-menu-nav a {
    display: block;
    text-decoration: none;
    font-weight: bold;
}

/* ================ */
.simple-breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.simple-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.simple-breadcrumb a:hover {
    color: #fff;
}

.simple-breadcrumb span {
    margin: 0 3px;
}

/* ================ */


/* Default */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

section.mobile-only img {
    height: 300px;
    object-fit: cover;
}

/* Below 1200px */
@media (max-width: 1199px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-content h1 {
        letter-spacing: -12px;
    }
}


@media (max-width:1180px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        margin-bottom: 050px;
        flex-direction: column;
        gap: 17px;
    }

    .service-overlay h3 {
        font-size: 2rem;
    }

}

@media (max-width:1024px) {
    .salon-media {
        flex-direction: column;
    }

    .salon-card.dark {
        text-align: center;
    }

    .footer-title {
        font-size: clamp(60px, 5vw, 138px);
        letter-spacing: 5px;
        letter-spacing: 2px;
    }


}

@media (max-width:991px) {
    .about-section img {
        width: 100%;
    }

    .footer-nav {
        gap: 10px;
        list-style: none;
    }

    .footer-text {
        font-size: 16px;
    }

    .salon-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .salon-media {
        width: 100%;
        justify-content: space-between;
    }

    .display-3 {
        margin: 1rem 0;
        font-size: 35px;
    }
}







@media(max-width:767px) {
    .logo img {
        max-height: 100px;
    }

    .hero-content h1 {
        font-size: 2.6rem
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        height: 420px;
    }

    .testimonials-bg {
        font-size: 90px;
    }

    .testimonial-text {
        padding: 0 20px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        letter-spacing: 0 !important;
    }

    .about-text h2 {
        text-transform: uppercase;
        font-size: 25px;
    }

    .about-text p {
        font-size: 18px;
        margin: 1.5rem 0;
    }

    .services-section h2 {
        font-size: 2.5rem;

    }

    .header-inner {
        padding: 10px;
    }

    .icon-right-side {
        gap: 10px;
        align-items: center;
    }

    .icon-right-side i {
        font-size: 15px;
    }

    .menu-toggle img {
        width: 30px;
    }

    .footer-nav {
        flex-flow: wrap;
    }

    h1.footer-title.text-center {
        font-size: 31px;
    }

    .phone {
        font-size: 25px;
        font-weight: 500;
    }

    .footer-copy {
        text-align: center;
    }

    .highlighting-section {
        height: auto;
    }

    .fade-text {
        text-align: center;
        font-size: clamp(3rem, 14vw, 22rem);
    }

    section.highlighting-section-new {
        margin-top: 0;
    }

    .fade-text-new {
        font-size: clamp(4rem, 16vw, 26rem);
    }
}

@media (max-width:576px) {
    .salon-media {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .salon-media img {
        width: 100%;
    }

    .salon-content h3 {
        font-size: 1.8rem;
    }

    .salon-card.dark {
        padding: 20px;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .service-overlay h3 {
        font-size: 20px;
    }

    .inner-hero-title {
        font-size: 25px;
    }


}