/* Base Styles */
body {
    background-color: #e6f3e6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Feature Icons */
.feature-icon {
    color: #2d7a2d;
    margin-right: 10px;
}

/* Hero Section Styling */
.serengeti-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.serengeti-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Header Animation */
header {
    transition: all 0.3s ease;
}

header.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button Styling */
.btn-green {
    background-color: #2d7a2d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: #1f5c1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Mobile Menu Animation */
#mobile-nav {
    transition: max-height 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .serengeti-hero {
        height: 70vh;
    }
}

@media (max-width: 640px) {
    .serengeti-hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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