/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: black;
}

.hero-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-section .overlay {
    position: relative;
    z-index: 2;
}

/* Video Gallery */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.video-card video {
    width: 100%;
    border-radius: 10px;
}

.video-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Funky Titles */
.funky-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2rem;
    color: #ff4500;
    text-shadow: 2px 2px 5px black;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    color: white;
    padding: 50px 0;
}

.blog-card {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-card h5 {
    font-size: 1.2rem;
}

/* Summer Training */
.training-section {
    background: #00adb5;
    color: white;
    padding: 50px 0;
}
