/* Fonts & Base */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f7f5f2;
    color: #222;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(30, 20, 15, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header h1 {
    color: #fff;
    font-size: 1.4rem;
}

.header nav a {
    color: #ddd;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.header nav a:hover {
    color: #fff;
}

.nav-btn {
    padding: 6px 12px;
    border: 1px solid #fff;
    border-radius: 5px;
}

/* Hero */
.hero {
    background: url('https://images.unsplash.com/photo-1513885535751-8b9238bd345a?q=80') center/cover no-repeat;
    height: 80vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #c8a97e;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e0c39c;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.alt {
    background: #eee7de;
}

/* Cards */
.cards {
    display: flex;
    gap: 2rem;
}

.card {
    flex: 1;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* Pricing */
.pricing {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-card span {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
}

.featured {
    background: #c8a97e;
    color: #000;
    transform: scale(1.05);
}

/* Booking */
.booking-form {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}

.booking-form input,
.booking-form button {
    padding: 12px;
    border-radius: 8px;
    border: none;
}

.booking-form input {
    flex: 1;
}

.booking-form button {
    background: #3e2f23;
    color: #fff;
    cursor: pointer;
}

.success {
    color: green;
}

/* Footer */
.footer {
    background: #1e1410;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
    .cards, .pricing {
        flex-direction: column;
    }

    .booking-form {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .nav-wrap {
        flex-direction: column;
    }

    .header nav {
        margin-top: 10px;
    }
}