@import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&display=swap');
/* Basic Reset */
* {
    cursor: url('/img/cross.png'), auto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: none;
    background-color: transparent;
}
body, html {
    width: 100%;
    height: 100%;
    font-family: 'Helvetica', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
    background: none;
    background-color: transparent;
    
    
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: transparent;
    font-family: 'Agdasima', sans-serif;
    letter-spacing: 3px;
}

/* Header Styles */
header {
    padding: 20px 0;
    text-align: center;
    background-color: transparent;
    
}

header h1, header h2 {
    margin: 5px 0;
}

/* Navigation Styles */

.category-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    background-color: transparent;
    font-family: 'Agdasima', sans-serif;
    letter-spacing: 2px;
    font-size: 18px;
}

.category-nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #222;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.39s ease-in-out;
    background-color: transparent;
    
}

.category-nav ul li a:hover, .category-nav ul li a:focus {
    background-color: #000;
    color: #fff;
    cursor: url('/img/select.png'), auto;
}

.category-nav ul li a:hover {
background-color: #bbb5e4c8;
color: #000;

}

/* Main Styles for Videos */
#videoGallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
 .video-item {
    text-align: center; /* Center-align text */
    margin-bottom: 20px; /* Space between video items */
}

.video-item iframe {
    width: 560px; /* Adjust based on preference */
    height: 315px; /* Adjust based on preference */
    margin-bottom: 10px; /* Space between video and text */
}

.video-text h3,
.video-text p {
    margin: 5px 0; /* Spacing for readability */
}

.video-text p:hover {
    cursor: url('/img/cross2.png'), auto;
}
.video-item {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: calc(50% - 10px);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: url('/img/play2.png'), auto;
}

.video-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.video-details {
    padding: 15px;
}

.video-details h3, .video-details .undertitle, .video-details p {
    margin-bottom: 10px;
}

.undertitle {
    font-weight: bold;
    color: #666;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    margin-top: 40px;
    background: transparent;
    font-size: 16px;
}

footer a {
    text-decoration: none;
    color: #000;
}

footer a:hover {
    text-decoration: none;
    color: #eee;
    cursor: url('/img/select.png'), auto;
}
footer a:focus{
    cursor:copy;
}

#backtotitle {
    font-size: 15px;
    font-weight: 400;
    text-align:center;
    letter-spacing: 3px;
    bottom: 50%;
}

#backtotitle2 {
    font-size: 15px;
    font-weight: 400;
    text-align:center;
    letter-spacing: 3px;
    bottom: 50%;
}

#backtotitle {
    top: 3%;
    text-align:right;
    right: 4%;
}
#backtotitle2 {
    top: 3%;
    text-align:right;
    right: 4%;
}

#backtotitle a {
    font-size: 48px;
    color: #aaa;
    transition: 0.22s ease-out;
    text-decoration: none;
    letter-spacing: 15px;}

#backtotitle2 a {
        font-size: 48px;
        color: #aaa;
        transition: 0.22s ease-out;
        text-decoration: none;
        letter-spacing: 15px;}

#backtotitle a:hover {
        font-size: 48px;
        cursor: pointer;
        font-weight: 300;
        color: #fff;
        opacity: 95%;
        transition: 0.12s ease-out; }

#backtotitle2 a:hover {
            font-size: 48px;
            cursor: pointer;
            font-weight: 300;
            color: #fff;
            opacity: 95%;
            transition: 0.12s ease-out; }
        
/* Responsive Styles */
@media (max-width: 768px) {
    .video-item {
        width: 100%;
    }

    .category-nav ul {
        flex-direction: column;
    }

    .category-nav ul li a {
        padding: 10px;
    }
}
