/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #f4e4c1;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #f4e4c1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(244, 228, 193, 0.2);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #f4e4c1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    color: white;
    padding: 4rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide[data-bg="slide1"] {
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(21, 43, 66, 0.7)), 
                url('https://images.squarespace-cdn.com/content/v1/5955c3ab579fb3900689e1b2/1698118853479-AZ3J0WWJT9IWVB2355Q1/Christ+Baby+small.JPG.jpg?format=1500w');
}

.carousel-slide[data-bg="slide2"] {
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(21, 43, 66, 0.7)), 
                url('https://images.squarespace-cdn.com/content/v1/5955c3ab579fb3900689e1b2/1698118880866-P1K4KEAUW0PLRX8JWEH9/DSC06405.JPG?format=1500w');
}

.carousel-slide[data-bg="slide3"] {
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(21, 43, 66, 0.7)), 
                url('https://images.squarespace-cdn.com/content/v1/5955c3ab579fb3900689e1b2/1698118882934-6HXHRXD40GXMEC7OKY82/DSC06337.JPG?format=1500w');
}

.carousel-slide[data-bg="slide4"] {
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(21, 43, 66, 0.7)), 
                url('https://images.squarespace-cdn.com/content/v1/5955c3ab579fb3900689e1b2/1698118884449-407OEAD5W1E1DL89P75V/DSC06340.JPG?format=1500w');
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(244, 228, 193, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #f4e4c1;
    border-color: #f4e4c1;
}

.indicator:hover {
    background: rgba(244, 228, 193, 0.7);
    border-color: rgba(244, 228, 193, 0.8);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f4e4c1;
    font-weight: 300;
}

.event-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-info h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #f4e4c1;
}

.feedback-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Main Content Sections */
.intro {
    padding: 4rem 0;
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Quick Links Section */
.quick-links {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.quick-links h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #1e3a5f;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.link-card h3 {
    font-size: 1.4rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.link-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #152b42, #1e3a5f);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.gallery-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Social Media Section */
.social-media {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
}

.social-media h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.social-media p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-btn {
    background: #1877f2;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    color: #f4e4c1;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer h3,
.footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #f4e4c1;
    font-weight: 300;
}

.content-section {
    padding: 3rem 0;
    background: white;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: #1e3a5f;
    margin: 1.5rem 0 1rem;
}

.content-section p,
.content-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #1e3a5f;
    text-decoration: none;
}

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

.form-button {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: linear-gradient(135deg, #152b42, #1e3a5f);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 868px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(30, 58, 95, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .event-info h3 {
        font-size: 1rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .event-details {
        padding: 1rem;
    }

    .nav-logo h1 {
        font-size: 1.2rem;
    }

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

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

/* Music Page Specific Styles */
.music-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e3a5f;
    text-align: center;
}

.music-intro h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.registration-info {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.registration-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    border-top: 4px solid #1e3a5f;
}

.registration-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.instruments-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.instrument-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3a5f;
}

.instrument-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.instrument-card ul {
    margin-left: 1rem;
}

.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1e3a5f;
}

.schedule-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.coordinator-info {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.music-ideas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.idea-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #1e3a5f;
}

.idea-category h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.idea-category ul {
    margin-left: 1rem;
}

/* Get Involved Page Specific Styles */
.involvement-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e3a5f;
    text-align: center;
}

.involvement-intro h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.involvement-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #1e3a5f;
    transition: all 0.3s ease;
    overflow: hidden;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.involvement-card:hover .card-image img {
    transform: scale(1.05);
}

.involvement-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.role-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3a5f;
}

.role-category h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.role-category ul {
    margin-left: 1rem;
}

.role-category li {
    margin-bottom: 0.5rem;
}

.schedule-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1e3a5f;
    text-align: center;
}

.schedule-item h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #1e3a5f;
}

.benefit-item h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.call-to-action {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.call-to-action h2 {
    color: white;
    margin-bottom: 1rem;
}

.call-to-action .form-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    margin: 2rem 0;
}

.contact-note {
    margin-top: 1rem;
    opacity: 0.9;
}

.contact-note a {
    color: #f4e4c1;
    text-decoration: none;
}

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

/* Nativity Page Specific Styles */
.nativity-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1e3a5f;
    font-size: 1.1rem;
    line-height: 1.8;
}

.registration-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border-top: 4px solid #1e3a5f;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, #1e3a5f, #152b42);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.important-info {
    margin: 3rem 0;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.info-box.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
}

.info-box.pickup {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-left: 4px solid #17a2b8;
}

.info-box h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info .contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 400px;
    border-left: 4px solid #1e3a5f;
}

.gallery-caption {
    background: rgba(30, 58, 95, 0.9);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

/* About Page Specific Styles */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #1e3a5f;
}

.info-item h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item a {
    color: #1e3a5f;
    text-decoration: none;
}

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

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

.participation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #1e3a5f;
    transition: all 0.3s ease;
}

.participation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.participation-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.participation-card a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 600;
}

.participation-card a:hover {
    text-decoration: underline;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feedback-section {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.feedback-section h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Crafts Page Specific Styles */
.crafts-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e3a5f;
    text-align: center;
}

.crafts-intro h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #1e3a5f;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.activity-card ul {
    text-align: left;
    margin-top: 1rem;
    margin-left: 1rem;
}

.parent-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #1e3a5f;
}

.tip-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

/* Cookies Page Specific Styles */
.cookies-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e3a5f;
    text-align: center;
}

.cookies-intro h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.signup-info {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.signup-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    border-top: 4px solid #1e3a5f;
}

.signup-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

/* Contact Page Specific Styles */
.contact-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1e3a5f;
    text-align: center;
}

.contact-intro h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.coordinators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coordinator-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border-top: 4px solid #1e3a5f;
}

.coordinator-role {
    background: #1e3a5f;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.coordinator-role h3 {
    color: white;
    margin-bottom: 1rem;
}

.coordinator-details {
    padding: 2rem;
}

.coordinator-person h4 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.coordinator-person a {
    color: #1e3a5f;
    text-decoration: none;
}

.coordinator-person a:hover {
    text-decoration: underline;
}

.faq-section {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    border-left: 4px solid #1e3a5f;
}

.faq-item h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.faq-item a {
    color: #1e3a5f;
    text-decoration: none;
}

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

/* Loading states */
.gallery-item img {
    transition: opacity 0.3s ease;
}

.gallery-item img[loading="lazy"] {
    opacity: 0.7;
}

.gallery-item img[loading="lazy"]:loaded {
    opacity: 1;
}
