﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    padding: 15px 20px;
}

    header img {
        max-width: 60px;
        height: auto;
        margin-right: 15px;
    }

    header h1 {
        margin: 0;
        font-size: 1.8em;
        font-weight: 700;
        color: #004d25;
    }

/* Navigation */
nav {
    background: #1b5e20;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

    nav a {
        padding: 14px 20px;
        text-decoration: none;
        color: white;
        font-weight: 600;
        transition: background 0.3s;
    }

        nav a:hover {
            background: #388e3c;
            border-radius: 4px;
        }

/* Hero image */
.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Section */
section {
    margin: 20px auto;
    max-width: 1100px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
}

/* About Us */
.about-text {
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.8;
    font-weight: 600; /* bold text like presentation */
}

    .about-text h2 {
        font-size: 2em;
        font-weight: 700;
        color: #2e7d32;
        margin-bottom: 20px;
        text-align: left;
    }

    .about-text p {
        margin-bottom: 18px;
    }

    .about-text .projects {
        color: #004d25;
    }

    .about-text .tagline {
        font-size: 1.4em;
        color: #1b5e20;
        margin-bottom: 25px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
    }

/* Tab spacing */
.tab {
    display: inline-block;
    width: 40px; /* creates tab space */
}

/* Corner images */
.corner-img {
    position: absolute;
    max-width: 120px;
    border-radius: 8px;
   
}

.top-left {
    top: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2e7d32;
    color: white;
    margin-top: 20px;
}

    footer a {
        color: #ffeb3b;
        text-decoration: none;
    }

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

        header img {
            margin: 0 0 10px 0;
        }

    nav {
        flex-direction: column;
    }

        nav a {
            text-align: center;
            border-top: 1px solid #388e3c;
        }

    .hero-img {
        height: 250px;
    }

    .corner-img {
        position: static;
        max-width: 100%;
        margin: 20px auto;
        display: block;
    }

    .about-text .tagline {
        font-size: 1.2em;
    }
}
/* Tablet view */
@media (max-width: 768px) {
    .corner-img {
        max-width: 100px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .corner-img {
        display: none; /* hide decorative leaves on very small screens */
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.95rem;
    }
}