:root {
    --accent: #c48b76;
    --dark: #2d2d2d;
    --bg: #fffbf9;
    --white: #ffffff;
}

* { margin: 1; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.8;
}

/* Nav Bar - Floating effect */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    letter-spacing: 6px;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 25px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--accent); }

/* Hero - Cinematic Look */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1596755094514-f87e34085b2c?auto=format&fit=crop&w=1500&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top:0; left:0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
}

.hero-content { position: relative; z-index: 1; }

.hero-content h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    margin: 10px 0 20px;
    font-weight: 400;
}

.btn {
    padding: 18px 40px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    transition: 0.5s;
    background: rgba(0,0,0,0.1);
}

.btn:hover {
    background: var(--white);
    color: var(--dark);
}

/* Section Styling */
.section { padding: 120px 10%; text-align: center; }
.divider { width: 50px; height: 1px; background: var(--accent); margin: 20px auto; }

/* Grid Items - Clean & Modern */
.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
}

.grid-item {
    padding: 80px 40px;
    text-align: center;
    border: 0.5px solid #f4f4f4;
    transition: 0.4s;
}

.grid-item:hover {
    background: #fdfaf8;
    box-shadow: inset 0 0 20px rgba(196, 139, 118, 0.05);
}

.grid-item.highlight { background: #faf5f2; }

.icon {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

/* Reviews */
.reviews { padding: 100px 10%; text-align: center; background: var(--bg); }
.review-box { max-width: 600px; margin: 40px auto; }
.italic { font-style: italic; font-size: 1.4rem; color: #555; }
.author { display: block; margin-top: 15px; letter-spacing: 2px; font-size: 12px; }

/* Language Toggle */
.lang-toggle {
    background: var(--accent);
    color: white;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
}

footer {
    padding: 60px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    border-top: 1px solid #eee;
    background: var(--white);
}

.socials { margin-top: 20px; }
.socials a { color: var(--accent); margin: 0 15px; text-decoration: none; }

@media (max-width: 768px) {
    .grid-section { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
}