﻿
:root {
    --text-color: #333;
    --button-color: #F9794C;
    --button-color-two: #B0A096;
    --overlay-color: rgba(0, 0, 0, 0.4);
    --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --card-shadow-hover: 0 8px 20px rgba(0,0,0,0.15);
    --transition-speed: 0.3s ease;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.header-title {
    font-size: 3rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.title-one {
    font-size: 40px;
    font-family: "Satisfy", cursive;
    color: var(--text-color);
}

.sub-title-one,
.title-two,
.sub-title-two {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    color: var(--text-color);
    margin: 0;
}

.title-two,
.sub-title-two {
    font-size: 2.6rem;
}

.content-one {
    max-width: 367px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    line-height: 22px;
    color: var(--text-color);
}

.content-two {
    max-width: 387px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: var(--text-color);
}

.content-three {
    max-width: 290px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 17px;
    line-height: 1.5em;
    color: var(--text-color);
}

.find-out-more-button,
.shop-new-launch-button,
.button-discover-our-story {
    padding: 0.8rem 2rem;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    min-width: 180px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.find-out-more-button {
    background-color: var(--button-color);
}

    .find-out-more-button:hover {
        background-color: #F9794C;
    }

.shop-new-launch-button {
    background-color: var(--text-color);
}

    .shop-new-launch-button:hover {
        background-color: #B0A096;
    }

.button-discover-our-story {
    background-color: var(--button-color-two);
    font-weight: bold;
}

    .button-discover-our-story:hover {
        background-color: #B0A096;
    }

.background-image-one {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 0;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    margin-bottom: 1.5rem;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    padding-top: 3rem;
}

    .card-overlay .btn-primary {
        background-color: var(--button-color);
        border: none;
        margin-top: 1rem;
        padding: 0.6rem 1.5rem;
    }

        .card-overlay .btn-primary:hover {
            background-color: #F9794C;
        }

.card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.bottom-image {
    position: relative;
    width: 100%;
    height: 35rem;
    border-radius: 0px 30px 30px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.font-bottom-image {
    font-size: 2.6rem;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    color: var(--text-color);
}

.icon-bottom-container {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: var(--text-color);
    margin-bottom: 1rem;
}

    .icon-bottom-container img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

.bottom-content-title {
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 0.5rem;
}

.bottom-content-text {
    max-width: 100%;
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    padding: 0 1rem;
}

.trusted-title {
    font-size: 29px;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    color: var(--text-color);
    text-align: right;
}

.logo-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.logo-slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.logo-item {
    flex: 0 0 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    min-height: 80px;
}

    .logo-item img {
        max-width: 80%;
        max-height: 100px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

        .logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

.scroll-animate {
    opacity: 0;
    transition: all 0.6s ease-out;
}

    .scroll-animate.scroll-fade {
        opacity: 1;
    }

    .scroll-animate.scroll-up {
        transform: translateY(30px);
    }

    .scroll-animate.scroll-down {
        transform: translateY(-30px);
    }

    .scroll-animate.scroll-left {
        transform: translateX(-30px);
    }

    .scroll-animate.scroll-right {
        transform: translateX(30px);
    }

    .scroll-animate.visible {
        opacity: 1;
        transform: translate(0);
    }

@media (max-width: 1200px) {
    .title-one,
    .sub-title-one,
    .title-two,
    .sub-title-two {
        font-size: 34px;
    }

    .logo-item {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 70vh;
    }

    .header-title {
        font-size: 2.2rem;
    }

    .title-one,
    .sub-title-one,
    .title-two,
    .sub-title-two {
        font-size: 30px;
    }

    .content-one {
        font-size: 18px;
    }

    .content-two,
    .content-three {
        font-size: 16px;
    }

    .title-two,
    .sub-title-two {
        font-size: 2rem;
    }

    .font-bottom-image {
        font-size: 2rem;
    }

    .bottom-image {
        height: 25rem;
        border-radius: 0px 20px 20px 0px;
    }

    .trusted-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .logo-item {
        flex: 0 0 20%;
        padding: 12px;
    }

        .logo-item img {
            max-height: 50px;
        }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .title-one,
    .sub-title-one,
    .title-two,
    .sub-title-two {
        font-size: 26px;
        text-align: center;
    }

    .content-one,
    .content-two,
    .content-three {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }

    .content-one {
        font-size: 16px;
        line-height: 1.4;
    }

    .content-two {
        font-size: 14px;
        line-height: 1.4;
    }

    .content-three {
        font-size: 15px;
    }

    .title-two,
    .sub-title-two {
        font-size: 1.8rem;
    }

    .background-image-one {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .find-out-more-button,
    .shop-new-launch-button,
    .button-discover-our-story {
        display: block;
        margin: 1.5rem auto;
        width: 80%;
        max-width: 250px;
    }

    .bottom-image {
        height: 20rem;
        border-radius: 0px;
        margin-bottom: 2rem;
    }

    .font-bottom-image {
        font-size: 1.8rem;
        text-align: center;
    }

    .icon-bottom-container {
        width: 70px;
        height: 70px;
    }

        .icon-bottom-container img {
            width: 50px;
            height: 50px;
        }

    .bottom-content-title {
        font-size: 16px;
    }

    .bottom-content-text {
        font-size: 13px;
    }

    .card-overlay {
        padding: 1rem;
        padding-top: 2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .logo-item {
        flex: 0 0 20%;
        padding: 10px;
        min-height: 70px;
    }

        .logo-item img {
            max-height: 45px;
        }

    .trusted-title {
        text-align: center;
        margin-bottom: 2rem;
    }

    .row > div {
        padding: 0.5rem;
    }

    .container,
    .container-fluid {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .title-one,
    .sub-title-one,
    .title-two,
    .sub-title-two {
        font-size: 22px;
    }

    .font-bottom-image {
        font-size: 1.5rem;
    }

    .trusted-title {
        font-size: 20px;
    }

    .logo-item {
        flex: 0 0 20%;
        padding: 8px;
        min-height: 60px;
    }

        .logo-item img {
            max-height: 40px;
            max-width: 85%;
        }

    .logo-slider-wrapper {
        padding: 15px 0;
    }

    .bottom-image {
        height: 18rem;
        padding: 1rem;
    }

    .icon-bottom-container {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }

        .icon-bottom-container img {
            width: 40px;
            height: 40px;
        }

    .find-out-more-button,
    .shop-new-launch-button,
    .button-discover-our-story {
        width: 90%;
        padding: 0.7rem;
        font-size: 13px;
    }

    .content-one {
        font-size: 15px;
    }

    .content-two,
    .content-three {
        font-size: 13px;
    }

    .card {
        margin: 0.5rem;
    }
}

@media (max-width: 400px) {
    .title-one,
    .sub-title-one {
        font-size: 20px;
    }

    .logo-item {
        flex: 0 0 20%;
        padding: 6px;
        min-height: 50px;
    }

        .logo-item img {
            max-height: 35px;
        }
}
