/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background-color: #128a1d;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-header .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.top-header .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    height: 80px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #128a1d;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #128a1d;
}

/* Mobile Navigation */
.mobile-nav-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
}

.mobile-nav-open ul {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
}

.mobile-nav-open li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-open li:last-child {
    border-bottom: none;
}

.mobile-nav-open a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-open a:hover {
    color: #128a1d;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}

.mobile-menu-toggle:hover {
    color: #128a1d;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 590px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.slide-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 18px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.slider-container:hover .slider-nav {
    opacity: 1;
    visibility: visible;
}

.slider-nav:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-features .feature-item {
    margin-bottom: 40px;
    text-align: center;
}

.hero-features .feature-item h4 {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-features .feature-item h3 {
    color: #128a1d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-features-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.hero-features-bottom .feature-item h4 {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-features-bottom .feature-item h3 {
    color: #128a1d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    width: 260px;
    background: #fff;
    border: 1px solid #d33;
    border-radius: 12px;
    padding: 80px 20px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-box img {
    width: 90px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.feature-box p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

.feature {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature .icon img {
    max-width: 50%;
    height: auto;
}

.feature .title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature .subtitle {
    color: #128a1d;
    font-size: 16px;
    line-height: 1.5;
}

.bg-red { background-color: #ffebee; }
.bg-orange { background-color: #fff3e0; }
.bg-yellow { background-color: #fff8e1; }

/* News Section */
.news-section {
    padding: 40px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #128a1d;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #128a1d;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.news-content h3 a {
    text-decoration: none;
    color: #128a1d;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #00c8ff;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f7860b 0%, #f7860b 100%);
    color: white;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.registration-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.registration-form:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.registration-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-group input::placeholder {
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff7a4a 0%, #f06b3b 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    width: 100%;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
 
  
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-slide {
    display: none;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border-left: 4px solid #128a1d;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    display: flex;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.testimonials-slider:hover .testimonial-nav {
    opacity: 1;
    visibility: visible;
}

.testimonial-nav:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -20px;
}

.testimonial-nav.next {
    right: -20px;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: white;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(255,255,255,0.8);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border-left: 4px solid #128a1d;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 200px;
}

.testimonial-slide .testimonial-author {
    width: auto;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.rating {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center;
}

.rating i {
    color: #ffd700;
    font-size: 14px;
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.activity-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-item h4 {
    padding: 20px 15px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.activity-item p {
    padding: 0 15px 20px;
    color: #666;
    font-size: 14px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #f7860b 0%, #f7860b 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.footer-section .contact-info i {
    color: #fff;
    width: 16px;
    font-size: 16px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info i {
    color: #fff;
    width: 16px;
    font-size: 16px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-column {
    text-align: left;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.facebook-iframe,
.google-map {
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.facebook-iframe:hover,
.google-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.facebook-iframe iframe,
.google-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .slide-content {
        padding: 30px 20px 20px;
    }
    
    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-features-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Stack testimonials on mobile */
    .testimonial {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-author {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
    
    /* Testimonials slider mobile */
    .testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
    }
    
    .testimonial-nav.prev {
        left: -15px;
    }
    
    .testimonial-nav.next {
        right: -15px;
    }
    
    .testimonial-slide {
        padding: 20px;
    }
    
    .testimonial-slide .testimonial-author {
        margin-bottom: 15px;
    }
    /* 2 columns on tablets for features */
    .features-container {
        gap: 20px;
    }
    
    .feature-box {
        width: 240px;
    }
    
    .top-header .contact-info {
        justify-content: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Footer responsive */
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .facebook-iframe,
    .google-map {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    
    .news-section,
    .registration-section,
    .activities-section {
        padding: 40px 0;
    }
    
    .registration-form {
        padding: 25px;
    }
    
    .top-header .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    /* Mobile responsive for features */
    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .feature-box {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-section {
        height: 140px;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
        opacity: 1;
        visibility: visible;
    }
}

/* Album Styles */
.page-header {
    background: linear-gradient(135deg, #128a1d, #2c5aa0);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.albums-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.album-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.album-cover {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-cover .no-image {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 48px;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.view-album-btn {
    background: white;
    color: #2c5aa0;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.view-album-btn:hover {
    background: #2c5aa0;
    color: white;
    transform: scale(1.05);
}

.album-info {
    padding: 25px;
}

.album-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.album-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.album-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.no-albums {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-albums i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-albums h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.activities-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background: #2c5aa0;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #1e3d72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Album Detail Styles */
.album-detail-section {
    padding-bottom: 40px;
    background-color: #f8f9fa;
}

.album-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.image-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-caption {
    padding: 15px;
}

.image-caption h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.image-caption p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.no-images {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-images i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-images h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    position: relative;
    text-align: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    max-width: 500px;
}

.lightbox-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 14px;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    opacity: 0.8;
}

.section-about {
    background: linear-gradient(135deg, #eafae0, #f4fdf0);
    padding: 80px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .section-about .content {
    flex: 1 1 50%;
  }
  
  .section-about h2 {
    font-size: 28px;
    color: #128a1d;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-about h3 {
    font-size: 22px;
    color: #009e0f;
    margin-bottom: 10px;
  }
  
  .section-about p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  
  .section-about .images {
    flex: 1 1 45%;
    position: relative;
  }
  
  .section-about .images img {
    width: 100%;
    border-radius: 60px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .section-about .images img:first-child {
    position: absolute;
    top: -60px;
    right: 0;
    width: 85%;
    border-radius: 120px 120px 0 0;
  }
  
  .section-about .images img:last-child {
    margin-top: 180px;
    border-radius: 120px 0 120px 120px;
  }.faq-section {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .faq-section h2 {
    color: #f7f227;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
  }
  
  .faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    cursor: pointer;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    color: #333;
  }
  
  .faq-question:hover {
    background: #f8f8f8;
  }
  
  .faq-answer {
    padding: 0 24px 18px;
    display: none;
    color: #555;
    line-height: 1.7;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .arrow {
    color: #c41e1e;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .arrow {
    transform: rotate(180deg);
  }



/* Album Responsive */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .album-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .lightbox-caption {
        bottom: -80px;
    }
}

@media (max-width: 900px) {
    .section-about {
      flex-direction: column;
      padding: 60px 20px;
    }
    .section-about .images img:first-child {
      position: relative;
      top: 0;
      margin-bottom: 30px;
    }
    .section-about .images img:last-child {
      margin-top: 0;
    }
  }

