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

/* Global */

@font-face {
    font-family: "Will-Bold";
    src: url("../fonts/GucciSansPro-Bold.otf");
}
@font-face {
    font-family: "Will-Book";
    src: url("../fonts/GucciSansPro-Book.otf");
}
@font-face {
    font-family: "Will-Medium";
    src: url("../fonts/GucciSansPro-Medium.otf");
}
@font-face {
    font-family: "Will-Light";
    src: url("../fonts/GucciSansPro-Light.otf");
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: "Will-Light", Arial, Helvetica, "sans-serif";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Will-Medium", Arial, Helvetica, "sans-serif";
    text-transform: uppercase;
}

p {
    letter-spacing: -0.3px;
    font-size: 15px;
}

a {
    text-decoration: none;
}

:root {
    --xxsText: 0.7rem;
    --xsText: 1rem;
    --sText: 2rem;
    --mText: 5rem;
    --lText: 10rem;
    /* Colors */
    --light-color: #f3f3f3;
    --dark-color: #121212;
    --accent-color: #ffbe81;
    --primary-color: #8d4604;
    --secondary-color: #3e2005;
}

.s-spacer {
    height: var(--sText);
}

.m-spacer {
    height: var(--lText);
}

.dark-btn {
    background-color: transparent;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    padding: 16px 45px;
    border: 1.5px solid var(--secondary-color);
    border-radius: 0px;
    transition: 0.3s ease;
    position: relative;
}

.dark-btn:before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: left center;
    /* z-index: -1; */
    background-color: var(--secondary-color);
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.dark-btn:hover::before {
    transform-origin: left center;
    transform: scale(1);
}

.dark-btn a {
    font-family: "Will-Medium", Arial, Helvetica, "sans-serif";
    color: var(--secondary-color);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    text-decoration: none;
    z-index: 1;
    position: relative;
}

