/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: #000;
}


/* Video */

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Hero Content */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width:576px) {
    .hero {
        height: 50vh;
    }
}


/* ================= Vision Mission SECTION ================= */

.vision-mission-section {
    width: 100%;
    background: #b8ae9d;

    .vision-box,
    .mission-box {
        padding: 56px 20px;
        text-align: center;

        h2 {
            font-family: "Gilroy", sans-serif;
            font-size: 58px;
            font-weight: 300;
            color: #f5f2eb;
            margin-bottom: 28px;
            letter-spacing: 1px;
        }

        p {
            max-width: 980px;
            margin: 0 auto 24px;
            font-family: "Avenir", sans-serif;
            font-size: 17.5px;
            font-weight: 400;
            line-height: 1.9;
            color: #ffffff;
        }
    }

    .vision-box {
        border-bottom: 2px solid rgba(255, 255, 255, .55);
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    /* HERO */
    .hero {
        height: 70vh;
    }

    /* VISION / MISSION */
    .vision-mission-section {

        .vision-box,
        .mission-box {
            padding: 48px 30px;

            h2 {
                font-size: 46px;
            }

            p {
                font-size: 16px;
                line-height: 1.8;
            }
        }
    }
}

@media (max-width: 576px) {

    /* HERO */
    .hero {
        height: 50vh;
    }

    /* VISION / MISSION */
    .vision-mission-section {

        .vision-box,
        .mission-box {
            padding: 40px 20px;

            h2 {
                font-size: 34px;
                margin-bottom: 20px;
            }

            p {
                font-size: 14px;
                line-height: 1.7;
                margin-bottom: 18px;
            }
        }
    }
}


/* ================= PHILOSOPHY SECTION ================= */

.philosophy-section {
    width: 100%;
    background: #f5f2eb;
    padding-top: 48px;

    /* Heading */
    .philosophy-heading {
        text-align: center;
        margin-bottom: 40px;

        h2 {
            font-family: "Gilroy", sans-serif;
            font-size: 56px;
            font-weight: 300;
            line-height: 1.1;
            color: #624a2e;
            letter-spacing: 1px;
        }
    }

    /* Card */
    .philosophy-card {
        position: relative;
        width: 100%;
        height: 485px;
        overflow: hidden;

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

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
        }

        .philosophy-content {
            position: absolute;
            top: 50%;
            left: 70px;
            transform: translateY(-50%);
            max-width: 520px;
            z-index: 2;

            h3 {
                font-family: "Gilroy", sans-serif;
                font-size: 42px;
                font-weight: 300;
                line-height: 1.1;
                color: #ffffff;
                margin-bottom: 28px;
            }

            p {
                font-family: "Avenir", sans-serif;
                font-size: 17px;
                line-height: 1.9;
                color: #ffffff;
            }
        }

        /* Right Content */
        &.reverse {
            &::before {
                background: linear-gradient(-90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
            }

            .philosophy-content {
                left: auto;
                right: 70px;
            }
        }
    }
}


/* ================= TABLET ================= */

@media(max-width:992px) {
    .philosophy-section {
        .philosophy-heading {
            h2 {
                font-size: 44px;
            }
        }

        .philosophy-card {
            height: 500px;

            .philosophy-content {
                left: 40px;
                right: 40px;
                max-width: 420px;

                h3 {
                    font-size: 34px;
                }

                p {
                    font-size: 16px;
                    line-height: 1.8;
                }
            }

            &.reverse {
                .philosophy-content {
                    right: 40px;
                }
            }
        }
    }
}


/* ================= MOBILE ================= */

@media(max-width:576px) {
    .philosophy-section {
        padding-top: 40px;

        .philosophy-heading {
            margin-bottom: 24px;

            h2 {
                font-size: 34px;
                line-height: 1.2;
            }
        }
/* Earlier it was give as 430px height managing the height on mobile  */
        .philosophy-card {
            height: 251px;

            &::before {
                background: rgba(0, 0, 0, .45);
            }

            .philosophy-content {
                left: 24px;
                right: 24px;
                max-width: 100%;

                h3 {
                    font-size: 28px;
                    margin-bottom: 18px;
                }

                p {
                    font-size: 14px;
                    line-height: 1.7;
                }
            }

            &.reverse {
                .philosophy-content {
                    right: 24px;
                    margin-left: 24px;
                }
            }
        }
    }
}


/* ================= ABOUT HEADING ================= */

.about-heading-section {
    width: 100%;
    padding: 60px 20px;
    background: #ffffff;

    .about-heading-container {
        max-width: 980px;
        margin: auto;
        text-align: center;

        .story-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-bottom: 35px;

            .line {
                width: 160px;
                height: 1px;
                background: rgba(199, 183, 158, 0.8);
            }

            h2 {
                font-family: "Gilroy", sans-serif;
                font-size: 60px;
                font-weight: 300;
                color: #b8ae9d;
                margin: 0;
                letter-spacing: 1px;
            }
        }

        p {
            font-family: "Avenir", sans-serif;
            font-size: 17px;
            line-height: 1.9;
            color: #0d1a27;
            max-width: 920px;
            margin: auto;
        }
    }
}

@media(max-width:768px) {
    .about-heading-section {
        padding: 45px 20px;

        .about-heading-container {
            .story-header {
                gap: 30px;

                .line {
                    width: 60px;
                }

                h2 {
                    font-size: 38px;
                }
            }

            p {
                font-size: 15px;
                line-height: 1.7;
            }
        }
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {
    width: 100%;
    background: rgb(245, 242, 235);
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 80px 68px;
    gap: 14px;
}


/* Left Content */

.about-content {
    /* width: 48%; */
    /* height: 670px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content h4 {
    font-size: 30.2px;
    font-weight: 300;
    line-height: 1.2;
    color: #b8ae9d;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.about-content h1 {
    font-size: 58px;
    font-weight: 300;
    color: #0d1a27;
    margin-bottom: 73px;
    line-height: 1.1;
}

.about-content p {
    font-family: Avenir;
    font-size: 18.1px;
    line-height: 1.9;
    color: #3e3e3e;
    max-width: 650px;
}


/* Right Image */

.about-image {
    width: 545px;
    height: 600px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        display: block;
        /* Animation Initial State */
        opacity: 0;
        transform: translateX(100px);
        transition: all 1s ease;
    }
}


/* Active Animation */

.about-image.show img {
    opacity: 1;
    transform: translateX(0);
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 60px 25px;
    }

    .about-content,
    .about-image {
        width: 100%;
        height: auto;

        img {
            border-radius: 12px;
        }
    }

    .about-content h4 {
        font-size: 22px;
    }

    .about-content h1 {
        font-size: 52px;
        margin-bottom: 36px;
    }

    .about-content p {
        font-size: 18px;
        margin-bottom: 60px;
    }
}

@media(max-width: 576px) {
    .about-content h1 {
        font-size: 42px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .learn-more {
        font-size: 22px;
    }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    .contact-heading {
        padding: 0 !important;
        text-align: center;
        padding-bottom: 44px !important;
    }
}