﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-green: #0b5f58;
    --secondary-green: #33aa9e;
    --light-green: #33aa9e;
    --dark-green: #0b5f58;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--primary-green);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

    .logo i {
        margin-right: 10px;
        color: var(--light-green);
    }

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 30px;
    }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

            nav ul li a:hover {
                color: var(--light-green);
            }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Welcome Section */
.welcome-section {
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.welcome-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.welcome-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .cta-button:hover {
        background-color: var(--light-green);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-green);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-green);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .section-title p {
        max-width: 700px;
        margin: 0 auto;
        color: #666;
        font-size: 1.1rem;
    }

/* Three Boxes Section */
.boxes-section {
    background-color: var(--light-gray);
}

.section-alternate {
    background-color: var(--light-gray);
}

.boxes-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .box:hover {
        transform: translateY(-10px);
    }

    .box i {
        font-size: 2.5rem;
        color: var(--secondary-green);
        margin-bottom: 25px;
    }

    .box h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--dark-green);
    }

    .box p {
        color: #666;
        line-height: 1.7;
    }

/* Photo & Text Sections */
.photo-text-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.photo-text-content {
    flex: 1;
    min-width: 300px;
}

.photo-text-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .photo-text-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .photo-text-image:hover img {
        transform: scale(1.05);
    }

.photo-text-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.photo-text-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Photo Gallery Section */
.gallery-section {
    background-color: var(--light-gray);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* Lightbox Styles - ONLY ADDITION */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .lightbox.active {
        display: flex;
        opacity: 1;
    }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

    .lightbox-close:hover {
        color: var(--light-green);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background-color: var(--secondary-green);
    }

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 0;
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Video Section */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .video-container iframe {
        width: 100%;
        height: 450px;
        display: block;
    }

/* Slider Gallery Section */
.slider-section {
    background-color: var(--light-gray);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    height: 400px;
}

    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .slider-btn:hover {
        background-color: var(--primary-green);
    }

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Bullet Points Section */
.bullet-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.bullet-column {
    flex: 1;
    min-width: 300px;
}

    .bullet-column h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--dark-green);
    }

    .bullet-column ul {
        list-style-type: none;
    }

        .bullet-column ul li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }

            .bullet-column ul li:before {
                content: '\f058';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                color: var(--secondary-green);
                position: absolute;
                left: 0;
                top: 2px;
            }

/* Read More Section */
.read-more-section {
    background-color: var(--light-green);
    color: var(--white);
    text-align: center;
}

.read-more-content {
    max-width: 800px;
    margin: 0 auto;
}

    .read-more-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .read-more-content p {
        margin-bottom: 30px;
        font-size: 1.1rem;
        opacity: 0.9;
    }

.read-more-button {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .read-more-button:hover {
        background-color: var(--light-green);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.tag-text {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    border-radius: 0.50rem;
    border-style: solid;
    border-width: 0rem; 
    padding: 0.15rem 0.50rem;
    margin-top: 0.15rem;
    display: inline-block;
}


/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-contact {
    flex: 1;
    min-width: 300px;
}

    .footer-info h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

        .footer-info h3 i {
            margin-right: 10px;
            color: var(--light-green);
        }

    .footer-info p {
        max-width: 400px;
        line-height: 1.7;
    }

    .footer-contact h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #b4faf3;
    }

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    
}

    .contact-item i {
        margin-right: 15px;
        color: #b4faf3;
        font-size: 1.2rem;
        width: 25px;
    }

    .contact-item span {
        font-size: 1.1rem;
    }

    .contact-item a {
        font-size: 1.1rem;
        text-decoration: none;
        color: var(--white);
    }


.contact-element {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .contact-element i {
        margin-right: 15px;
        color: var(--light-green);
        font-size: 1.2rem;
        width: 25px;
    }

    .contact-element span {
        font-size: 1.1rem;
    }

    .contact-element a {
        font-size: 1.1rem;
        text-decoration: none;
        color: var(--dark-green);
    }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .welcome-content h1 {
        font-size: 2.5rem;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
    }

        nav ul li {
            margin: 10px 0;
        }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .mobile-menu {
        display: none;
    }

        .mobile-menu.active {
            display: block;
            width: 100%;
            margin-top: 15px;
        }

    .welcome-content h1 {
        font-size: 2rem;
    }

    .welcome-content p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .video-container iframe {
        height: 300px;
    }

    .slider-item {
        height: 300px;
    }

    /* Lightbox responsive */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-nav {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .welcome-section {
        padding: 80px 0;
    }

    .box {
        min-width: 100%;
    }

    .photo-text-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 400px) {
    .container {
        width: 95%;
    }

    .welcome-content h1 {
        font-size: 1.8rem;
    }
}