.dark-btn:hover a {
    color: var(--accent-color);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.dark-btn {
    color: var(--secondary-color);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.dark-btn:hover {
    color: var(--accent-color);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
        border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/* Homepage */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2b1704cd;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.line,
.word {
    overflow: hidden;
}

.line,
.char {
    transform: translateY(100%);
    opacity: 0;
}

.hero-content h1 {
    font-size: var(--mText);
}

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

.lookbook-item {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stats-section {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.stats-section::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.stats-container-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
    color: var(--light-color);
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stats-item h4 {
    margin: 0px;
    padding: 0px;
    font-size: var(--xsText);
}

.stats-item p {
    margin: 0px;
    padding: 0px;
}

.sub-section {
    position: relative;
    overflow: hidden;
    background-color: rgb(244, 244, 244);
}

.sub-section::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2b1704cd;
    opacity: 0;
}

.sub-container-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.sub-content {
    position: relative;
    z-index: 1;
}

.input-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

.input-row input {
    width: 100%;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    transition: 0.3s ease;
    color: var(--dark-color);
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

.input-row button {
    width: 5rem;
    border: none;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    font-size: 1.5rem;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.input-row input:focus {
    border: 1px solid var(--secondary-color);
    transition: 0.3s ease;
    outline: none;
}

input[type="number"] {
    -moz-appearance: textfield; /* For Firefox */
    -webkit-appearance: none; /* For Chrome, Safari, Edge */
    appearance: none; /* General for modern browsers */
}

/* To remove the spinners in Edge, Safari, and Chrome */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Footer */

.footer {
    background-color: var(--secondary-color);
    padding: 3rem 0rem;
}

.footer-logo {
    width: 20%;
}

.footer-links {
    color: var(--light-color);
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--accent-color);
    transition: 0.3s ease;
    width: max-content;
    text-transform: capitalize;
    opacity: 70%;
}

.footer-links a:hover {
    transition: 0.3s ease;
    opacity: 100%;
}

.footer-bottom-link {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-bottom-link a {
    color: var(--accent-color);
    transition: 0.3s ease;
    width: max-content;
    text-transform: capitalize;
    opacity: 70%;
}

.footer-bottom-link a:hover {
    transition: 0.3s ease;
    opacity: 100%;
}

.footer-bottom-link i {
    color: var(--accent-color);
    transition: 0.3s ease;
    opacity: 80%;
}

.footer-bottom-link i:hover {
    transition: 0.3s ease;
    opacity: 100%;
}

.footer-bottom-row {
    margin-top: 3rem;
}

.footer-line {
    background-color: var(--primary-color);
    height: 1px;
    margin: 3rem 0rem;
}

.footer-link-head {
    color: var(--accent-color);
}

.footer-link-col p {
    color: var(--accent-color);
}

/* Nav Bar */

.logo {
    width: 15%;
    height: auto;
}
.nav-bar {
    position: fixed;
    width: 100%;
    padding: 2rem 0rem;
    z-index: 3;
    transition: 0.3s ease;
}

.nav-link-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link-container a {
    color: var(--light-color);
    text-transform: uppercase;
    font-size: var(--xxsText);
    font-family: "Will-Medium", Arial, Helvetica, "sans-serif";
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    position: relative;
}

.nav-link-container a::after {
    margin-top: 3px;
    transition: 0.3s ease;
    width: 0%;
    height: 1px;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0px;
    background-color: var(--light-color);
}

.nav-link-container a:hover::after {
    width: 100%;
}

.dark-nav-bg {
    background-color: var(--secondary-color);
    transition: 0.3s ease;
    padding: 0.8rem 0rem !important;
}

.dark-link {
    color: var(--accent-color) !important;
    transition: 0.3s ease;
}

.dark-link::after {
    margin-top: 3px;
    transition: 0.3s ease;
    width: 0%;
    height: 1px;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0px;
    background-color: var(--accent-color) !important;
}

.dark-link:hover::after {
    width: 100%;
}

.mobile-view {
    display: none;
}

/* Mega  Menu */

/* Menu Button 5 */
.menu-btn-5 {
    height: 32px;
    width: 40px;
    cursor: pointer;
    z-index: 3;
    background: transparent;
    position: relative;
}

.menu-btn-5 span:nth-child(1),
.menu-btn-5 span:nth-child(1)::before,
.menu-btn-5 span:nth-child(1)::after {
    background: white;
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    margin-top: 13px;

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    mix-blend-mode: difference;
    background-blend-mode: difference;
}

.menu-btn-5 span:nth-child(1)::before {
    margin-top: -8px;

    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
}

.menu-btn-5 span:nth-child(1)::after {
    margin-top: 8px;

    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
}

.menu-btn-5 span:nth-child(2) {
    background: white;
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    margin-top: 13px;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    mix-blend-mode: difference;
    background-blend-mode: difference;
}

.menu-btn-5.active span:nth-child(1)::before,
.menu-btn-5.active span:nth-child(1)::after {
    margin-top: 0;
}

.menu-btn-5.active span:nth-child(1) {
    -webkit-transition: 0.5s ease-in-out 0.6s;
    -moz-transition: 0.5s ease-in-out 0.6s;
    -o-transition: 0.5s ease-in-out 0.6s;
    transition: 0.5s ease-in-out 0.5s;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-btn-5.active span:nth-child(2) {
    width: 40px;

    -webkit-transition: 0.3s ease-in-out 0.8s;
    -moz-transition: 0.3s ease-in-out 0.8s;
    -o-transition: 0.3s ease-in-out 0.8s;
    transition: 0.3s ease-in-out 0.8s;
}

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

.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-footer-link {
    font-family: "Will-Medium", Arial, Helvetica, "sans-serif";
    color: var(--accent-color);
}

.mobile-nav-link {
    overflow: hidden;
    display: flex;
    cursor: pointer;
    color: var(--accent-color);
}

.mobile-nav-link h4 {
    width: 100%;
    will-change: transform;
}

.bag-row {
    padding: 25px;
    overflow: hidden;
    display: flex;
}

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

.sub-nav p a {
    color: #c3c3c3;
}

.mobile-menu-padding svg {
    height: 13px;
    padding-right: 10px;
    fill: var(--accent-color);
}

.mobile-menu-padding {
    padding: 24px 25px;
    margin-bottom: 0px !important;
    border-bottom: 1px solid #80808078;
}

.dark-burger span {
    position: absolute;
    background: var(--accent-color) !important;
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.dark-burger::after,
.dark-burger::before {
    position: absolute;
    background: var(--accent-color) !important;
    transition: all 250ms ease-in-out;
    will-change: transform;
}

.dark-burger span:nth-child(1),
.dark-burger span:nth-child(1)::before,
.dark-burger span:nth-child(1)::after {
    background: var(--accent-color) !important;
    -webkit-transition: 0.3s ease !important;
    -moz-transition: 0.3s ease !important;
    -o-transition: 0.3s ease !important;
    transition: 0.3s ease !important;
}

.mobile-nav-link-container a i {
    font-size: 1.5rem;
    color: var(--light-color);
}

.dark-mobile-nav-link-container a i {
    color: var(--accent-color) !important;
}

/* Pages */

.page-hero {
    height: 50vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: white;
}

.page-hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-hero::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2b1704cd;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: var(--mText);
}

/* Services */

.timeline {
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 5rem;
    margin: 0 auto 1rem auto;
    overflow: hidden;
}
.timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2px;
    border-right: 2px dashed var(--secondary-color);
    height: 100%;
    display: block;
}

.timeline-row {
    padding-left: 50%;
    position: relative;
    margin-bottom: 30px;
}
.timeline-row .timeline-time {
    position: absolute;
    right: 50%;
    top: 15px;
    text-align: right;
    margin-right: 40px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0px !important;
}
.timeline-row .timeline-time small {
    display: block;
    font-size: 0.8rem;
}
.timeline-row .timeline-content {
    position: relative;
    overflow: hidden;
    height: 65vh;
    transition: 0.3s ease;
    cursor: pointer;
}

.timeline-row .timeline-content:hover img {
    transform: scale(1.1);
    transition: 0.3s ease;
}

.timeline-row .timeline-content img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: top center;
    transition: 0.3s ease;
}

.timeline-row:nth-child(even) .timeline-content {
    margin-left: 40px;
    text-align: left;
}
.timeline-row:nth-child(even) .timeline-content:after {
    left: -8px;
    right: initial;
    border-bottom: 0;
    border-left: 0;
    transform: rotate(-135deg);
}
.timeline-row:nth-child(even) .timeline-content:before {
    left: -52px;
    right: initial;
}
.timeline-row:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%;
}
.timeline-row:nth-child(odd) .timeline-time {
    right: auto;
    left: 50%;
    text-align: left;
    margin-right: 0;
    margin-left: 40px;
}
.timeline-row:nth-child(odd) .timeline-content {
    margin-right: 40px;
}
.timeline-row:nth-child(odd) .timeline-content:after {
    right: -8px;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}

/* login page */

.login-form-container {
    padding: 0rem 10rem;
}

.login-page-container {
    height: 100vh;
    width: 100%;
    background-color: rgb(244, 244, 244);
    color: var(--accent-color);
    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-input {
    width: 100%;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    transition: 0.3s ease;
    color: var(--dark-color);
    border-radius: 0px;
}

.login-input:focus {
    border: 1px solid var(--secondary-color);
    transition: 0.3s ease;
    outline: none !important;
}

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

/* preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color); /* or your brand color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-inner {
    font-size: 5rem;
    color: var(--accent-color);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 100;
}

.is-playing {
    position: absolute;
    bottom: 5rem;
    left: 10rem;
    z-index: 1;
    cursor: pointer;
}

.page-transit {
    position: fixed;
    z-index: 990;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    transform: scaleX(0);
}
