@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* font-family: "Manrope", sans-serif; */
/* font-family: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a{
    text-decoration: none;
}

.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}

#MainContainer {
    width: 100%;
    height: 100%;
}

/* hero section */
.herosection {
    width: 100%;
    height: auto;
    min-height: 100vh;
    /* background-image: url(/assets/images/hero-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    .absolute-hero-video-bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .absolute-hero-video-bg-mob {
        display: none;
    }

    .herocontainer {
        width: 100%;
        /* max-width: 1400px; */
        height: 100%;
        min-height: 100vh;
        z-index: 99;
        background-image: url(/assets/images/Rectangle\ 30.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .tag-label {
            font-size: 14px;
            background: #ffffff50;
            color: #fafafa;
            backdrop-filter: blur(5px);
            padding: 5px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .head-h1 {
            font-size: 4rem;
            line-height: 4.5rem;
            margin-bottom: 30px;
            font-weight: 550;
            max-width: 750px;
            text-align: center;
            color: #fafafa;

            span {
                color: #fdc700;
            }
        }

        .hero-para {
            font-size: 1.5rem;
            line-height: auto;
            max-width: 700px;
            text-align: center;
            margin-bottom: 30px;
            color: #fdfdfd;
        }

        .hero-cta {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;

            .h-cta-1 {
                padding: 10px 20px;
                background: linear-gradient(90deg, #d6b13b, #e2c156);
                border-radius: 25px;
                color: #181818;
                /* box-shadow: 5px 5px 20px #d6b13b10; */
                transition: all .5s ease-in-out;

                &:hover {
                    box-shadow: 10px 10px 60px #fdc70035;
                }
            }

            .h-cta-2 {
                padding: 10px 20px;
                border-radius: 8px;
                background: #fdfdfd60;
                color: #fafafa;
                /* box-shadow: 5px 5px 20px #fdfdfd10; */
                backdrop-filter: blur(5px);
                transition: all .5s ease-in-out;

                &:hover {
                    box-shadow: 10px 10px 30px #ffffff35;
                }
            }
        }

        .featured-tags {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 65px;
            margin-top: 40px;

            p {
                font-size: 1.1rem;
                color: #fdfdfd;

                i {
                    color: #e2c156;
                    margin-right: 2px;
                }
            }
        }

    }
}

@media only screen and (max-width:768px) {
    .herosection {
        padding: 0;
        margin: 0;
        height: 100vh;

        .absolute-hero-video-bg {
            display: none;
        }

        .absolute-hero-video-bg-mob {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }


        .herocontainer {
            padding: 10px;
            background-image: url(/assets/images/Rectangle\ 31.png);

            .tag-label {
                font-size: 14px;
            }

            .head-h1 {
                font-size: 2.5rem;
                line-height: 3rem;
            }

            .hero-para {
                font-size: 1.1rem;
            }

            .hero-cta {
                flex-wrap: wrap;
                gap: 20px !important;

                a {
                    width: 100%;
                    padding: 15px !important;
                    text-align: center;
                    border-radius: 15px !important;
                }
            }

            .featured-tags {
                flex-wrap: wrap;
                gap: 20px;

                p {
                    font-size: 1rem;
                }
            }

        }
    }
}

/* hero section */


/* about section */
.aboutsection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .aboutcontainer {
        width: 100%;
        max-width: 1400px;
        margin: 100px 0;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;

        .about-left,
        .about-right {
            width: 50%;
            height: auto;
        }

        .about-left {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;

            .left-up,
            .left-down {
                width: 100%;
                height: auto;
            }

            .left-up {
                overflow: hidden;

                img {
                    width: 100%;
                    height: auto;
                    min-height: 350px;
                    object-fit: cover;
                    border-radius: 15px;
                }
            }

            .left-down {
                display: flex;
                align-items: start;
                justify-content: space-between;
                gap: 20px;

                .down-left {
                    width: 50%;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: auto;
                        min-height: 350px;
                        border-radius: 15px;
                        object-fit: cover;
                    }
                }

                .down-right {
                    width: 50%;
                    position: relative;
                    background: linear-gradient(125deg, #6f2d2d, #2e0f0f);
                    height: auto;
                    min-height: 350px;
                    border-radius: 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;

                    h3 {
                        font-size: 2.5rem;
                        color: #fdc700;
                    }

                    >p {
                        font-size: 1.2rem;
                        max-width: 80%;
                        text-align: center;
                        color: #fafafa;
                    }

                    .absolute-down-box {
                        position: absolute;
                        bottom: -20px;
                        right: -30px;
                        background: #fafafa;
                        box-shadow: 4px 4px 30px #18181815;
                        width: auto;
                        padding: 10px;
                        border-radius: 8px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 20px;

                        .left {
                            width: auto;

                            i {
                                padding: 10px;
                                background: linear-gradient(135deg, #d6b13b, #e2c156);
                                border-radius: 50%;
                                font-size: 1.2rem;
                                color: #fff;
                            }
                        }

                        .right {
                            h5 {
                                font-size: 1rem;
                                font-weight: 500;
                                color: #121212;
                            }

                            p {
                                font-size: 14px;
                                color: #212121;
                            }
                        }
                    }
                }
            }
        }

        .about-right {

            .section-label {
                display: inline-block;
                font-size: 1rem;
                font-weight: 400;
                background: #f6d2d2;
                color: #6f2d2d;
                padding: 5px 10px;
                border-radius: 5px;
                margin-bottom: 15px;
            }

            h2 {
                font-size: 3rem;
                line-height: 3.5rem;
                margin-bottom: 25px;
                font-weight: 600;
                color: #121212;

                span {
                    color: #6f2d2d;
                }
            }

            >p {
                font-size: 1.1rem;
                color: #494949;
                margin-bottom: 15px;
                font-weight: 400;
            }

            .founder-note {
                width: 100%;
                height: auto;
                padding: 20px 25px;
                border-radius: 15px;
                display: flex;
                align-items: start;
                justify-content: start;
                flex-direction: column;
                gap: 15px;
                border-left: 3px solid #6f2d2d;
                background: linear-gradient(90deg, #fffee7, #fffdc1);
                margin: 30px 0;

                .special-heading {
                    color: #181818;
                    font-size: 1.3rem;
                    font-weight: 400;
                    margin-bottom: 15px;
                }

                .note-info {
                    width: 100%;
                    display: flex;
                    align-items: start;
                    justify-content: start;
                    gap: 15px;

                    .note-info-left {

                        img {
                            width: 50px;
                            height: auto;
                            object-fit: cover;
                            border-radius: 50%;
                        }
                    }

                    .note-info-right {

                        h5 {
                            font-size: 1rem;
                            color: #121212;
                        }

                        >small {
                            font-size: 14px;
                            color: #212121;
                        }
                    }
                }
            }

            .about-cta {
                width: auto;
                display: flex;
                align-items: start;
                justify-content: start;
                gap: 20px;

                .about-cta-1 {
                    padding: 10px 20px;
                    background: linear-gradient(90deg, #2e0f0f, #6f2d2d);
                    color: #fafafa;
                    border-radius: 25px;
                    font-size: 1rem;
                    transition: all .5s ease-in-out;

                    &:hover {
                        transform: translateX(5px);
                        box-shadow: 10px 10px 30px #2e0f0f25;
                    }
                }

                .about-cta-2 {
                    padding: 10px 20px;
                    background: #fafafa;
                    color: #2e0f0f;
                    border: 1px solid #2e0f0f;
                    border-radius: 25px;
                    transition: all .5s ease-in-out;

                    &:hover {
                        transform: translateX(5px);
                        box-shadow: 10px 10px 30px #18181825;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .aboutsection {
        padding: 0 10px;

        .aboutcontainer {
            flex-wrap: wrap;
            margin: 40px 0;

            .about-left,
            .about-right {
                width: 100%;
            }

            .about-left {
                gap: 15px;

                .left-up {

                    img {
                        min-height: 200px;
                    }
                }

                .left-down {
                    gap: 15px;

                    .down-left {

                        img {
                            min-height: 200px;
                        }
                    }

                    .down-right {
                        min-height: 200px;

                        h3 {
                            font-size: 1.5rem;
                        }

                        >p {
                            font-size: 1rem;
                            width: 100%;
                        }

                        .absolute-down-box {
                            display: none;
                        }
                    }
                }

            }

            .about-right {
                .section-label {
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                h2 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                    margin-bottom: 15px;
                }

                >p {
                    font-size: 1rem;
                    margin-bottom: 15px;
                    font-weight: 400;
                }

                .extra-para {
                    display: none;
                }

                .founder-note {
                    margin: 20px 0;
                    padding: 15px;

                    .special-heading {
                        font-size: 1.1rem;
                        margin-bottom: 10px;
                    }

                }

                .about-cta {
                    flex-wrap: wrap;
                    margin-top: 40px !important;

                    a {
                        width: 100%;
                        display: block;
                        text-align: center;
                        padding: 20px;
                    }
                }
            }
        }
    }
}

/* about section */


/* service section */
.ServiceSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .ServiceContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin: 100px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;


        h4 {
            display: inline-block;
            font-size: 1rem;
            font-weight: 400;
            background: #ffdde2;
            color: #ae061d;
            padding: 5px 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            text-align: center;
        }

        h2 {
            font-size: 3rem;
            line-height: 3.5rem;
            margin-bottom: 25px;
            font-weight: 600;
            color: #121212;
            text-align: center;

            span {
                color: #d19200;
            }
        }

        >p {
            font-size: 1.4rem;
            margin-bottom: 20px;
            max-width: 700px;
            text-align: center;
            color: #444;
        }

        .serve-cards {
            width: 100%;
            height: auto;
            margin: 40px 0;
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 20px;

            .service-card {
                width: auto;
                height: auto;
                border-radius: 15px;
                overflow: hidden;
                background-position: top center;
                background-repeat: no-repeat;
                background-size: cover;

                .serv-overlay {
                    width: 100%;
                    height: auto;
                    min-height: 400px;
                    padding: 20px;
                    display: flex;
                    align-items: start;
                    justify-content: space-between;
                    flex-direction: column;
                    background: linear-gradient(180deg, #ffffff00, #000000);

                    .serv-up {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;

                        .up-left {

                            i {
                                background: #ffffff60;
                                color: #fafafa;
                                font-size: 1.5rem;
                                padding: 10px;
                                border-radius: 8px;
                            }
                        }

                        .up-right {

                            .label {
                                color: #181818;
                                background: #fdc700;
                                padding: 5px 10px;
                                border-radius: 5px;
                                font-size: 14px;
                            }
                        }
                    }

                    .serv-down {

                        h3 {
                            font-size: 1.5rem;
                            color: #fafafa;
                            font-weight: 500;
                            margin-bottom: 8px;
                        }

                        >p {
                            font-size: 14px;
                            margin-bottom: 12px;
                            color: #fdfdfd;
                        }

                        >a {
                            color: #fffdc1;
                        }
                    }
                }
            }

            .service-card:nth-child(1) {
                background-image: url(https://images.unsplash.com/photo-1574397188309-e83dfe918ecb?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1170);
            }

            .service-card:nth-child(2) {
                background-image: url(https://images.unsplash.com/photo-1645856052472-95fe99103c11?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1170);
            }

            .service-card:nth-child(3) {
                background-image: url(https://images.unsplash.com/photo-1743685102554-ef8e4eb11415?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1171);
            }

            .service-card:nth-child(4) {
                background-image: url(https://images.unsplash.com/photo-1744619979713-6133dfcccabe?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1167);
            }
        }

        .exploreallservices {
            padding: 10px 20px;
            background: linear-gradient(90deg, #d19200, #e2c156);
            color: #181818;
            border-radius: 25px;
            font-size: 1rem;
            transition: all .5s ease-in-out;

            &:hover {
                transform: translateX(5px);
                box-shadow: 10px 10px 30px #d1920025;
            }
        }

    }
}

@media only screen and (max-width:768px) {
    .ServiceSection {
        padding: 0 10px;

        .ServiceContainer {
            margin: 50px 0;
            padding: 0;

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            >p {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .serve-cards {
                flex-wrap: wrap;

                .service-card {
                    width: 100%;
                }
            }
        }
    }
}

/* service section */

/* photography showcase */
.photo-showcase {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .photo-showcase-Container {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 50px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h4 {
            display: inline-block;
            font-size: 1rem;
            font-weight: 400;
            padding: 5px 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            text-align: center;
            background-color: #e2c15625;


            i {
                color: #d19200;
                font-size: 1.1rem;
                font-weight: 500;
            }
        }

        h2 {
            font-size: 2.5rem;
            color: #121212;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;


            span {
                color: transparent;
                background: linear-gradient(90deg, #d19200, #d6b13b);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #212121;
            text-align: center;
            max-width: 800px;
        }

        .photographyCards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            margin-bottom: 60px;
            gap: 30px;
            justify-content: space-between;

            .photo-show-card {
                width: 30%;
                height: auto;
                background-color: #fffdc160;
                min-height: 550px;
                overflow: hidden;
                padding: 5px;
                border-radius: 5px;
                border: 1px solid #d1920025;
                transition: all .5s ease-in-out;

                &:hover {
                    box-shadow: 5px 5px 0 #fdc700;
                }

                img {
                    width: 100%;
                    height: 450px;
                    border-radius: 2.5px;
                    object-fit: cover;
                    margin-bottom: 15px;
                    transition: all .5s ease-in-out;

                }

                h3 {
                    font-size: 1.4rem;
                    color: #181818;
                    margin-bottom: 10px;
                    padding: 0 10px;
                }

                .photo-btn {
                    font-size: 1.1rem;
                    color: #6f2d2d;
                    padding: 0 10px;
                }
            }

            .photo-show-card:hover img {
                transform: scale(1.05);
            }
        }

        .explore-photography {
            padding: 10px 20px;
            background: linear-gradient(90deg, #d19200, #e2c156);
            color: #181818;
            border-radius: 25px;
            font-size: 1rem;
            transition: all .5s ease-in-out;

            &:hover {
                transform: translateX(5px);
                box-shadow: 10px 10px 30px #d1920025;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    body {
        position: relative;
    }

    .photo-showcase {
        padding: 0 10px;

        .photo-showcase-Container {

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            >p {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .photographyCards {
                flex-wrap: wrap;
                flex-direction: column;
                gap: 20px;
                margin-bottom: 30px;
                position: relative;

                .photo-show-card {
                    width: 100%;
                    height: auto;
                    position: sticky;
                    top: 50px;
                    background-color: #fffdc1;
                }
            }
        }
    }
}

/* photography showcase */

/* films showcase */
.video-showcase {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .videoShowContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 60px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h2 {
            font-size: 2.5rem;
            color: #121212;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;


            span {
                color: transparent;
                background: linear-gradient(90deg, #d19200, #d6b13b);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #212121;
            text-align: center;
            max-width: 800px;
        }

        .Films-Cards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 50px;

            .video-card {
                width: 48%;
            }
        }

        .Films-btn {
            padding: 10px 20px;
            background: linear-gradient(90deg, #d19200, #e2c156);
            color: #181818;
            border-radius: 25px;
            font-size: 1rem;
            transition: all .5s ease-in-out;

            &:hover {
                transform: translateX(5px);
                box-shadow: 10px 10px 30px #d1920025;
            }
        }
    }
}

@media only screen and (max-width:768px){
    .video-showcase{
        padding: 0 10px;

        .videoShowContainer{

            h2{
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            > p{
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .Films-Cards{
                gap: 20px;

                .video-card{
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}
/* films showcase */


/* testimonial section */
.testimonials-Section {
    width: 100%;
    height: auto;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .testimonialContainer {
        width: 100%;
        height: auto;
        margin: 50px 0;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .testiMoninal_Left, .testiMoninal_Right{
            width: 50%;
            height: auto;
        }

        .testiMoninal_Left{
            height: 300px;
            display: flex;
            align-items: end;
            justify-content: left;

            h2{
                font-size: 4rem;
                line-height: 5rem;
                max-width: 60%;
                color: #121212;
                font-weight: 600;


                span{
                    color: #d19200;
                }
            }
        }

        .testiMoninal_Right{
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;


            .testimonial-Card{
                width: 90%;
                height: auto;
                min-height: 400px;
                border-radius: 8px;

                p{
                    font-size: 1.5rem;
                    margin-bottom: 30px;
                    color: #222;
                }

                .reviewer-details{

                    h5{
                        color: #181818;
                        font-size: 1.2rem;
                    }

                    small{
                        font-size: 1.1rem;
                        color: #212121;
                    }
                }

                .wedding-image{
                    width: 100%;
                    height: 200px;
                    margin-top: 20px;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 5px;
                    }
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .testimonials-Section{
        padding: 0 10px;

        .testimonialContainer{
            flex-wrap: wrap;
            margin: 40px 0;

            .testiMoninal_Left, .testiMoninal_Right{
                width: 100%;
            }

            .testiMoninal_Left{
                display: flex;
                align-items: center;
                justify-content: center;
                height: auto;
                min-height: auto;

                h2{
                    width: 100%;
                    max-width: 100%;
                    font-size: 2rem;
                    text-align: center;
                    line-height: 2.5rem;
                    margin-bottom: 30px;
                }
            }

            .testiMoninal_Right{
                display: flex;
                align-items: center;
                justify-content: center;

                .testimonial-Card{
                    
                    p{
                        font-size: 1.2rem;
                        line-height: auto;
                    }

                    .wedding-image img{
                        height: 150px;
                    }
                }
            }
        }
    }
}
/* testimonial section */