/* --------------------------- GLOBAL -------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* --------------------------- BODY -------------------------------- */
body {
    font-family: 'Inter', sans-serif;
    background: #101010;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ---------------------------- HEADER --------------------------------- */
.navbar {
    background: #202020;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}
.navbar h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5AD1B8;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-links li {
    position: relative;
}
.nav-links a {
    font-size: 1rem;
    padding: 8px 12px;
    background: #2d2d2d;
    border-radius: 5px;
    transition: all 0.3s;
}
.nav-links a:hover {
    background: #5AD1B8;
    color: #000;
}
.dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #2d2d2d;
    padding: 10px;
    border-radius: 5px;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 11;
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
    display: block;
}
.dropdown a {
    display: block;
    padding: 8px;
    font-size: 0.9rem;
}
.dropdown a:hover {
    background: #5AD1B8;
    color: #000;
}
/* ---------------------------- MENU --------------------------------- */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.burger:hover div {
    background: #5AD1B8;
}
.burger div {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: background 0.3s;
}
.burger-menu {
    display: none;
    flex-direction: column;
    background: #2d2d2d;
    padding: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    border-radius: 5px;
    z-index: 15;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}
.burger-menu.active {
    display: flex;
}
.burger-menu a {
    padding: 10px 0;
    color: #fff;
}
.burger-menu a:hover {
    background: #5AD1B8;
    color: #000;
    border-radius: 5px;
}
.burger-menu .dropdown {
    display: none;
    flex-direction: column;
}
.burger-menu .dropdown.active {
    display: flex;
}
.burger-menu .dropdown a {
    padding-left: 20px;
}

/* ---------------------------- TEXT --------------------------------- */
.hero {
    background: linear-gradient(135deg, #5AD1B8, #399380);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.3rem;
    margin: 0 auto;
    max-width: 700px;
}

/* Video Section */
.video-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Three videos per row */
    column-gap: 20px;
    row-gap: 20px;
    padding: 60px 20px;
}

.video-card {
    background: #202020;
    border-radius: 10px; /* Increased radius for more focus */
    padding: 10px; /* Increased padding to enlarge block */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.video-card:hover {
    transform: scale(1.08); /* Increased scale for more prominence */
    background: linear-gradient(135deg, #5AD1B8, #399380); /* More visible hover color */
    color: #000;
}

.video-card iframe {
    width: 100%;
    border-radius: 5px;
    height: 320px; /* Adjusted height */
}

/* ---------------------------- FOOTER --------------------------------- */
.footer {
    text-align: center;
    padding: 20px;
    background: #202020;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: auto;
}
.footer a {
    color: #5AD1B8;
    text-decoration: none;
    font-weight: bold;
}
.footer a:hover {
    text-decoration: underline;
}

/* ------------------------ RESPONSIVE ----------------------------- */
@media (max-width: 1024px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Two videos per row */
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .burger {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }

    .video-section {
        grid-template-columns: 1fr; /* One video per row */
        padding: 50px 20px;
    }

    .video-card iframe {
        height: 200px; /* Adjusted height for smaller screens */
    }
}