/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5530;
    text-decoration: none;
}

.nav__menu {
    display: flex;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav__link:hover,
    .nav__link--active {
        color: #2c5530;
    }

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .nav__toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

/* Footer */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.85);
    padding: .25rem 0;
    text-align: center;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__text {
    color: #ccc;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: #ccc;
    transition: color 0.3s ease;
}

    .footer__social-link:hover {
        color: #4a7c59;
    }

/* Mobile Styles */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        font-size: 1.2rem;
    }

        .nav__menu.menu--open {
            right: 0;
        }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

        .nav__toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .nav__toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav__toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

    .footer__content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
}

