/* ===== Reset and Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #111;
    padding: 0;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-nav {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 1.2rem;
    list-style: none;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #e63946;
}

/* Mobile menu icon */
.mobile-menu {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* ===== Header / Hero Section ===== */
header {
    background: url('hero-boxing.jpg') no-repeat center center/cover;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.register-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e63946;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.register-btn:hover {
    background-color: #c21827;
}

/* ===== Section Styles ===== */
section {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    margin-bottom: 1rem;
}

section h2 {
    color: #e63946;
    margin-bottom: 1rem;
}

section p,
section ul {
    margin-bottom: 1rem;
    color: #ccc;
}

ul {
    list-style: disc inside;
}

/* ===== Form Styles ===== */
.center-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #222;
    padding: 2rem;
    border-radius: 8px;
}

.center-form label {
    display: block;
    margin-top: 1rem;
    color: #ddd;
}

.center-form input,
.center-form select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #111;
    color: #fff;
}

.center-form input[type="submit"] {
    margin-top: 1.5rem;
    background-color: #e63946;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.center-form input[type="submit"]:hover {
    background-color: #c21827;
}

/* ===== Videos ===== */
.video-container {
    margin-bottom: 2rem;
    text-align: center;
}

.video-container iframe,
.video-container video {
    width: 100%;
    max-width: 640px;
    height: auto;
    border: none;
}

/* ===== Contact Info ===== */
#contact-info {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 2rem;
}

#contact-info a {
    color: #e63946;
}

/* ===== Footer ===== */
footer {
    background-color: #000;
    color: #aaa;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

footer a {
    color: #e63946;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        display: none;
        background-color: #000;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 1rem 0;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    header h2 {
        font-size: 1.2rem;
    }

    .register-btn {
        padding: 0.6rem 1rem;
    }
}
