* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AspektaVF';
    src: url('../fonts/AspektaVF-Regular.woff2');
}

body {
    font-family: sans-serif;
    background-color: white;
    color: black;
}




/* -- Hero Section -- */
.slider-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0px 0px 0px;
}

.slider-container {
    position: relative;
    width: 96%;
    height: 100vh;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 12px;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide video,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.overlay {
    position: absolute;
    bottom: 25px;
    left: 30px;
    color: white;
}

.overlay h3 {
    padding: 0px;
    margin: 10px 0 0 0;
    font-size: 18px;
    font-family: 'Old-Standard-Regular';
    font-weight: 500;
}

.overlay p {
    margin: 0px;
    padding: 0px;
    font-size: 42px;
    font-family: 'Lora';
    font-weight: 500;
}

.slider-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background-color: #007bff;
}

@media only screen and (max-width: 700px) {

    .slider-section {
        width: 100vw;
        height: 46vh;
        padding: 100px 10px 10px 10px;
    }

    .slider-container {
        height: 40vh;
    }

    .slides {
        height: 40vh;
    }

    .slide {
        height: 40vh;
    }

    .overlay {
        bottom: 100px;
        left: 15px;
    }

    .overlay h3 {
        font-size: 14px;
        font-weight: 600;
    }

    .overlay p {
        font-size: 30px;
    }
}




