* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Import Fonts */

@font-face {
    font-family: Hara-Bold;
    src: url(../fonts/Hauora-Bold.otf);
}

@font-face {
    font-family: Hara-ExtraBold;
    src: url(../fonts/Hauora-ExtraBold.otf);
}

@font-face {
    font-family: Hara-ExtraLight;
    src: url(../fonts/Hauora-ExtraLight.otf);
}

@font-face {
    font-family: Hara-Light;
    src: url(../fonts/Hauora-ExtraLight.otf);
}

@font-face {
    font-family: Hara-Medium;
    src: url(../fonts/Hauora-Medium.otf);
}

@font-face {
    font-family: Hara-Regular;
    src: url(../fonts/Hauora-Regular.otf);
}

@font-face {
    font-family: Hara-SemiBold;
    src: url(../fonts/Hauora-SemiBold.otf);
}

/* Global */

:root {
    --color-black: rgb(0, 0, 0);
    --color-dark: rgb(17, 17, 17);
    --color-light: rgb(255, 255, 255);
    --color-offWhite: #f5f5f5;
    --color-grey: #e9e9e9;
    --color-ddgrey: rgb(27, 27, 27);
    --color-dgrey: rgb(77, 77, 77);
    --color-lgrey: rgb(126, 126, 126);
    --color-pgrey: rgb(202, 202, 202);
    --color-peach: #fff2ee;
    --color-pink: #ea2148;
}

body {
    font-family: Hara-Regular, Inter, system-ui, Avenir, Helvetica, Arial,
        sans-serif;
    width: 100%;
    height: 100%;
    color: var(--color-dark);
    background-color: var(--color-light);
}

.mobile-view {
    display: none !important;
}

.my-container {
    padding: 0rem 10rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Hara-SemiBold, Inter, system-ui, Avenir, Helvetica, Arial,
        sans-serif;
}

a {
    color: unset;
    text-decoration: none;
}

p {
    font-family: Hara-Regular, Inter, system-ui, Avenir, Helvetica, Arial,
        sans-serif;
    font-size: 16px;
    text-align: justify;
    color: var(--color-dgrey);
}

.section {
    padding: 8rem 0rem;
}

.xs-bottom-space {
    margin-bottom: 3rem;
}

.color-light {
    color: var(--color-light);
}

.color-lgrey {
    color: var(--color-lgrey);
}

.light-btn {
    padding: 0.8rem 1.3rem;
    background-color: var(--color-light);
    border: none;
    border-radius: 100px;
    transition: 0.3s ease;
}
.light-btn:hover {
    color: var(--color-light);
    background-color: #9e0c2a;
    transition: 0.3s ease;
}

.dark-btn {
    padding: 0.8rem 1.3rem;
    background-color: var(--color-pink);
    border: none;
    border-radius: 100px;
    transition: 0.3s ease;
    color: var(--color-light);
    height: max-content;
}
.dark-btn:hover {
    background-color: #9e0c2a;
    transition: 0.3s ease;
}

/* Nav */
.header {
    padding: 1rem 0rem;
    background-color: var(--color-light);
    border-bottom: 1px solid #80808017;
}

.nav-link {
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--color-pink);
    transition: 0.3s ease;
}

.logo {
    width: 30%;
}

.nav-link-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: center;
}

.toggle-btn {
    display: flex;
    justify-content: flex-end;
}

.burger {
    display: flex;
    align-items: center;
    padding: 1.75em 2em 1.5em 2em;
    outline: none;
    border: none;
    width: 28px;
    height: 20px;
    transition: all 250ms ease-in-out;
    cursor: pointer;
    background-color: transparent;
    padding: 0px;
}

