* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f9f9f9;
}

/* Header & Navigation */
header {
    --h: 80px;
    background: #0a1628;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
    transform: scale(1.4);
    transform-origin: left center;
    margin-right: 8px;
    image-rendering: auto;
}

@media (max-width:900px) {
    .brand-logo {
        transform: scale(1.2);
    }
}

.brand-text h1 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
}

.brand-text p {
    font-size: .7rem;
    letter-spacing: 7.5px;
    color: #aaa;
    border-top: 1px solid #ffffff6e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: color .3s;
}

.nav-links a:hover {
    color: #c41e3a;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: .5rem;
}

.mobile-menu-btn:hover {
    color: #c41e3a;
}

.join-btn {
    background: #c41e3a;
    color: #fff;
    padding: .6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: .85rem;
    letter-spacing: 1px;
    transition: background .3s, transform .2s;
}

.join-btn:hover {
    background: #a01828;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    margin-top: var(--h);
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
        url('../assets/hero_warriors.png');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    font-size: clamp(28px, 6vw, 56px);
}

.hero-content p {
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: clamp(14px, 2.5vw, 20px);
}

.hero-content p span {
    color: #c41e3a;
}

.learn-more-btn {
    background: #c41e3a;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: background .3s, transform .2s;
}

.learn-more-btn:hover {
    background: #a01828;
    transform: scale(1.05);
}

/* Content */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.section {
    padding: 2rem;
    border-left: 4px solid #c41e3a;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a1628;
    letter-spacing: 1px;
}

.section p {
    color: #666;
    margin-bottom: 1rem;
}

.news-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-weight: bold;
    color: #0a1628;
    min-width: 120px;
}

.news-title {
    color: #666;
}

.read-more,
.view-all {
    color: #c41e3a;
    text-decoration: none;
    font-weight: bold;
    font-size: .9rem;
    letter-spacing: .5px;
    transition: color .3s;
}

.read-more:hover,
.view-all:hover {
    color: #a01828;
}

.register-btn {
    background: #c41e3a;
    color: #fff;
    padding: .8rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: .95rem;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
    transition: background .3s;
}

.register-btn:hover {
    background: #a01828;
}

/* Page section (for contactPage etc.) */
.page-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0a1628;
}

.page-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0a1628;
}

/* Footer */
footer {
    background: #0a1628;
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-social {
    text-align: right;
}

.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: #c41e3a;
    border-color: #c41e3a;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn .3s;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #c41e3a;
}

.modal-content h3 {
    color: #0a1628;
    font-size: 1.8rem;
    margin-bottom: .5rem;
    letter-spacing: 1px;
}

.modal-content .subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: .95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #0a1628;
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: .9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: .95rem;
    transition: border-color .3s;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: #c41e3a;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    width: 100%;
    border-radius: 4px;
    transition: background .3s, transform .2s;
}

.submit-btn:hover {
    background: #a01828;
    transform: translateY(-2px);
}

/* Utility */
.hidden {
    display: none;
}

/* Responsive */
@media (max-width:768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: var(--h);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--h));
        background: #0a1628;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left .3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-item {
        flex-direction: column;
        gap: .5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

}