/* OUR FILMS*/
.our-films {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.our-films h1 {
    margin-top: 100px;
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
}

.films-category {
    margin: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.films-category a {
    text-decoration: none;
    padding: 5px 16px;
    border-radius: 20px;
    color: #555;
    background-color: rgb(236, 236, 236);
    border: solid 1px rgba(53, 53, 53, 0.4);
    cursor: pointer;
    font-size: 14px;
    font-family: 'AspektaVF';
    font-weight: 500;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.video-container {
    width: 28vw;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.video-thumbnail,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.play-button-icon {
    width: 30x;
    height: 30px;
    filter: invert(1);
}

.video-container.playing .video-thumbnail,
.video-container.playing .play-button {
    display: none;
}

.video-container.playing iframe {
    display: block;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.all-films {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.view-all-btn {
    --primary-color: #1f2122;
    --secondary-color: white;
    --hover-color: #3b3d3d;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    border: none;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    gap: 7px;
    font-size: 16px;
    font-family: 'AspektaVF';
    font-weight: 500;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    background: var(--primary-color);
    margin-top: 15px;
}

.view-all-btn .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-all-btn .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.view-all-btn .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.view-all-btn:hover {
    background-color: var(--hover-color);
}

.view-all-btn:hover .arrow {
    background: var(--secondary-color);
}

.view-all-btn:hover .arrow:before {
    right: 0;
}

@media only screen and (max-width: 900px) {

    .our-films h1 {
        margin-top: 40px;
        font-size: 26px;
    }

    .films-category {
        margin: 20px 0px;
    }

    .films-category a {
        padding: 4px 14px;
        font-size: 12px;
    }

    .video-gallery {
        gap: 10px;
        width: 90%;
        margin: 0px auto;
    }

    .video-container {
        width: 100%;
    }

    .view-all-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .all-films {
        margin-top: 20px;
    }

}


/* -- Photography Section -- */
.photography-grid-section {
    text-align: center;
    margin: 90px 0px 60px 0px;
}

.section-title {
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
    margin: 0px 0px 50px 0px;
}

.photography-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 90%;
    height: 90vh;
    margin: 0px auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background-color 0.4s ease-in-out;
}

.grid-item:hover::before {
    background-color: rgba(0, 0, 0, 0);
}

.grid-overlay {
    position: absolute;
    color: rgb(220, 220, 220);
    font-size: 20px;
    font-family: 'lora';
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.grid-item:hover .grid-overlay {
    opacity: 0;
}

.grid-item.pre-wedding {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.grid-item.wedding {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.grid-item.baby-photoshoot {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.grid-item.property {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    ;
}

.grid-item.Events {
    grid-column: 4 / 5;
    grid-row: 2 / 3
}

@media only screen and (max-width: 700px) {

    .photography-grid-section {
        margin: 0px 10px 0px 10px;
    }

    .section-title {
        font-size: 24px;
        margin: 60px 0px 30px 0px;
    }

    .photography-grid-container {
        gap: 3px;
        width: 98%;
        height: 40vh;
    }

    .grid-item {
        border-radius: 5px;
    }

    .grid-overlay {
        font-size: 12px;
    }

}



/* Service section */
.services-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    background-color: #E5E5E5;
    width: 100%;
    padding-bottom: 50px;
}

.services-heading {
    padding: 50px 0px;
    color: black;
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
}

.services-bg-frame {
    margin: 0px auto;
    height: 86vh;
    width: 90%;
}

.services-bg-image {
    background-image: url('images/service-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 86vh;
    width: 100%;
    border-radius: 8px;
}

.services-content-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3%;
    width: 90%;
    margin: 0px auto;
    margin-top: -50px;
}

.service-card {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 26%;
}

.card-icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-family: 'lora';
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    margin-top: 15px;
    font-family: 'AspektaVF';
    font-weight: 500;
}

.read-more {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-family: 'lora';
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 20px;
    transition: all 0.4s ease;
}

.read-more:hover {
    background-color: #000;
    color: #fff;
}

@media only screen and (max-width: 1200px) {

    .service-card {
        padding: 20px;
        width: 26%;
    }

    .card-icon-box {
        width: 40px;
        height: 40px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    .read-more {
        padding: 7px 18px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 730px) {

    .services-section {
        margin-top: 50px;
        padding-bottom: 30px;
    }

    .services-heading {
        padding: 30px 0px;
        font-size: 24px;
    }

    .services-bg-frame {
        display: none;
    }

    .services-bg-image {
        display: none;
    }

    .services-content-container {
        gap: 20px;
        margin-top: 0px;
    }

    .service-card {
        padding: 40px;
        width: 350px;
    }

    .card-icon-box {
        width: 40px;
        height: 40px;
    }

    .read-more {
        padding: 6px 16px;
    }

}


/* clint rewiew */
.reviews-section {
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.reviews-heading {
    padding: 90px 0 20px 0;
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
    color: black;
}

.reviews-slider-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.reviews-slides {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.review-slide {
    flex: 1 0 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 90px 30px 5px;
}

.review-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 400px;
    padding: 50px 100px;
}

.review-quote {
    font-size: 20px;
    font-family: 'lora';
    font-weight: 500;
    line-height: 1.6;
    margin: auto 0px;
    padding-bottom: 10px;
}

.client-name {
    font-size: 24px;
    font-family: 'AspektaVF';
    font-weight: 500;
    color: #333333;
}

.client-title {
    font-size: 14px;
    font-family: 'AspektaVF';
    font-weight: 500;
    margin: 0px 0 10px 0;
    color: #999999;
}

.review-image-box {
    flex: 0 0 40%;
    max-width: 35%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #c2c2c2;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transition: color 0.4s ease-in-out;
}


.review-arrow:hover {
    color: #808080;
}

.review-arrow.left {
    left: 30px;
}

.review-arrow.right {
    right: 30px;
}

@media only screen and (max-width: 1000px) {
    .review-text-box {
        height: 350px;
        padding: 30px 60px;
    }

    .review-image-box {
        height: 350px;
    }
}

@media only screen and (max-width: 768px) {

    .reviews-heading {
        padding: 50px 0 10px 0;
        font-size: 24px;
    }

    .reviews-slider-container {
        padding: 5px;
    }

    .review-slide {
        flex-direction: column-reverse;
        gap: 7px;
        padding: 30px 50px;
    }

    .review-text-box {
        padding: 0px;
    }

    .review-quote {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 10px;
        margin: 0px;
    }

    .client-name {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .client-title {
        font-size: 14px;
        margin-bottom: 0;
    }

    .review-image-box {
        flex: 0 0 auto;
        max-width: 100%;
        height: 300px;
        width: 100%;
    }

    .review-arrow.left {
        left: 0px;
    }

    .review-arrow.right {
        right: 0px;
    }
}





/* --- FAQ Section --- */
.faq-heading-containar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.faq-heading {
    padding: 70px 0 20px 0;
    text-align: center;
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
}

.faq-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 100px;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
}

.faq-info {
    flex: 0 0 35%;
    padding-right: 20px;
    margin-top: 12px;
}

.faq-info h3 {
    font-size: 30px;
    font-family: 'lora';
    font-weight: 600;
    color: #D90429;
    margin-bottom: 10px;
}

.faq-info p {
    font-size: 16px;
    font-family: 'AspektaVF';
    font-weight: 500;
    line-height: 1.6;
    color: #555;
}

.faq-container {
    flex: 0 0 60%;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
    cursor: pointer;
    list-style: none;
}

.faq-item>summary {
    list-style: none;
}

.faq-item>summary::marker,
.faq-item>summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-family: 'Lora';
    font-weight: 600;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #888;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    content: '—';
    font-size: 12px;
    font-weight: 700;
    transform: rotate(0deg);
}

.faq-answer {
    padding-top: 15px;
    font-size: 14px;
    font-family: 'AspektaVF';
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 900px) {

    .faq-section {
        flex-direction: column;
        padding: 20px 5%;
        gap: 30px;
    }

    .faq-heading {
        padding: 0px;
        font-size: 24px;
        padding: 40px 10px 0;
    }

    .faq-info {
        display: none;
    }

    .faq-container {
        margin-top: 30px;
        flex: none;
        width: 100%;
        padding-bottom: 30px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}