* {
    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;
}


/*  Story Section  */
.video-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 30px;
}

.video-container {
    width: 96%;
    height: 90vh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

.video-placeholder,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

@media (max-width: 700px) {

    .video-section {
        gap: 20px;
        padding-top: 110px;
    }

    .video-container {
        height: 40vh;
    }

    .play-button {
        width: 30px;
        height: 30px;
    }
}


/* -- 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: 60px;
}

.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: 800px) {

    .photography_heading {
        font-size: 26px;
        padding: 40px 0px 30px 0px;
    }

    .category-item {
        width: 29%;
    }

    .category-grid {
    margin-bottom: 40px;
}

    .category-title {
        font-size: 16px;
    }
}