* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo span { color: #b08d57; } /* Gold/Wood Accent */

#lang-btn {
    background: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}

/* Hero Section with Responsive Background */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Mobile Background Adjustment */
@media (max-width: 768px) {
    .hero {
        background: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=600&q=80') no-repeat center center/cover;
        height: 60vh;
    }
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.btn-primary {
    background: #b08d57;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #8e7146;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 10%;
    background: #fdfcfb;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card .icon { font-size: 40px; margin-bottom: 15px; }

.reviews {
    padding: 60px 10%;
    background: #fff;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-item {
    padding: 20px;
    border-left: 4px solid #b08d57;
    background: #f9f9f9;
    font-style: italic;
}

footer {
    padding: 30px;
    text-align: center;
    background: #333;
    color: #aaa;
    font-size: 14px;
}