:root {
    --primary-color: #2E7D32;
    /* Forest Green - Confirmed usage */
    --primary-dark: #1B5E20;
    --secondary-color: #81C784;
    --accent-color: #CDDC39;
    /* Lime accent seen on some nature sites */
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #f8f9fa;
    --font-main: 'Nunito', sans-serif;
    /* Updated font */
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

.separator-left {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    /* Rounded pill buttons */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-transparent {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
    margin-left: 15px;
}

.btn-transparent:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
}



/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 0;
    width: auto;
}

.logo img:first-child {
    transform: translateY(-5px);
}

.logo h1 {
    font-size: 1.8rem;
    color: #222;
    margin: 0;
    line-height: 1;
}

.logo span.highlight {
    color: var(--primary-color);
}

.desktop-nav ul {
    display: flex;
    align-items: center;
}

.desktop-nav>ul>li {
    margin-left: 30px;
    position: relative;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: #444;
    padding: 10px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary-color);
}

/* Desktop Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    z-index: 1001;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
    /* Slight nudge effect */
}


/* Hero Section */
.hero-section {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    /* Ensure slides don't overflow */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: #fff;
}

.dot:hover {
    background-color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-image-wrapper {
    overflow: hidden;
    height: 220px;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image {
    transform: scale(1.1);
    /* Zoom effect */
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover i {
    margin-left: 10px;
}

/* About Section */
.about-preview {
    background-color: #fff;
    position: relative;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.sub-heading {
    display: block;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Image Stack for About */
.about-image-stack {
    flex: 1;
    position: relative;
    height: 400px;
}

.img-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.img-back {
    position: absolute;
    top: -20px;
    right: 0;
    width: 90%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.2;
    border-radius: 8px;
    z-index: 1;
}

/* Footer */
/* Footer Redesign */
.main-footer {
    background-color: var(--primary-dark);
    /* Deep Green */
    color: #fff;
    padding-top: 70px;
    padding-bottom: 30px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    border: none;
}

/* Removing previous underline style */
.footer-col h3::after {
    display: none;
}

.footer-col p {
    color: #eee;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #eee;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
    /* Removed padding-left nudge for this design */
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    margin-right: 20px;
    /* Spaced out */
    font-size: 1.2rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.contact-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #ffcccc;
    /* Light red/pink for labels */
}

.contact-col p {
    margin-bottom: 20px;
}

/* Footer Bottom */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center vertically */
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer-logo-text i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #ddd;
}

.footer-copyright a {
    color: #ddd;
    text-decoration: underline;
}

/* Footer Logo Styling */
.footer-logo-text img {
    height: 40px;
    margin-right: 15px;
}

.footer-logo-text h1 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.footer-logo-text .highlight {
    color: var(--secondary-color);
}

.btn-footer {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-footer:hover {
    background: #fff;
    color: #630a0a;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Menu Overlay & Sidebar */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1200;
    padding: 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.mobile-nav-list>li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.mobile-dropdown-menu {
    display: none;
    background: #f9f9f9;
    padding: 0 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu a {
    font-size: 1rem;
    font-weight: 400;
    padding: 12px 0;
    color: #666;
}

.arrow {
    transition: var(--transition);
}

.mobile-dropdown-trigger.active .arrow {
    transform: rotate(180deg);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: #333;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .flex-row {
        flex-direction: column;
    }

    .about-image-stack {
        width: 100%;
        height: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-transparent {
        margin-left: 0;
    }
}

/* Desktop Info Sidebar Styles */
.desktop-menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 30px;
    color: #333;
}

/* Explicitly handle toggles visibility */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .desktop-menu-toggle {
        display: none !important;
    }
}

.info-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 50px 40px;
    overflow-y: auto;
}

.info-sidebar.active {
    right: 0;
}

.info-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(2px);
}

.info-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-info-sidebar {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-info-sidebar:hover {
    color: #333;
}

.info-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-logo img {
    height: 45px;
    margin-right: 15px;
}

.info-logo h2 {
    font-size: 1.6rem;
    margin: 0;
    color: #222;
}

.info-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.info-section {
    margin-bottom: 35px;
}

.info-section h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.info-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.info-section a:hover {
    color: var(--primary-color);
}

.info-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.info-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s;
}

.info-social a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}