﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}


header {
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    nav a {
        color: #006400;
        font-size: 0.95rem;
        font-weight: 400; 
        text-decoration: none;
        padding: 0.4rem 0.6rem;
        transition: all 0.2s ease;
    }

        nav a:hover {
            color: #f47c20;
        }

        nav a.active {
            color: #008c45;
            font-weight: 500;
            border-bottom: 2px solid #008c45;
            padding-bottom: 2px;
        }

.btn-appointment {
    margin-left: 0.5rem;
    background: #008c45;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 15px 0 15px 0 !important;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s;
    text-decoration: none !important;
    text-transform: none;
}

    .btn-appointment:hover {
        background: #006d36;
        border-radius: 15px 0 15px 0 !important;
    }

.site-footer {
    background: #0e1c11;
    color: #fff;
    padding: 3rem 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h2 {
    color: #00a651;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-column p,
.footer-column a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
}

    .footer-column a:hover {
        text-decoration: underline;
    }

.footer-container .footer-column:nth-child(2) {
    padding-left: 25rem;
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0.5rem;
    }
    nav {
        margin-top: 0.8rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    nav a,
    .btn-appointment {
        margin-left: 0;
        margin-right: 1rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    .footer-container .footer-column:nth-child(2) {
        padding-left: 5rem;
    }
}
@media (max-width: 600px) {
    .header-container {
        padding: 0.5rem 0.2rem;
    }
    .logo img {
        height: 36px;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    nav a,
    .btn-appointment {
        width: 100%;
        margin: 0.2rem 0 0.2rem 0;
        text-align: left;
    }
    .site-footer {
        padding: 1.5rem 0.5rem;
    }
    .footer-column h2 {
        font-size: 1.1rem;
    }
    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-container .footer-column:nth-child(2) {
        padding-left: 0;
    }
}
