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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.event-card p{
    padding: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #bb3837;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.top-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-actions a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.join-btn {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 3px;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #bb3837;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icons button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Hero */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9), transparent);
    padding: 60px 20px 30px;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* CTA Cards */
.cta-cards {
    padding: 0;
    margin-top: -90px;
    position: relative;
    z-index: 10;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cta-card {
    background: #bb3837;
    padding: 60px 30px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 80, 80, 0.7);
    z-index: 1;
}

.cta-card h2,
.cta-card p,
.cta-card a {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-card p {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-card .btn {
    display: inline-block;
    background-color: #bb3837;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cta-card .btn:hover {
    background-color: #bb3837;
}

/* Team CTA Section */
.team-cta-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://res.cloudinary.com/dspsj31q8/image/upload/v1762186512/undefined_4_yajggx.jpg');
    background-size: cover;
    background-position: center;
}

.team-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 197, 94, 0.9);
}

.team-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.team-cta-content h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .team-cta-content h2 {
        font-size: 3rem;
    }
}

.d-flex {
    display: flex;
}

.half{
    width: 50%;
}

.half img{
    width: 100%;
}


.team-cta-content p {
    font-size: 1.125rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Upcoming Events */
.upcoming-events {
    padding: 80px 0;
    background-color: #f7f3f1;
}

.upcoming-events h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.upcoming-events h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.events-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.view-all-btn {
    display: block;
    max-width: 250px;
    margin: 0 auto 50px;
    text-align: center;
    background-color: white;
    color: #bb3837;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #bb3837;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background-color: #bb3837;
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.event-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.event-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(100, 100, 100, 0.9);
    color: white;
    padding: 8px 20px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Latest News */
.latest-news {
    padding: 80px 0;
    background-color: white;
}

.latest-news h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    text-align: center;
}

.news-card h3 {
    font-family: 'Cinzel', serif;
    color: #bb3837;
    font-size: 18px;
    margin-bottom: 20px;
    text-decoration: underline;
    font-weight: 600;
}

.news-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Video Section */
.video-section {
    background-color: #ee5f5c;
    color: white;
    padding: 80px 0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 600;
}

.video-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.video-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.mission-bottom {
    font-weight: 700;
    margin-bottom: 30px;
}

.video-text .btn {
    display: inline-block;
    background-color: white;
    color: #bb3837;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.video-text .btn:hover {
    background-color: #bb3837;
    color: white;
}

.video-embed {
    position: relative;
}

.video-embed img {
    width: 100%;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(187, 56, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #bb3837;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #bb3837;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact-item p a {
    color: #bb3837;
    text-decoration: none;
}

.contact-item p a:hover {
    text-decoration: underline;
}

.contact-form h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #bb3837;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #bb3837;
}

.contact-form .btn-primary {
    background-color: #bb3837;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .btn-primary:hover {
    background-color: #a02d2d;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #bb3837;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Join */
.why-join {
    padding: 80px 0;
    background-color: white;
}

.why-join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-join-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.why-join-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-join-text .btn {
    display: inline-block;
    background-color: white;
    color: #bb3837;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #bb3837;
    transition: all 0.3s;
    margin-top: 20px;
}

.why-join-text .btn:hover {
    background-color: #bb3837;
    color: white;
}

.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-row img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #bb3837;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #bb3837;
}

.team-member h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #bb3837;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.team-member .btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #bb3837;
    color: #bb3837;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.team-member .btn-outline:hover {
    background-color: #bb3837;
    color: white;
}

/* Footer */
footer {
    background-color: #bb3837;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.quick-links {
    margin-top: 30px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-col p a {
    color: #bb3837;
    text-decoration: none;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 12px;
}

.website-by {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .video-content,
    .why-join-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    header .container {
        flex-wrap: wrap;
    }

    nav {
        display: none;
    }
    .d-flex{
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .photo-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 32px;
    }

    .map-section h2 {
        font-size: 32px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        padding: 20px 15px;
    }

    .team-member img {
        width: 80px;
        height: 80px;
    }

    .team-member h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-section h2 {
        font-size: 32px;
    }

    .team-intro {
        font-size: 16px;
    }
}