:root {
--gold: #c5a059;
--dark: #121212;
--light: #f9f9f9;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: var(--light);
color: var(--dark);
transition: all 0.4s ease;
}
h1, h2, h3 { 
font-family: 'Playfair Display', serif; 
font-weight: 400; 
}
header {
position: sticky; 
top: 0; 
z-index: 1000;
background: rgba(255, 255, 255, 0.9); 
backdrop-filter: blur(10px);
padding: 30px 60px; 
display: flex; 
justify-content: space-between; 
align-items: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.logo { 
font-size: 1.5rem; 
letter-spacing: 2px; 
text-transform: uppercase; 
font-weight: 600; 
}
nav a { 
margin-left: 25px; 
text-decoration: none; 
color: var(--dark); 
font-size: 12px; 
letter-spacing: 1px; 
text-transform: uppercase; 
opacity: 0.7; 
transition: 0.3s; 
}
nav a:hover { 
opacity: 1; 
color: var(--gold); 
}
.lang-toggle a { 
color: var(--gold); 
font-weight: bold; 
padding: 0 5px; 
}
.hero { 
height: 80vh; 
background-size: cover; 
background-position: center; 
display: flex; 
align-items: center; 
padding: 0 10%; 
color: white; 
position: relative; 
}
.hero::after { 
content: ''; 
position: absolute; 
inset: 0; 
background: rgba(0,0,0,0.3); 
}
.hero div { 
z-index: 2; 
}
.hero h1 { 
font-size: 5rem; 
margin: 0; 
}
.section { 
padding: 120px 10%; 
}
.grid-2 { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 80px; 
align-items: center; 
}
.gallery { 
display: grid; 
grid-template-columns: repeat(3, 1fr); 
gap: 15px; 
}
.gallery img { 
width: 100%; 
height: 500px; 
object-fit: cover; 
filter: grayscale(100%); 
transition: 0.6s; 
}
.gallery img:hover { 
filter: grayscale(0%); 
transform: scale(1.02); 
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card { 
padding: 40px; 
border: 1px solid #eee; 
background: #fff; 
transition: 0.3s; 
}
.card:hover { 
border-color: var(--gold); 
}
footer { 
background: var(--dark); 
color: #fff; 
padding: 80px 10%; 
text-align: center; 
}