/* Base Styles & Reset */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7;
    color: #162f18;
}

/* Geometric Background Shapes */
.geo-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.shape-circle-1 {
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 125, 72, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.shape-circle-2 {
    bottom: 15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 228, 217, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: -5s;
}

.shape-square {
    top: 40%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: rgba(45, 96, 49, 0.05);
    transform: rotate(45deg);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Mobile Menu Animations */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

#bar1.active {
    transform: rotate(45deg) translate(5px, 5px);
}

#bar2.active {
    opacity: 0;
}

#bar3.active {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #98c49a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #447d48;
}

/* Image Hover Effects */
img {
    transition: transform 0.3s ease;
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(68, 125, 72, 0.2);
}
