﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    background: #fff;
    color: #000;
    position: relative;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        color: #283e62;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
    }
.active {
    color: #1d87c6 !important;
}


.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 1000;
    color: #283e62;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #283e62;
        position: absolute;
        top: 90%;
        right: 0;
        width: 100%;
        text-align: center;
    }
        .nav-links a {
            color:#fff;
        }

        .nav-links li {
            margin: 10px 0;
        }

        .nav-links.active {
            display: flex;
        }

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.home-hero {
    background: url('img/header.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
}

    h1 {
        font-size: 48px;
    }

h2 {
    font-size: 32px;
    line-height: 1.2;
}
h1 {
    line-height: 1.2;
}
section.home-logos h2 {
    padding-bottom: 15px;
}

.home-hero-text {
    color: #fff;
    width: 50%;
}
    .home-hero-text p {
        width:50%;
    }

    /* Content Sections */
    .home-content {
        padding: 50px 100px 0px 100px;
    }

.home-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f6f6;
}


.home-text {
    flex: 1;
    padding: 20px;
    width:50%;
    text-align:center;
}
.home-image {
    width: 50%;
}

.home-image img {
    max-width: 100%;
    height: auto;
}

/* Contact Section */
.home-contact {
    text-align: center;
    padding: 50px;
    background: #283e62;
    margin-top: 50px;
    color: #fff;
}

.home-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 20px;
    background: #1d87c6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.home-logos-container img {
    width: 200px;
}
/* Logos Section */
.home-logos {
    text-align: center;
    padding: 50px;
}

.home-logos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom:25px;
    margin-top:25px;
}

/* Footer */
.home-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eceeef;
    color: #333;
    padding: 20px;
    font-size: 14px;
    background: #eceeef;
    color: #333;
    padding: 40px 100px;
    font-size: 14px;
    border-bottom: 1px solid #d1d1d1;
}


.home-footer-container {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}


.home-footer-logo img {
    height: 50px;
    max-width: 100%; 
}


.home-footer-name,
.home-footer-address,
.home-footer-contact {
    text-align: left;
    min-width: 150px; 
}

   
    .home-footer-contact a {
        color: #333;
        text-decoration: none;
    }

        .home-footer-contact a:hover {
            text-decoration: underline;
        }


.home-footer-bottom {
    background: #eceeef;
    text-align: left;
    padding: 40px 100px;
    font-size: 14px;
}

    .home-footer-bottom a {
        color: #007bff;
        text-decoration: none;
    }

        .home-footer-bottom a:hover {
            text-decoration: underline;
        }


/*Activities Page*/
.activities-hero {
    background: url(img/activities-hero.jpg) no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
}
section.activities-section-one {
    background: url('img/activities-one.jpg') no-repeat center center;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
    color: #fff;
}
section.activities-section-two {
    background: url('img/activities-two.jpg') no-repeat center center;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
    color: #fff;
}
section.activities-section-three {
    background: url('img/activities-three.jpg') no-repeat center center;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
    color: #fff;
}
section.activities-section-four {
    background: url('img/activities-four.jpg') no-repeat center center;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
    color: #fff;
}
    .activities-sec h2 {
    text-align: center;
    padding: 80px 0px 50px 0px;
}
.activities-sec h2 {
    text-align: center;
    margin:0 auto;
    display:block;
    padding: 100px 0px 50px 0px;
}
h2.activities-title {
    padding: 0px;
}


section.gallery-sec {
    padding-bottom: 100px;
    text-align: center;
}

    section.gallery-sec h2 {
        text-align: center;
        padding: 100px 0px 50px 0px;
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1000px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

    .gallery img {
        width: 100%;
        height: auto;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .lightbox img {
        max-width: 90%;
        max-height: 80%;
    }

    .lightbox.visible {
        visibility: visible;
        opacity: 1;
    }

    .lightbox .prev, .lightbox .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: white;
        cursor: pointer;
        padding: 10px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
    }

    .lightbox .prev {
        left: 10px;
    }

    .lightbox .next {
        right: 10px;
    }

    .lightbox .close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        background: none;
        border: none;
    }



.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    margin:0 auto;
    padding-bottom:100px;
}

.card {
    flex: 1 1 300px;
    max-width: 400px;
}

    .card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

@media (max-width: 800px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}
.cards h2 {
    padding: 100px 0px 50px 0px;
    text-align: center;
}

.contact-hero {
    background: url(img/contact-hero.jpg) no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 100px;
}






form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover {
        background-color: #0056b3;
    }




.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-form, .contact-info {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

    /* Heading styling */
    .contact-form h3, .contact-info h3 {
        text-align: center;
        margin-bottom: 15px;
    }

    /* Form styling */
    .contact-form label {
        font-weight: bold;
        margin-top: 10px;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .contact-form button {
        width: 100%;
        padding: 10px;
        background-color: #283e62;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 15px;
    }

        .contact-form button:hover {
            background-color: #182c4b;
        }

#response-message {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

/* Contact info styling */
.contact-info p {
    margin: 5px 0;
}



@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size:22px;
        padding-bottom:15px;
    }
    .home-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .home-footer {
        display: block;
    }

    .home-footer-name,
    .home-footer-address,
    .home-footer-contact {
        text-align: center;
    }

    .home-footer {
        padding: 30px 20px;
    }

    .home-footer-bottom {
        padding: 15px 20px;
        text-align: center;
    }

    .activ {
        padding: 0px 20px 0px 20px !important;
    }

    .activities-hero {
        padding: 0px 20px 0px 20px;
    }
    .nav {
        padding: 20px 40px;
    }
    .home-hero {
        padding: 20px 40px;
    }
    .home-hero-text {
        width: 100%;
    }
    .home-section {
        display:block; 
    }
    .home-content {
        padding: 50px 40px 0px 40px;
    }
    .home-text {
        width: 100%;
        padding:30px;
    }
    .home-image {
        width: 100%;
    }
    .home-hero-text p {
        width: 100%;
    }
    .gallery img {
        padding: 0px 20px 0px 20px;
    }
    .cards h2 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .contact-hero {
        padding: 0px 20px 0px 20px;
    }
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form, .contact-info {
        width: 100%;
        max-width: none;
    }

}

@media (max-width: 480px) {
    .contact-form input, .contact-form textarea {
        font-size: 14px;
    }

    .contact-form button {
        font-size: 14px;
    }
}