@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');


@font-face {
    font-family: 'butler';
    src: url('../fonts/butler.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'Mina';
    src: url('../fonts/Mina-Regular.otf');
    font-style: italic;
}



:root {
    --primary-color: #BFBDB3;
    --secondary-color: #252324;
    --background-color: #F5F1E5;
    --text-color: #212121;
    --text-family: 'Comfortaa', cursive;
    --main-font: "butler", serif;
    --text-font-size: clamp(16px, 2vw, 20px);
    --heading-font-size: clamp(32px, 5vw, 48px);
}



body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--text-family);
}

* {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #F6F1E4 inset;
    -webkit-text-fill-color: #000;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--main-font);
    color: var(--secondary-color);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- loader --- */


/* ===== PAGE LOADER ===== */

#page-loader {
    position: fixed;
    inset: 0;
    background: #f5f1ea;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-inner {
    text-align: center;
}

.loader-inner .logo-wrapper {
    margin: 0 auto;
}

.loader-logo {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #2e3b2f;
}

.loader-bar {
    width: 220px;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: #c46a2d;
}



nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-wrapper {
    max-width: 150px;
}

.menu-line-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 8px;
    width: 60px;
    cursor: pointer;
}

.menu-line-wrapper .line2 {
    width: 80%;
    transition: width 0.3s ease;
}

.menu-line-wrapper .line3 {
    width: 60%;
    transition: width 0.4s ease;
}

.home-banner {
    position: relative;
}

.color-white {
    background-color: rgb(20, 20, 20);
    width: 100%;
    height: 1px;
}


.menu-line-wrapper:hover .line1,
.menu-line-wrapper:hover .line2,
.menu-line-wrapper:hover .line3 {
    width: 100%;
}



/* FULLSCREEN MENU */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #F5F1E5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;


    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}


.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MENU ITEMS */
.menu-list {
    list-style: none;
    text-align: center;
}

.menu-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    transition: transform 0.4s ease;
}

/* CHANGE HAMBURGER COLOR WHEN MENU IS OPEN */
.menu-line-wrapper.menu-open .color-white {
    background-color: #000 !important;
}


/* MOVE LEFT ON HOVER */
.menu-list li:hover {
    transform: translateX(-50px);
}


.menu-list span {
    font-size: 28px;
    font-family: serif;
}

.menu-list a {
    text-decoration: none;
    font-size: 64px;
    font-family: serif;
    color: #000;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.menu-list a:hover {
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-list a {
        font-size: 42px;
    }
}


.home-banner {
    width: 100%;
    height: 100vh;
}

.video-wrapper {
    position: absolute;
    z-index: -1;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: end;
}

.content-container .content-wrapper h1 {
    font-size: 2rem;
}

.content-container .content-wrapper .mina {
    font-size: 4rem;
    font-family: "mina", serif;
    color: white;
}


.section-home-2 .text-wrapper h2 {
    font-size: 6rem;
    line-height: 1;
}

.section-home-2 .img-wrapper {
    height: 400px;
    width: 300px;
}

.section-home-2 .img-wrapper-2 {
    width: 400px;
    height: 600px;
}


.section-home-2 .sec2-txt {
    max-width: 700px;
    margin: auto;
}

.section-home-2 .sec2-txt h5 span,
.gallery-sec-text .text-wrapper h5 span,
.founder-sec .txt-wrapper h3 span {
    font-size: 2rem;
    font-weight: 900;
}


.founder-sec .img_wrapper {
    max-width: 500px;
    position: relative;
}


