:root {
    --bg: #F4F1EE;
    --dark: #1A1A1A;
    --text-gray: #656565;
    --accent: #928471;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--dark);
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    z-index: 10;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark);
}

/* --- Footer --- */
footer {
    background-color: var(--bg);
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    padding: 80px 10% 40px;
    width: 100%;
}

.footer-legal__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-col a:hover {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(26, 26, 26, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 5% 30px;
    }
    
    .footer-legal__inner {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer-col {
        min-width: 100%;
    }
}

/* --- Language Dropdown --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark);
    cursor: pointer;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.lang-btn:hover {
    background-color: rgba(26, 26, 26, 0.05);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--bg);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 4px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    overflow: hidden;
}

.lang-dropdown-content a {
    color: var(--dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.lang-dropdown-content a:hover {
    background-color: rgba(26, 26, 26, 0.05);
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}
