/* Root colors */
:root {
    --background: #FFF4E1;
    --text: #3E2C23;
    --accent: #D2691E;
    --highlight: #B22222;
}

/* General */
body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background: linear-gradient(to bottom, #FFDAB9, #D2691E);
    color: var(--text);
    overflow-x: hidden;
}

/* Header */
header {
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    color: var(--accent);
}

header p {
    font-size: 1.2em;
}

/* Sections */
.welcome-box, .gallery {
    background-color: #FFF8F0;
    border-radius: 15px;
    margin: 30px auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
    color: var(--highlight);
}

/* Gallery Images */
.gallery .images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 150px;
    border-radius: 10px;
    border: 2px solid var(--accent);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    background-color: #D2691E;
    color: #FFF4E1;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--highlight);
    text-decoration: underline;
}

/* Falling Leaves */
@keyframes fall {
    0% { transform: translateY(-50px) rotate(0deg); }
    100% { transform: translateY(600px) rotate(360deg); }
}

.leaf {
    position: absolute;
    width: 50px;
    top: -50px;
    animation: fall 8s linear infinite;
}

.leaf1 { left: 10%; animation-delay: 0s; }
.leaf2 { left: 50%; animation-delay: 2s; }
.leaf3 { left: 80%; animation-delay: 4s; }