html {
    scroll-behavior: smooth; /* Enables smooth scrolling */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Top menu styling */
.top-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.menu-logo {
    font-size: 20px;
    font-weight: bold;
}

.menu-links {
    display: flex;
    gap: 10px;
}

.menu-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s;
}

.menu-links a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Hamburger menu styling for mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    background-color: #333;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 15px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    .menu-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown-menu.active {
        display: flex;
    }
}

/* Sections styling */
section {
    padding: 60px 20px;
    margin-top: 50px;
}

#about {
    background: #f4f4f4;
}

#instructors {
    background: #f4f4f4;
}

#training {
    background: #f4f4f4;
}

#contact {
    background: #f4f4f4;
}

/* Responsive images */
img {
    max-width: 100%; /* Ensures images don't exceed the screen width */
    height: auto;   /* Maintains aspect ratio */
    display: block; /* Removes unwanted gaps below images */
    margin: 0 auto; /* Centers the image */
}

@media (max-width: 600px) {
    .top-menu {
        flex-direction: column;
        align-items: center;
    }

    .top-menu a {
        padding: 15px;
        width: 100%;
        text-align: center;
    }
}

  /* Responsive video styling */
  .video-container {
    position: relative;
    width: 100%; /* Makes the container take full width */
    padding-bottom: 75%; /* Aspect ratio: 4:3 */
    margin: 20px 0; /* Optional spacing around the video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    border: 0; /* Removes the iframe border */
}