:root {
    --gold: #d4a373;
    --dark: #121212;
    --light: #f9f9f9;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--light); color: var(--dark); line-height: 1.6; }

.top-bar {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 8px 5%;
    font-size: 0.85rem;
    font-weight: 600;
}

header { background: var(--dark); padding: 1rem 5%; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: bold; }
.logo span { color: var(--gold); }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li a { color: var(--white); text-decoration: none; margin-left: 20px; font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover { color: var(--gold); }
.nav-social i { font-size: 1.2rem; color: var(--gold); margin-left: 15px; }

.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/index.png') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 10px; }
.btn-main { display: inline-block; background: var(--gold); color: var(--white); padding: 14px 35px; text-decoration: none; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; margin-top: 20px; }
.btn-main:hover { background: #c29262; transform: translateY(-2px); }

.container { padding: 80px 10%; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 40px; }

.pricing-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.price-card { background: var(--white); padding: 40px; border-radius: 20px; text-align: center; width: 300px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); position: relative; }
.price-card.featured { border: 2px solid var(--gold); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; text-transform: uppercase; }
.price { font-size: 3rem; font-weight: bold; margin: 15px 0; }
.btn-pay { display: block; background: var(--dark); color: var(--white); padding: 10px; text-decoration: none; border-radius: 5px; margin-top: 20px; transition: 0.3s; }

.calendar-wrapper, .map-container { background: white; padding: 10px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; }

.contact-form-wrapper { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 15px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; width: 100%; }

footer { background: var(--dark); color: white; padding: 60px 20px; text-align: center; }
.social-links a { color: var(--gold); font-size: 2.5rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .container { padding: 40px 5%; }
    nav { flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav ul li a { margin: 0 5px; font-size: 0.8rem; }
}