/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #fefefe;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #d76d77, #ffaf7b);
    color: white;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: fadeInDown 1s ease-in-out;
}

header h1 {
    text-align: center;
    margin: 0;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #333;
}

/* Container */
.container {
    max-width: 960px;
    margin: auto;
    padding: 1rem;
}

/* Sections */
section {
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #b7ecb1;
}

/* Image */
.image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}
.image:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.4rem;
    }
}
