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

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

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


/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e53935;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #000000;
    padding: 8px 16px;
    border-radius:  4px;
}

.call-now-btn {
    background-color: #e53935;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.call-now-btn:hover {
    background-color: #c62828;
}

/* Buttons */
/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #e53935, #c62828);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1f1694, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    color: white; /* Ensure text remains white on hover */
}

.btn-primary:active {
    background: linear-gradient(135deg, #1f1694, #880e0e);
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(229, 57, 53, 0.3);
    color: white; /* Ensure text remains white when clicked */
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    color: #e53935;
    border: 2px solid #e53935;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1f1694, #c62828);
    color: white; /* Change text to white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
}

.btn-secondary:active {
    background: linear-gradient(135deg, #1f1694, #b71c1c);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(229, 57, 53, 0.2);
}

/* Call Now Button */
.call-now-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.call-now-btn:hover {
    background: linear-gradient(135deg, #f57c00, #ef6c00);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.call-now-btn:active {
    background: linear-gradient(135deg, #ef6c00, #e65100);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

/* Event Buttons */
.btn-event-details, .btn-event-register {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-event-details {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-event-details:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-event-details:active {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.btn-event-register {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-event-register:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-event-register:active {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* Wing Buttons */
.btn-wing-details, .btn-wing-join {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-wing-details {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.btn-wing-details:hover {
    background: linear-gradient(135deg, #7b1fa2, #6a1b9a);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
}

.btn-wing-details:active {
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
}

.btn-wing-join {
    background: linear-gradient(135deg, #1f1694, #e64a19);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-wing-join:hover {
    background: linear-gradient(135deg, #1f1694, #d84315);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-wing-join:active {
    background: linear-gradient(135deg, #d84315, #bf360c);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
}

/* Admin Buttons */
.btn-admin-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #673ab7, #512da8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-admin-login:hover {
    background: linear-gradient(135deg, #512da8, #4527a0);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
}

.btn-admin-login:active {
    background: linear-gradient(135deg, #4527a0, #311b92);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(103, 58, 183, 0.3);
}

.btn-refresh {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-refresh:hover {
    background: linear-gradient(135deg, #0097a7, #00838f);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.btn-refresh:active {
    background: linear-gradient(135deg, #00838f, #006064);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

.btn-view {
    background: linear-gradient(135deg, #607d8b, #455a64);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 125, 139, 0.3);
}

.btn-view:hover {
    background: linear-gradient(135deg, #455a64, #37474f);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 125, 139, 0.4);
}

.btn-view:active {
    background: linear-gradient(135deg, #37474f, #263238);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(96, 125, 139, 0.3);
}

/* Form Buttons */
form button[type="submit"] {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

form button[type="submit"]:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    color: white; /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

form button[type="submit"]:active {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white; /* Ensure text remains white when clicked */
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* Button Ripple Effect */
.btn-primary::after,
.btn-secondary::after,
.btn-event-details::after,
.btn-event-register::after,
.btn-wing-details::after,
.btn-wing-join::after,
.btn-admin-login::after,
.btn-refresh::after,
.btn-view::after,
form button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:focus::after,
.btn-secondary:focus::after,
.btn-event-details:focus::after,
.btn-event-register:focus::after,
.btn-wing-details:focus::after,
.btn-wing-join:focus::after,
.btn-admin-login:focus::after,
.btn-refresh:focus::after,
.btn-view:focus::after,
form button[type="submit"]:focus::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: #e53935;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #333;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #e53935;
}

.footer-column p {
    margin-bottom: 15px;
    color: #bbb;
}

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

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #e53935;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: #bbb;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #e53935;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons button {
        width: 200px;
        margin-bottom: 10px;
    }
}
/* Events Section */
.events-section {
    padding: 80px 0;
}

.events-section h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
}

.subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.event-date, .event-venue {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.event-description {
    margin-bottom: 20px;
    color: #555;
}

.event-buttons {
    display: flex;
    gap: 10px;
}

.btn-event-details, .btn-event-register {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-event-details {
    background-color: #f5f5f5;
    color: #333;
}

.btn-event-details:hover {
    background-color: #e0e0e0;
}

.btn-event-register {
    background-color: #e53935;
    color: white;
}

.btn-event-register:hover {
    background-color: #c62828;
}

.event-details-image {
    margin-bottom: 20px;
}

.event-details-image img {
    width: 100%;
    border-radius: 8px;
}

.event-details-info {
    margin-bottom: 20px;
}

.event-details-info p {
    margin-bottom: 5px;
}

.event-details-description {
    margin-bottom: 20px;
}

.event-details-actions {
    text-align: center;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}
/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #e53935;
    font-size: 28px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.impact-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    color: #e53935;
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    margin: 0;
}

.about-slideshow {
    flex: 1;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 8px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slide-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #e53935;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    color: #e53935;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #e53935;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #e53935;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -12px;
}

.timeline-date {
    position: absolute;
    width: 100px;
    padding: 8px 16px;
    background-color: #e53935;
    color: white;
    border-radius: 20px;
    text-align: center;
    top: 15px;
}

.left .timeline-date {
    right: -120px;
}

.right .timeline-date {
    left: -120px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #e53935;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .left::after, .right::after {
        left: 18px;
    }
    
    .right {
        left: 0%;
    }
    
    .left .timeline-date, .right .timeline-date {
        left: 0;
        right: auto;
    }
}
/* Wings Section */
.wings-section {
    padding: 80px 0;
}

.wings-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
}

.wings-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.wing-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.wing-card:hover {
    transform: translateY(-5px);
}

.wing-image {
    height: 200px;
    overflow: hidden;
}

.wing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wing-content {
    padding: 25px;
}

.wing-content h2 {
    margin-bottom: 15px;
    color: #e53935;
    font-size: 24px;
}

.wing-content p {
    margin-bottom: 25px;
    color: #555;
}

.wing-buttons {
    display: flex;
    gap: 10px;
}

.btn-wing-details, .btn-wing-join {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-wing-details {
    background-color: #f5f5f5;
    color: #333;
}

.btn-wing-details:hover {
    background-color: #e0e0e0;
}

.btn-wing-join {
    background-color: #e53935;
    color: white;
}

.btn-wing-join:hover {
    background-color: #c62828;
}

.wing-details-image {
    margin-bottom: 20px;
}

.wing-details-image img {
    width: 100%;
    border-radius: 8px;
}

.wing-details-description {
    margin-bottom: 20px;
}

.wing-details-activities {
    margin-bottom: 20px;
}

.wing-details-activities ul {
    padding-left: 20px;
}

.wing-details-activities li {
    margin-bottom: 8px;
}

.wing-members {
    margin-bottom: 20px;
}

.wing-members h3 {
    margin-bottom: 15px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

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

.member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.member-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.wing-details-actions {
    text-align: center;
}
/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.team-section h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
}

.team-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
}

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

.team-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.member-position {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    color: #555;
    font-size: 18px;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #e53935;
}
/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
}

.contact-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    color: #e53935;
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-details p {
    color: #555;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #e53935;
    color: white;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

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

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

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

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}