/* ================= VARIABLES & RESET ================= */
:root {
    --gold: #d4af37;
    --gold-hover: #b8952e;
    --dark: #2c1a0f;
    --cream: #fffdf8;
    --white: #ffffff;
    --shadow: 0 8px 25px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }

/* ================= HEADER ================= */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--dark); font-size: 20px; font-family: 'Playfair Display', serif; }
.logo img { height: 45px; }
nav a { margin: 0 15px; text-decoration: none; color: var(--dark); font-weight: 500; text-transform: uppercase; font-size: 14px; transition: 0.3s; }
nav a:hover { color: var(--gold); }

/* ================= HERO & SLIDER ================= */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: -2; }
.hero-slider img { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slider img.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4)); z-index: -1; }

.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 20px; max-width: 900px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 6vw, 65px); color: var(--gold); margin-bottom: 15px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.hero h2 { font-size: clamp(18px, 3vw, 26px); margin-bottom: 15px; font-weight: 400; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ================= BUTTONS ================= */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 14px; text-decoration: none; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn.gold { background: var(--gold); color: var(--white); }
.btn.green { background: #25D366; color: var(--white); }
.btn.dark { background: var(--dark); color: var(--white); }
.btn.small { padding: 8px 18px; font-size: 13px; }
.btn.full { width: 100%; text-align: center; border-radius: 8px; margin-top: 15px; }

/* ================= SECTIONS ================= */
.section { padding: 90px 5%; max-width: 1200px; margin: 0 auto; }
.section.bg { background: var(--cream); max-width: 100%; padding: 90px 5%; }
.section h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 40px; color: var(--dark); margin-bottom: 40px; position: relative; }
.section h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 15px auto 0; }
.center { text-align: center; }

/* ================= AMENITIES ================= */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
.amenity-box { background: var(--white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid #f0f0f0; transition: 0.3s; }
.amenity-box:hover { transform: translateY(-5px); border-color: var(--gold); }
.amenity-box i { font-size: 35px; display: block; margin-bottom: 15px; }

/* ================= ROOM CARDS ================= */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; border-bottom: 4px solid var(--gold); }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-info { padding: 25px; text-align: center; }
.card-info h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 10px; }
.card-info p { font-size: 22px; font-weight: 700; color: var(--gold); }

/* ================= GALLERY ================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 30px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: 0.4s; box-shadow: var(--shadow); }
.gallery-grid img:hover { transform: scale(1.05); z-index: 2; border: 3px solid var(--gold); }

/* ================= FOOTER ================= */
footer { background: var(--dark); color: var(--white); text-align: center; padding: 40px 20px; font-size: 15px; margin-top: 50px; }

/* ================= ANIMATIONS ================= */
.section-animate { opacity: 0; transform: translateY(40px); transition: 0.8s ease-out; }
.section-animate.visible { opacity: 1; transform: translateY(0); }

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    header { flex-direction: column; padding: 15px; gap: 15px; }
    nav { display: none; }
    .hero h1 { font-size: 38px; }
    .section { padding: 60px 5%; }
}