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

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.3rem;
    color: #1a5276;
    font-weight: 700;
}

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

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav ul li a:hover {
    color: #1a5276;
}

.nav ul li a.btn-contact {
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}

.nav ul li a.btn-contact:hover {
    background: linear-gradient(135deg, #154360, #1a5276);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    height: 100vh;
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 50%, #3498db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero.jpg') center/cover;
    opacity: 0.15;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #1a5276;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #f8f9fa;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 30px;
}

.about-content h3 {
    font-size: 1.3rem;
    color: #1a5276;
    margin-bottom: 15px;
    margin-top: 25px;
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Services Section */
.services {
    padding: 100px 20px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 60px;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26,82,118,0.15);
    border-color: #1a5276;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1a5276;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: 60px 20px;
    background: #1a5276;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Events Section */
.events {
    padding: 100px 20px;
    background: #f8f9fa;
}

.events h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 60px;
}

.events-content {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.events-list {
    flex: 1.2;
}

.involvement {
    flex: 1;
}

.events-list h3, .involvement h3 {
    color: #1a5276;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.event-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.event-date-box {
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date-box .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-date-box .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.event-details h4 {
    color: #1a5276;
    margin-bottom: 5px;
}

.event-details p {
    color: #666;
    font-size: 0.9rem;
}

.involvement ul {
    list-style: none;
}

.involvement ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #eee;
}

.involvement ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5276;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a5276, #154360);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-info h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-info .email-large {
    font-size: 1.3rem;
    margin-top: 20px;
}

.footer-info .email-large a {
    color: #85c1e9;
    text-decoration: none;
}

.footer-info .email-large a:hover {
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    width: 100%;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-content.thank-you {
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    color: #1a5276;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5276;
}

.modal .btn-primary {
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: #fff;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
    }

    .events-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav.show {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

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

    .logo h1 {
        font-size: 1rem;
    }
}
