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

body {
    font-family: Arial, sans-serif;
    color: white;
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    background: url('/static/images/hero-background.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141d5a, #0729df, #2e6ee7);
    z-index: 1;
    filter: opacity(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

/* Logo and slogan */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
    z-index: 2;
}

.logo img {
    width: 400px;
    height: auto;
}


/* Hero text */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.main-heading {
    background-color: black;
    padding: 20px;
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: white;
    font-family: Arial, sans-serif;
    line-height: normal;
}

.main-heading span {
    display: block;
}

.hero-highlight {
    font-size: 64px;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.subheading {
    font-size: 29px;
    line-height: 1.5;
    max-width: 600px;
    color: white;
    font-family: Arial, sans-serif;
}

/* full width row */

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

.mission-section {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.mission-header {
    font-size: 50px;
    font-weight: 500;
    padding: 30px 0px 10px 0px;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.mission-text {
    flex: 1 1 60%;
    padding: 20px;
}

.mission-text p {
    text-align: center;
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: white;
    font-family: Arial, sans-serif;
}

.mission-text a {
    color: #fff;
    font-family: Arial, sans-serif;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;

}

.mission-text a:hover {
    text-decoration: underline;
}

.mission-image {
    flex: 1 1 40%;
    /* padding: 20px; */
    text-align: center;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #fff;
    border-radius: 10px;
}

.offer-container {
    background-color: #0d1b55;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-box {
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, #141d5a, #0729df, #2e6ee7);
    padding: 30px;

}

.offer-box h2 {
    margin-bottom: 20px;
}

.offer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.offer-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.offer-circle {
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 10px;
    font-family: Arial, sans-serif;
}

.offer-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.offer-text {
    color: white;
    font-family: Arial, sans-serif;
}

.core-values-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: left;
    font-family: Arial, sans-serif;
    padding: 60px 40px;
    background: url('/static/images/core-values-bkg.jpg') center/cover no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141d5a, #0729df, #2e6ee7);
    opacity: 0.85;
}

.core-values-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.core-values-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.core-values-content ul {
    list-style: none;
    padding: 0;
}

.core-values-content ul li {
    margin-bottom: 15px;
    font-size: 20px;
}

.core-values-content ul li strong {
    font-weight: bold;
    color: white;
    font-size: 20px;
    font-family: Arial, sans-serif;
}

.three-column-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-family: Arial, sans-serif;
    background: #f0f0f0;
}

.column {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fighters {
    background: #0033cc;
    color: white;
}

.events {
    background: white;
    color: black;
}

.directory {
    background: #0033cc;
    color: white;
}

.fighters p,
.directory p {
    color: white;
    font-family: Arial, sans-serif;
}

.events p {
    color: black;
    font-family: Arial, sans-serif;
}

.column h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.column img {
    width: auto;
    height: 160px;
    margin-bottom: 15px;
}

.column p {
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: white;
    background: #2e6ee7;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.button:hover {
    background: #0729df;
}

.partners-section {
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px 20px;
    width: 100%;
}

.partners-section h2 {
    font-size: 28px;
    font-family: Arial, sans-serif;
    margin-bottom: 30px;
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

.partner {
    text-align: center;
}

.partner a {
    display: block;
}

.partner img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.partner p {
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-top: 5px;
    color: white;
}

@media (max-width: 768px) {
    .partners-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Responsive styles */
@media (max-width: 900px) {
    .three-column-container {
        flex-direction: column;
        align-items: stretch;
    }

    .column {
        width: 100%;
    }
}

/* hero section */
@media (max-width: 768px) {
    .main-heading {
        padding: 15px;
    }
    .hero-highlight {
        font-size: 64px;
        color: white;
        font-weight: bold;
        font-family: Arial, sans-serif;
    }
}

/* hero section */
@media (max-width: 425px) {
    .main-heading {
        font-size: 3.5rem;
        padding: 15px;
    }

    .subheading {
        font-size: 1.28rem;
        font-family: Arial, sans-serif;
    }

    .logo img {
        width: 300px;
    }

    .hero-highlight {
        font-family: Arial, sans-serif;
        font-size: 3.5rem;
        color: white;
        font-weight: bold;
    }


}

/* full width row */
@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
        text-align: center;
    }

    .mission-text {
        flex: 1 1 100%;
    }

    .mission-image {
        flex: 1 1 100%;
    }
}