/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garamond', 'Georgia', serif;
    color: #4a4238;
    line-height: 1.6;
    background-color: #faf8f5;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 248, 245, 0.95);
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c17855;
    letter-spacing: 1px;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #4a4238;
    font-size: 1rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #c17855;
}

/* Footer */
footer {
    background-color: #4a4238;
    color: #f3ede5;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 1rem;
}

footer a {
    color: #c17855;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    margin: 0 1rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}
