/* Custom CSS Variables */
:root {
    --primary-color: #28a745; /* Green */
    --secondary-color: #ffc107; /* Yellow */
    --dark-color: #212529; /* Black */
    --light-color: #ffffff; /* White */
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.custom-navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #343a40 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--light-color) !important;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.8) 0%, rgba(40, 167, 69, 0.8) 100%), 
                url('images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-light {
    border-color: var(--light-color);
    color: var(--light-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Hero image styles removed - now using background image */

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

/* Event Cards */
.event-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--light-color);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-card .card-text {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* About Section */
.about-image-container {
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-weight: 500;
}

/* Donate Section */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%) !important;
}

.donate-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-select, .form-control {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

.form-select:focus, .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.form-select option {
    background: var(--dark-color);
    color: var(--light-color);
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Contact Section */
.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 50px;
    text-align: center;
}

.contact-item h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray-color);
    margin: 0;
}

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Associations Section */
.association-card {
    background: var(--light-color);
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.association-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Intro Videos - styles to display vertical videos nicely */
.intro-videos .video-item{
    display:flex;
    justify-content:center;
    align-items:center;
}
.intro-videos video.intro-video{
    width:100%;
    height:auto;
    aspect-ratio: 9 / 16;
    max-height: 70vh;
    object-fit: cover;
    display:block;
}

@media (max-width: 576px) {
    .intro-videos video.intro-video{
        max-height: 60vh;
    }
}

.association-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.association-card:hover .association-logo {
    filter: grayscale(0%);
}

.association-card h5 {
    color: var(--dark-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #343a40 100%);
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .donate-form {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* CEKA 2026 Section Styles */
.ceka-content {
    padding: 2rem 0;
}

.event-badge .badge {
    border-radius: 25px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ceka-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.ceka-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.event-details .detail-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.event-details .detail-item:last-child {
    border-bottom: none;
}

.event-details .detail-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    width: 30px;
}

.ceka-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ceka-features {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ceka-features .row > div {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.ceka-buttons {
    margin-top: 2rem;
}

.ceka-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ceka-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CEKA Flyer Styles */
.ceka-flyer-container {
    position: relative;
    text-align: center;
}

.flyer-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.flyer-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.flyer-placeholder {
    width: 500px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 3px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.flyer-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.flyer-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.flyer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.flyer-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.flyer-instructions {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.ceka-flyer {
    width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.flyer-wrapper:hover .flyer-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--light-color);
}

.overlay-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive CEKA Section */
@media (max-width: 768px) {
    .ceka-title {
        font-size: 2.5rem;
    }
    
    .ceka-subtitle {
        font-size: 1.25rem;
    }
    
    .flyer-placeholder,
    .ceka-flyer {
        width: 300px;
        height: 400px;
    }
    
    .ceka-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .ceka-features .row > div {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .ceka-title {
        font-size: 2rem;
    }
    
    .flyer-placeholder,
    .ceka-flyer {
        width: 250px;
        height: 350px;
    }
    
    .event-details .detail-item {
        font-size: 0.9rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    color: var(--light-color);
    margin-top: 80px;
}

/* Introduction Section Styles */
.introduction-content {
    padding: 2rem 0;
}

.introduction-stats {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.introduction-features {
    background: rgba(40, 167, 69, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--dark-color);
}

.introduction-image-container {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 20px;
}

.introduction-image {
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.8) 0%, rgba(33, 37, 41, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.introduction-image-container:hover .image-overlay {
    opacity: 1;
}

.introduction-image-container:hover .introduction-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: var(--light-color);
    padding: 2rem;
}

.overlay-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.overlay-text {
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
}

.contact-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-email,
.contact-phone,
.contact-address {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-hours {
    color: var(--gray-color);
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-container {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--light-color);
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--light-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.accordion-body {
    background: var(--light-color);
    padding: 1.5rem;
    color: var(--gray-color);
    line-height: 1.6;
}

/* About Page Styles */
.service-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
}

.service-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Team Styles */
.team-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.team-name {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Impact Stats */
.impact-stat {
    padding: 2rem 1rem;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
    font-size: 2rem;
}

.impact-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--light-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

/* CEKA 2026 Page Styles */
.event-info-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.event-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
}

.event-info-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.event-info-description {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-info-text {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Program Highlights */
.program-highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--light-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.program-content {
    flex: 1;
}

.program-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.program-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    padding: 0.25rem 0;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Registration Form */
.registration-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ceka-registration-form .form-control,
.ceka-registration-form .form-select {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.ceka-registration-form .form-control:focus,
.ceka-registration-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.ceka-registration-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.ceka-registration-form .form-select option {
    background: var(--dark-color);
    color: var(--light-color);
}

/* Sponsorship Content */
.sponsorship-content {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.sponsorship-content h3 {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.sponsorship-content p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-list,
.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li,
.impact-list li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Donate Page Styles */
.donation-option-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.donation-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.donation-option-card:hover .donation-icon {
    transform: scale(1.1);
}

.donation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.donation-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.donation-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donation-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.donation-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.donation-benefits li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.donation-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.donation-btn {
    width: 100%;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donation-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Donation Form */
.donation-form-container {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.donation-form .form-control,
.donation-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.donation-form .form-control:focus,
.donation-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.donation-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.donation-form .form-check-label {
    color: var(--dark-color);
    font-weight: 500;
}

/* Impact Stories */
.impact-story-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.impact-story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 1.5rem;
}

.story-title {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.story-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.impact-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.impact-text {
    color: var(--gray-color);
    font-weight: 500;
}

/* Nda Ekang Page Styles */
.gallery-placeholder {
    padding: 4rem 2rem;
    background: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-placeholder i {
    opacity: 0.5;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        border-radius: 10px;
    }
}

/* Impact Action Card */
.impact-action-card {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--light-color);
    font-size: 2rem;
}

.impact-title {
    color: var(--dark-color);
    font-weight: bold;
}

.impact-description {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Donation Link Container */
.donation-link-container {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.donation-link-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.donation-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--light-color);
    font-size: 2rem;
}

.donation-link-title {
    color: var(--dark-color);
    font-weight: bold;
}

.donation-link-description {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

.donation-link-btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donation-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.donation-note {
    color: var(--gray-color);
    font-style: italic;
}

/* Highlight Donate Link in Navigation */
.nav-link.donate-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffd700 100%);
    color: var(--dark-color) !important;
    font-weight: bold;
    border-radius: 25px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link.donate-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-link.donate-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: var(--dark-color) !important;
}

.nav-link.donate-highlight:hover::before {
    left: 100%;
}

.nav-link.donate-highlight:focus {
    color: var(--dark-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 1rem;
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    color: var(--light-color);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.coming-soon-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* Google Translate Styles */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


/* Masquer complètement la barre de traduction Google */
.goog-te-banner-frame {
    display: none !important;
}

.skiptranslate iframe {
    display: none !important;
}

/* Masquer le logo et le gadget Google Translate */
.goog-logo-link, .goog-te-gadget span {
    display: none !important;
}

/* Masquer l'élément de traduction */
#google_translate_element {
    display: none;
}

/* S'assurer que la navbar reste en haut */
.navbar.fixed-top {
    top: 0 !important;
}

/* Styles pour les boutons de traduction */
.translation-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.translation-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.translation-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.translation-btn.active {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 193, 7, 0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

/* Responsive adjustments for coming soon banner */
@media (max-width: 768px) {
    .coming-soon-banner {
        padding: 3rem 1rem;
        margin: 0 0.5rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 2rem;
    }
    
    .coming-soon-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-banner {
        padding: 2rem 1rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.5rem;
    }
    
    .coming-soon-description {
            font-size: 1rem;
}

/* WhatsApp Contact Styles */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-btn:focus {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.5);
    color: white;
}

.contact-info-card:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Google Translate Styles */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
    position: relative !important;
}

/* Masquer complètement la barre de traduction Google */
.goog-te-banner-frame {
    display: none !important;
}

.skiptranslate iframe {
    display: none !important;
}

/* Masquer le logo et le gadget Google Translate */
.goog-logo-link, .goog-te-gadget span {
    display: none !important;
}

/* Masquer l'élément de traduction */
#google_translate_element {
    display: none;
}

/* S'assurer que la navbar reste en haut */
.navbar.fixed-top {
    top: 0 !important;
}

/* Fix pour les problèmes d'espace blanc avec Google Translate */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

body.top {
    top: 0 !important;
    position: relative !important;
}

/* Fix pour éviter les décalages */
body.translated {
    top: 0 !important;
    position: relative !important;
}

/* Fix pour les éléments Google Translate cachés */
.goog-te-gadget {
    display: none !important;
}

.goog-te-combo {
    display: none !important;
}

/* Styles pour les boutons de traduction */
.translation-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.translation-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.translation-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.translation-btn.active {
    background: var(--secondary-color);
    transform: scale(1.1);
}

}

/* Responsive pour les boutons de traduction */
@media (max-width: 768px) {
    .translation-buttons {
        right: 10px;
        top: 60%;
    }
    
    .translation-btn {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }
}

/* Fix pour les problèmes de scroll horizontal sur mobile */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

/* Fix pour les éléments qui peuvent dépasser */
.navbar {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar-nav {
    max-width: 100%;
}

.navbar-brand img {
    max-width: 100%;
    height: auto;
}

/* Fix pour les sections */
section {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix pour les cartes */
.card {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix pour les images */
img {
    max-width: 100%;
    height: auto;
}

/* Fix pour les boutons */
.btn {
    max-width: 100%;
    white-space: normal;
}

/* Fix pour les formulaires */
.form-control {
    max-width: 100%;
}

/* Fix pour les tableaux */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Fix pour les textes longs */
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix spécifique pour mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .navbar-toggler {
        margin-right: 0;
    }
    
    .navbar-nav {
        padding-left: 0;
        padding-right: 0;
    }
    
    .nav-link {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix pour les boutons de traduction sur mobile */
    .translation-buttons {
        right: 5px;
        top: 60%;
    }
    
    .translation-btn {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }
    
    /* Fix pour les sections avec padding */
    .py-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .px-4 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Fix pour les marges */
    .mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Fix pour les très petits écrans */
@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .translation-buttons {
        right: 5px;
        top: 65%;
    }
    
    .translation-btn {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Association Detail Cards */
.association-detail-card {
    background: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.association-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.association-detail-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    color: var(--light-color);
    padding: 2rem 1.5rem 1.5rem;
    border: none;
}

.association-detail-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.association-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.association-detail-card .card-body {
    padding: 2rem 1.5rem;
}

.association-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.association-contact {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 25px;
    margin-right: 0.75rem;
    text-align: center;
}

.contact-item span {
    color: var(--dark-color);
    font-weight: 500;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #218838;
    text-decoration: underline;
}

/* CTA Section */
.cta-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Association Cards */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .association-detail-card .card-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .association-detail-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .association-detail-logo {
        width: 60px;
        height: 60px;
    }
    
    .association-name {
        font-size: 1.25rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    /* Introduction Section Responsive */
    .introduction-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .introduction-image {
        height: 350px;
        margin-top: 2rem;
    }
    
    .introduction-stats {
        padding: 1.5rem;
    }
    
    .introduction-features {
        padding: 1rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .association-detail-logo {
        width: 50px;
        height: 50px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    /* Introduction Section Mobile */
    .introduction-image {
        height: 300px;
    }
    
    .introduction-stats {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .overlay-title {
        font-size: 1.25rem;
    }
    
    .overlay-text {
        font-size: 0.9rem;
    }
}
introduction-image
/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-dark { background-color: var(--dark-color) !important; }
.bg-light { background-color: var(--light-color) !important; }
