@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Satisfy&display=swap');
/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #3D2314;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Section transition animation */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satisfy', cursive;
    line-height: 1.2;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}
/* Section Styling */
section {
    padding: 5rem 1rem;
    min-height: 100vh;
}
/* Button Styling */
.btn-primary {
    background-color: #E8DDD4;
    color: #3D2314;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #F5E6D3;
    transform: translateY(-2px);
}

/* Form Elements */
input, textarea, select {
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #E8DDD4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus {
    outline: 2px solid #3D2314;
    outline-offset: 2px;
}