:root {
    --gold: #D4AF37;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray: #f4f4f4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* Header */
header {
    background: var(--black);
    color: var(--gold);
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li { margin: 0 15px; }

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/28.jpg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h1 { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* Sections */
.container { width: 90%; max-width: 1200px; margin: auto; }
.seo-section { padding: 50px 0; border-bottom: 1px solid #ddd; }
.bg-light { background: var(--gray); padding: 50px 20px; border-radius: 10px; }

h2 { color: var(--black); border-right: 5px solid var(--gold); padding-right: 15px; margin-bottom: 20px; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.grid img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: white; padding: 15px; border: 1px solid #ddd; text-align: center; border-radius: 8px; }
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; }

/* Form */
.booking-section { background: var(--black); color: white; padding: 40px; border-radius: 10px; margin: 40px 0; }
.booking-section h2 { color: var(--gold); }
form input, form textarea {
    width: 100%; padding: 12px; margin: 10px 0; border: 1px solid var(--gold); background: #333; color: white;
}
form button {
    background: var(--gold); color: black; border: none; padding: 15px 40px; cursor: pointer; font-weight: bold;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 20px; left: 20px; width: 60px; height: 60px; z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
}
