* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8f0;
    color: #333;
    transition: background-color 0.5s ease;
}

header {
    background-color: #e07a5f;
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    animation: fadeIn 1s ease-in;
}

.logo {
    width: 80px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 20px;
}

header .slogan {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 1.2rem;
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    display: inline;
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f4f1de;
    text-decoration: underline;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    animation: slideIn 1s ease-in;
}

section {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.about {
    background-color: #f4f1de;
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 2rem;
}

.contact ul {
    list-style: none;
    padding: 0;
}

.contact li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact a {
    color: #3d405b;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.contact form {
    margin-top: 1rem;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.contact input:focus, .contact textarea:focus {
    border-color: #e07a5f;
}

.contact button {
    background-color: #3d405b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #e07a5f;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #3d405b;
    color: white;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
