* {
    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;
}




/* -- Image Category -- */
.heading-section {
    width: 100%;
    text-align: center;
}

.photography_heading {
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
    padding: 100px 0px 60px 0px;
}

.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 140px;
}

.category-item {
    text-decoration: none;
    width: 220px;
    text-align: center;
    cursor: pointer;
}

.image-wrapper {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-title {
    font-size: 18px;
    font-family: 'lora';
    font-weight: bold;
    color: #333;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 1px;
    width: 0%;
    background-color: #e74c3c;
    transition: width 0.3s ease-out, left 0.3s ease-out;
    transform: translateX(-50%);
}

.category-item:hover .category-title::after {
    width: 60%;
}

.category-item:hover .category-title {
    color: #000;
}

@media (max-width: 700px) {

    .photography_heading {
        font-size: 26px;
        padding: 120px 0px 30px 0px;
    }

    .category-item {
        width: 29%;
    }

    .category-grid {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 16px;
    }
}





/* -- Wedding Couple Section -- */
.slider-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.slider-container {
    flex: 1;
    width: 40%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #000;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 60px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    border-radius: 12px;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-info {
    padding: 25px;
}

.slider-title {
    font-size: 28px;
     font-family: 'lora';
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
   
}

.slider-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 800px) {
    .slider-section {
        flex-direction: column;
        gap: 20px;
    }

    .slider-container {
        width: 96%;
        margin: 0px auto;

    }

    .slider-title {
        font-size: 24px;
    }

    .slider-description {
        font-size: 14px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}



/* OUR FILMS*/
.our-films {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin: 0px auto;
    margin: 80px 0px 60px 0px;
}

.films-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 88%;
    margin: 0px auto;
    margin: 30px auto 20px auto;
}

.our-films h1 {
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
}

.view-all-btn {
    --primary-color: #1f2122;
    --secondary-color: white;
    --hover-color: #1f2122e7;
    --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;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.video-container {
    width: 28%;
    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;
}

@media only screen and (max-width: 800px) {

    .our-films {
        margin: 30px 0px;
    }

    .films-category {
        margin: 0px auto 20px auto;
    }

    .our-films h1 {
        margin-top: 15px;
        font-size: 26px;
    }

    .view-all-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .video-gallery {
        gap: 10px;
    }

    .video-container {
        width: 400px;
    }

}