@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* NAVBAR */
nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    z-index: 10;
    height: 80px;
    font-size: 18px;
    font-weight: 500;
    background-color: white;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li a {
    color: #536942;
    padding: 15px 20px;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ffd936;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: #536942;
    cursor: pointer;
}

.logo {
    max-height: 60px;
    object-fit: contain;
}

/* HERO SECTION */
.hero {
    background-image: url('assets/herobg.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #536942;
    max-width: 80%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

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

/* MOBILE NAVIGATION */
@media (max-width: 900px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    nav ul li a {
        padding: 15px;
        text-align: center;
    }

    .logo {
        max-height: 50px;
    }

    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.2rem; }
}

/* SECTION 2 */
.section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
    gap: 40px;
}

.section-2-content {
    max-width: 50%;
    text-align: center;
}

.section-2-content h2 {
    color: #536942;
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-2-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.learn-more {
    background-color: white;
    color: #536942;
    border: 2px solid #536942;
    padding: 10px 25px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
}

.learn-more:hover {
    background-color: #536942;
    color: white;
}

.about-image {
    max-width: 35%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .section-2 {
        flex-direction: column;
        text-align: center;
    }
    .section-2-content { max-width: 90%; }
    .about-image { max-width: 80%; }
}

/* SERVICES SECTION */
.card-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-heading {
    color: #536942;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    background-color: #ffd936;
    margin: 10px auto 0;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    transition: 0.3s;
    text-align: center;
    min-width: 260px;
}

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

.card-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 160px;
}

.card-subheading {
    color: #536942;
    font-size: 1.4rem;
    margin: 15px 0 10px;
}

.card-text {
    font-size: 1rem;
    color: #333;
}

@media (max-width: 900px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
    }
}

/* SECTION 3 */
.section-3 {
    background-image: url('assets/asset 6.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-3 h2 {
    color: #536942;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.email-link {
    font-size: 1.4rem;
    color: #536942;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .section-3 h2 { font-size: 2.2rem; }
    .email-link { font-size: 1.1rem; }
}

/* FOOTER */
.footer {
    background-color: #536942;
    color: white;
    padding: 25px 0;
    text-align: center;
}

.footer-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #ffd936;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
