/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============= GLOBAL STYLES ============= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* ============= HEADER STYLES ============= */
.site-header {
    background-color: #f8faf6;
    border-bottom: 2px solid #51a325;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-out;
    transform: translateY(0);
}

.site-header.hide-header {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #234d2c;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 170px;
    height: 75px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-section:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #234d2c;
    display: none;
}

.logo-text strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #51a325;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: #234d2c;
    font-size: 26px;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.hamburger-menu:hover {
    color: #51a325;
}

.hamburger-menu.active {
    color: #51a325;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: static;
    flex-direction: row;
    width: auto;
    background: transparent;
    border: none;
    top: auto;
    z-index: auto;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #234d2c;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: #51a325;
    border-bottom-color: #51a325;
}

.nav-menu a.active {
    color: #51a325;
    border-bottom-color: #51a325;
    font-weight: 600;
}

/* ============= HERO SECTION ============= */
.hero-section {
    margin-top: 0;
    padding-top: 0;
    padding: 60px 40px 80px;
    margin-bottom: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-title-slide {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-description-fade {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background-color: #51a325;
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #51a325;
    margin-top: 20px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #3d7a1d;
    border-color: #3d7a1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 163, 37, 0.3);
}

/* .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    justify-items: center;
    text-align: center !important;
    place-items: center !important;
} */

/* REPLACE WITH */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    justify-items: center;
    text-align: center !important;
    place-items: center !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 350px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C0FC9E;
    line-height: 1;
}

.hero-stat-label {
    font-size: 1rem;
    color: #fff;
    margin-top: 8px;
    font-weight: 500;
}

/* ============= FOOTER STYLES ============= */
.site-footer {
    background-color: #ffffff;
    color: #234d2c;
    padding: 30px 20px;
    margin-top: 0px;
    border-top: 1px solid #234d2c;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.footer-left a {
    color: #51a325;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-left a:hover {
    color: #234d2c;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: #51a325;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e8e8e8;
}

.social-link:hover {
    background-color: #51a325;
    color: white;
    transform: translateY(-2px);
    border-color: #51a325;
    box-shadow: 0 4px 12px rgba(81, 163, 37, 0.15);
}

.footer-right {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-right a {
    color: #234d2c;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    letter-spacing: 0.3px;
}

.footer-right a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #51a325;
    transition: width 0.3s ease;
}

.footer-right a:hover {
    color: #51a325;
}

.footer-right a:hover::after {
    width: 100%;
}