.collection-section {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.collection-section .first-div-gallery,
.last-div-gallery {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.collection-section .first-div-gallery .gallery-img-wrapper,
.last-div-gallery .gallery-img-wrapper {
    max-width: 200px;
}

.middle-div-gallery .gallery-img-wrapper {
    max-width: 800px;
    height: 500px;
}


.collection-section2 {
    position: relative;
    min-height: 100vh;
    padding-block: 100px;
    overflow: hidden;
}

.collection-section2 .scroll-text,
.collection-section2 .scroll-text2 {
    font-size: 12vw;
    color: #FFFFFF;
    white-space: nowrap;
    will-change: transform;
}

.collection-section2 .gallery-stage-wrapper .gallery-img-wrapper {
    margin-top: -150px;
    max-width: 600px;
}

.collection-section2 .gallery-img-wrapper2 {
    margin-top: -30px;
    max-width: 450px;
}

.collection-section2 .gallery-img-wrapper3 {
    padding-top: 80px;
    max-width: 450px;
}






.collection-section2 .gallery-img-wrapper4 {
    max-width: 550px;
}


.collection-section2 .gallery-img-wrapper5 {
    max-width: 400px;
}

.gallery-sec-text h2 {
    font-size: 5rem;
}

.gallery-sec-text .text-wrapper {
    max-width: 500px;

}

.gallery-sec-text .text-wrapper h5 {
    line-height: 1.4;
}

.gallery-stage-wrapper .letter-head {
    font-size: 10rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: -80px;
    line-height: 0.8;
}


.stack-cards {
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 500px 0;
}

.stack-card {
    position: sticky;
    top: 0;
}

.stack-card__inner {
    height: 680px;
    background-color: #0A090A;
    color: white;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
    transform-origin: center top;
    will-change: transform, filter;
}

.stack-card__image-wrap {
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.stack-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card__content {
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.stack-card__content .text-wrapper {
    max-width: 600px;
}

.stack-card__content h2 {
    font-size: 5.5rem;
    color: white;
    line-height: 1;
}

.stack-card__content .circle_btn {
    width: 180px;
    height: 180px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-card__content .circle_btn a {
    text-decoration: none;
}

.stack-card__content .circle_btn a svg {
    transform: rotate(0);
    transition: all 0.3s ease;
}

.stack-card__content .circle_btn:hover a svg {
    transform: rotate(-45deg);
}


.space {
    height: 90vh;
}

.space--small {
    height: 40vh;
}

/* Mobile */
@media (max-width: 600px) {
    .stack-card__inner {
        flex-direction: column;
    }

    .stack-card__image-wrap {
        width: 100%;
        height: 100%;
    }

    .stack-card__image-wrap img {
        aspect-ratio: 16 / 9;
    }

    .stack-card__content {
        padding: 30px 20px;
    }
}

.team-sec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 140px;
    padding-block: 50px;
}

.team-sec h3 {
    font-size: 3rem;

}

.team-sec h3 a {
    text-decoration: none;
    color: #0A090A;
}

.team-sec h3 img {
    width: 2rem;
    margin-left: 10px;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.team-sec h3:hover img {
    transform: rotate(-45deg);
}


.team-sec h2 {
    font-size: 7rem;
}

.founder-sec .txt-wrapper {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.founder-sec .txt-wrapper h3 {
    font-size: 1.3rem;
}

.circle_btn1 {
    width: 200px;
    height: 200px;
    border: 1px solid black;
    border-radius: 50%;
    background-color: transparent;

    scale: 1;
    transition: all 0.5s ease;
}

.circle_btn1 a {
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle_btn1 a svg {
    transform: rotate(0);
    margin-left: 8px;
    transition: all 0.3s ease;
}


.circle_btn1:hover {
    scale: 1.02;
}

.circle_btn1:hover a svg {
    transform: rotate(-45deg);
}

.circle_btn1 a {
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;

}

.circle_btn1 button svg {
    transform: rotate(0);
    margin-left: 8px;
    transition: all 0.3s ease;
}

.circle_btn1:hover {
    scale: 1.02;
}

.circle_btn1:hover button svg {
    transform: rotate(-45deg);
}



.lets-connent h2 {
    font-size: 8rem;
}


.infinite-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
}

.slider-track {
    display: flex;
    gap: 10px;
    width: max-content;
}

.slide {
    flex: 0 0 auto;
    width: 380px;
    height: 580px;
    overflow: hidden;
    border-radius: 6px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lets-connent h3 {
    font-size: 3rem;
    text-transform: uppercase;

}

.lets-connent h4 {
    font-size: 2rem;
    text-transform: uppercase;

}

.contact-us-home h2 {
    font-size: 3rem;
    text-transform: uppercase;
}

.contact-us h2 {
    font-size: 9rem;
}

.contact-us {
    padding: 60px 80px;
    width: 100%;
}

.contact-us h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.contact-us .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-us .form-label {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--main-font);
    letter-spacing: 1px;
    white-space: nowrap;
}

.contact-us .form-input {
    flex: 1;
    border: none;
    font-family: var(--main-font);
    border-bottom: 1px solid #000;
    background-color: transparent;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
    min-width: 200px;
}

.contact-us .form-input::placeholder {
    color: #d3d3d3;
    letter-spacing: 1px;
}

.contact-us .thank-you {
    text-align: center;
    font-size: 18px;
    font-family: var(--main-font);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 60px;
}


/* ------ */

.stories-header h1 {
    font-size: 7rem;
}

.mina{
    font-family: "mina", serif;
}

.stories-header h1 span{
    font-family: "mina", serif;
}

.gallery-section {
    background: #f5f1ea;
}

.scroll-row {
    gap: 20px;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 33.333%;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-section {
    overflow: hidden;
}

.gallery-section {
    overflow: hidden;
    width: 100%;
}


.row1,
.row2,
.row3 {
    display: flex;
    gap: 20px;
    cursor: grab;

}

.contact-footer{
    display: flex;
    justify-content: end;
}

.contact-footer a {
    text-decoration: none;
    color: #0A090A;
    font-family: var(--main-font);
    font-size: 18px;
    letter-spacing: 1px;
}


/* Responsive */

@media (max-width: 991px) {
    .gallery-item {
        flex: 0 0 50%;
    }

    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 80%;
    }

    .gallery-item img {
        height: 200px;
    }
}


@media (max-width: 768px) {
    nav .logo-wrapper {
        max-width: 120px;
    }

    .content-container .content-wrapper h1 {
        font-size: 1rem;
    }

    .content-container .content-wrapper .mina {
        font-size: 2.5rem;
    }

    .section-home-2 .text-wrapper h2 {
        font-size: 3rem;
    }

    .gallery-stage-wrapper .letter-head {
        font-size: 3rem;
    }

    .gallery-sec-text h2 {
        font-size: 2.5rem;
    }

    .team-sec h3 {
        font-size: 1rem;
    }

    .team-sec h3 img {
        width: 1rem;
    }

    .team-sec {
        gap: 50px;
    }

    .team-sec h2 {
        font-size: 2rem;
    }

    .founder-sec .txt-wrapper {
        gap: 25px;
    }

    .lets-connent h3 {
        font-size: 1.5rem;
    }

    .collection-section2 .gallery-img-wrapper2 {
        margin-top: 25px;
    }

    .collection-section2 .gallery-img-wrapper4 {
        margin-top: 25px;
    }

    .collection-section2 .gallery-img-wrapper5 {
        margin-top: 25px;
    }

    .menu-line-wrapper {
        width: 40px;
    }

    .infinite-slider {
        padding: 30px 0;
    }

    .section-home-2 .img-wrapper-2 {
        width: 300px;
        height: 400px;
        margin-top: 20px;
    }

    .contact-us h2 {
        font-size: 2rem;
    }

    .stories-header h1 {
        font-size: 2.5rem;
    }

    .contact-us {
        padding: 0px 0px;
    }

    .contact-us h1 {
        font-size: 24px;
    }

    .contact-us .form-row {
        margin-bottom: 30px;
    }

    .contact-us .form-label {
        font-size: 16px;
    }
}