.burger span {
    width: 40px;
    height: 2px;
    position: absolute;
    background: var(--color-dark);
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.burger:after,
.burger::before {
    content: "";
    width: 40px;
    height: 2px;
    position: absolute;
    background: var(--color-dark);
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.burger:before {
    transform: translateY(-8px);
    margin-bottom: 3px;
}

.burger:after {
    transform: translateY(8px);
    margin-top: 3px;
}

.active.burger span {
    opacity: 1;
    background: var(--color-dark) !important;
}

.active.burger:before {
    width: 20px;
    margin-left: 20px;
    background: var(--color-dark) !important;
}

.active.burger:after {
    width: 20px;
    margin-left: 20px;
    background: var(--color-dark) !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    background: var(--color-peach);
    will-change: transform;
    transform: translateX(100%);
    z-index: -1;
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    gap: 1em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-item {
    display: flex;
    cursor: pointer;
    overflow: hidden;
}

.menu-item p {
    font-family: Hara-Regular, Inter, system-ui, Avenir, Helvetica, Arial,
        sans-serif;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    font-size: 8vw;
    line-height: 80%;
    will-change: transform;
    transition: letter-spacing 0.3s;
    color: var(--color-dgrey);
    letter-spacing: 1px;
}

.sub-nav {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5em;
    opacity: 0;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hero-col {
    height: calc(100vh - 5rem);
}

.hero-data-container {
    background-color: var(--color-pink);
}

.hero-image-container {
    position: relative;
    overflow: hidden;
}

.hero-image-container img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.hero-text-container p {
    color: var(--color-light);
    margin-bottom: 2rem;
}

.hero-text-container h1 {
    color: var(--color-light);
    font-size: 4rem;
}

/* Care */

.care:hover {
    background-color: #ffe4db !important;
    transition: 0.3s ease;
}

.salon-care {
    margin-top: -10%;
    z-index: 999;
    position: relative;
}

.salon-care-main {
    background-color: var(--color-peach);
    padding: 7rem;
    border-radius: 2rem;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5rem;
}

.care {
    padding: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.care-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.care-inner span {
    color: var(--color-pink);
    font-size: 5rem;
}

.care-grid > div:nth-child(1) {
    border-bottom: 2px solid var(--color-pink);
    border-right: 2px solid var(--color-pink);
}

.care-grid > div:nth-child(2) {
    border-bottom: 2px solid var(--color-pink);
    border-right: 2px solid var(--color-pink);
}

.care-grid > div:nth-child(3) {
    border-bottom: 2px solid var(--color-pink);
}

.care-grid > div:nth-child(4) {
    border-right: 2px solid var(--color-pink);
}

.care-grid > div:nth-child(5) {
    border-right: 2px solid var(--color-pink);
}

.committed-img {
    width: 100%;
    margin-top: 6rem;
}

/* Contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

input {
    padding: 1rem;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid var(--color-pink);
    background-color: transparent;
}

input:focus-within {
    outline: none;
}

textarea {
    padding: 1rem;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid var(--color-pink);
}

textarea:focus-within {
    outline: none;
}

/* NewsLetter */

.news-letter-section {
    background-color: var(--color-pink);
    margin-top: 10rem;
    color: var(--color-light);
}

.input-light {
    border-bottom: 2px solid var(--color-light);
    color: var(--color-light);
    width: 100%;
}

.input-light::placeholder {
    color: var(--color-light);
}

.news-input-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
}

.news-light-btn {
    padding: 0.8rem 1.3rem;
    background-color: var(--color-light);
    border: none;
    transition: 0.3s ease;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: max-content;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-light-btn:hover {
    color: var(--color-light);
    background-color: #9e0c2a;
    transition: 0.3s ease;
}

/* Footer */

.footer-section {
    padding: 10rem 0rem 4rem 0rem;
    background-color: var(--color-ddgrey);
}

.footer-socials {
    margin-top: 3rem;
    color: var(--color-pink);
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.footer-link {
    transition: 0.3s ease;
}

.footer-link:hover {
    color: var(--color-light);
    transition: 0.3s ease;
}

/* Login */

.login-page-container {
    height: 100vh;
    width: 100%;
    background-color: var(--color-light);
    color: var(--color-light);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.login-page-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.login-page-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.login-page-form-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.login-form-logo {
    width: 50%;
    height: auto;
    text-align: center;
}

/* services */
.services-col {
    padding: 5rem 0rem;
}

.services-img-col {
    padding: 10rem 0rem;
}

.service-item {
    /* color: var(--color-light); */
    margin-bottom: 2rem;
}

.custom-sticky {
    background-color: white;
    padding: 1rem 0rem;
    z-index: 1000;
}

/* Loader */

.skeleton-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    background-image: linear-gradient(
        90deg,
        #eeeeee 0%,
        #ffffff 50%,
        #eeeeee 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 3s infinite ease-in-out;
    transition: opacity 0.5s ease;
    z-index: 1;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-loader.fade-out {
    opacity: 0; /* Fade out effect */
}

/* Gallery */

.gallery-section {
    padding-top: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-image-container {
    height: 40vh;
    position: relative;
    overflow: hidden;
}

.gallery-image-container img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    object-fit: cover;
    transition: 0.3s ease;
}

.gallery-image-container img:hover {
    filter: brightness(70%);
    transition: 0.3s ease;
}

.image-viewer-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100vh;
    width: 100%;
    background-color: var(--color-light);
    z-index: 999999;
    overflow: scroll;
    display: none;
    align-items: center;
}

.image-view-main {
    padding: 1rem 0rem;
    height: 100%;
    width: 100%;
    padding: 5rem;
}

.image-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 7rem;
}
.image-viewer i {
    font-size: 3rem;
}

.image-viewer img {
    width: 100%;
}

.gallery-view-image {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding: 3rem 0rem 10rem 0rem;
}

/* Contact */

.contact-col {
    padding: 10rem 0rem;
}
