/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #2d2d2d; background: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --teal: #2a9d8f;
  --teal-dark: #21867a;
  --teal-light: #e8f7f5;
  --gold: #e9c46a;
  --dark: #1a1a1a;
  --text: #444;
  --text-light: #777;
  --bg-warm: #faf8f4;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar { background: var(--dark); color: #ccc; font-size: 0.78rem; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0.45rem 1.5rem; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar a { color: #ccc; transition: color .2s; }
.topbar a:hover { color: #fff; }
.whatsapp-btn { margin-left: auto; background: #25d366; color: #fff !important; padding: 0.2rem 0.8rem; border-radius: 50px; font-weight: 600; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav-logo img { height: 50px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; margin-left: auto; }
.nav-links li a { padding: 0.4rem 0.75rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--dark); border-radius: 6px; transition: all .2s; }
.nav-links li a:hover, .nav-links li a.active { color: var(--teal); }
.btn-book { background: var(--teal) !important; color: #fff !important; padding: 0.5rem 1.1rem !important; border-radius: 50px !important; }
.btn-book:hover { background: var(--teal-dark) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-left: auto; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 1rem 1.5rem 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 0.6rem 0; border-bottom: 1px solid #f0f0f0; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero { position: relative; height: 92vh; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://lirp.cdn-website.com/cd1b9724/dms3rep/multi/opt/DSC00653-1920w.jpg') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%); }
.hero-content { position: relative; text-align: center; color: #fff; padding: 0 1.5rem; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.hero-content p { font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 300; opacity: 0.92; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BOOKING BAR ──────────────────────────────────────────── */
.booking-bar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.5rem 2rem; max-width: 860px; margin: -40px auto 0; position: relative; z-index: 10; }
.booking-bar form { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.booking-bar .field { flex: 1; min-width: 160px; }
.booking-bar label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-light); text-transform: uppercase; margin-bottom: 0.35rem; }
.booking-bar input, .booking-bar select { width: 100%; border: 1.5px solid #e5e5e5; border-radius: 8px; padding: 0.65rem 0.9rem; font-size: 0.95rem; font-family: inherit; transition: border-color .2s; }
.booking-bar input:focus, .booking-bar select:focus { outline: none; border-color: var(--teal); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn { display: inline-block; padding: 0.7rem 1.8rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,157,143,0.35); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--gold); }
.btn-sm { padding: 0.45rem 1.2rem; font-size: 0.8rem; }
.btn-book-sm { background: var(--teal); color: #fff; padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; display: inline-block; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-warm { background: var(--bg-warm); }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; color: var(--dark); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── GRID ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ── ROOM CARD ────────────────────────────────────────────── */
.room-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; transition: transform .25s, box-shadow .25s; }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-card-img { height: 220px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: 1.4rem; }
.room-card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); }
.room-card-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 0.3rem 0 0.6rem; color: var(--dark); }
.room-card-amenities { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1rem; }
.room-card-amenities span { background: var(--teal-light); color: var(--teal-dark); font-size: 0.72rem; padding: 0.2rem 0.6rem; border-radius: 50px; font-weight: 500; }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.room-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }

/* ── AMENITY ICONS ────────────────────────────────────────── */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.amenity-item { text-align: center; padding: 2rem 1rem; }
.amenity-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.amenity-item h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--dark); }
.amenity-item p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* ── WHY CHOOSE ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.why-item { padding: 2rem; border-radius: var(--radius); border: 1.5px solid #e8e8e8; text-align: center; transition: border-color .2s, box-shadow .2s; }
.why-item:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.why-item h3 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }
.why-item p { font-size: 0.92rem; color: var(--text); line-height: 1.6; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; }
.testimonial p { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
.testimonial-author { font-weight: 600; font-size: 0.85rem; color: var(--dark); }

/* ── LOCATION BANNER ──────────────────────────────────────── */
.location-strip { background: var(--teal); color: #fff; padding: 2rem 1.5rem; }
.location-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.loc-item { text-align: center; }
.loc-item strong { display: block; font-size: 1.1rem; font-weight: 700; }
.loc-item span { font-size: 0.85rem; opacity: 0.85; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, #2a3a3a 100%); color: #fff; padding: 5rem 1.5rem 4rem; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 0.8rem; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; }

/* ── ROOM DETAIL ──────────────────────────────────────────── */
.room-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .room-detail-grid { grid-template-columns: 1fr; } }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; border-radius: var(--radius); overflow: hidden; }
.room-gallery img { width: 100%; height: 200px; object-fit: cover; transition: opacity .2s; }
.room-gallery img:first-child { grid-column: 1 / -1; height: 340px; }
.room-gallery img:hover { opacity: 0.92; }
.room-book-box { background: var(--bg-warm); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); position: sticky; top: 88px; }
.room-amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1.5rem 0; }
.room-amenities-list li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--text); }
.room-amenities-list li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 0.7rem 1rem; font-size: 0.95rem; font-family: inherit; background: #fff; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── ALERTS ───────────────────────────────────────────────── */
.alert { padding: 1rem 1.4rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.92rem; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark); color: #aaa; padding: 4rem 1.5rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; padding-bottom: 3rem; }
.footer-col img { margin-bottom: 1rem; filter: brightness(1.5); }
.footer-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.4rem; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.88rem; color: #aaa; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col a { color: #aaa; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a { width: 36px; height: 36px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #aaa; text-transform: uppercase; transition: background .2s, color .2s; }
.social-links a:hover { background: var(--teal); color: #fff; }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 1.2rem; font-size: 0.8rem; }

/* ── CAFE PAGE ────────────────────────────────────────────── */
.menu-section { margin-top: 3rem; }
.menu-category { margin-bottom: 2.5rem; }
.menu-category h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--teal); border-bottom: 2px solid var(--teal-light); padding-bottom: 0.5rem; margin-bottom: 1.2rem; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px dashed #eee; }
.menu-item-name { font-weight: 500; color: var(--dark); }
.menu-item-desc { font-size: 0.82rem; color: var(--text-light); margin-top: 0.15rem; }
.menu-item-price { font-weight: 700; color: var(--teal); white-space: nowrap; margin-left: 1rem; }

/* ── ACTIVITIES ───────────────────────────────────────────── */
.activity-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.activity-img { height: 200px; overflow: hidden; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; }
.activity-body { padding: 1.2rem; }
.activity-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.activity-body p { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

/* ── ADMIN LAYOUT ─────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--dark); color: #ccc; padding: 0; flex-shrink: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar-logo { padding: 1.5rem; border-bottom: 1px solid #333; }
.sidebar-logo img { height: 40px; filter: brightness(10); }
.sidebar-logo span { display: block; font-size: 0.7rem; color: #666; margin-top: 0.3rem; }
.sidebar-nav { padding: 1rem 0; }
.sidebar-nav a { display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem 1.4rem; font-size: 0.88rem; color: #aaa; transition: all .15s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: #2a2a2a; color: #fff; border-left: 3px solid var(--teal); }
.sidebar-nav a .icon { width: 18px; text-align: center; }
.sidebar-section { padding: 0.5rem 1.4rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #555; margin-top: 0.5rem; }
.admin-main { flex: 1; background: #f5f6fa; overflow: auto; }
.admin-topbar { background: #fff; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eee; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.admin-topbar h1 { font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.admin-topbar .admin-user { font-size: 0.85rem; color: var(--text); }
.admin-content { padding: 2rem; }

/* ── ADMIN CARDS ──────────────────────────────────────────── */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 0.3rem; }
.stat-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.stat-card-value { font-size: 2.2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-card-sub { font-size: 0.8rem; color: var(--text-light); }
.stat-card.teal { border-top: 3px solid var(--teal); }
.stat-card.gold { border-top: 3px solid var(--gold); }
.stat-card.red { border-top: 3px solid #ef4444; }
.stat-card.blue { border-top: 3px solid #3b82f6; }

/* ── ADMIN TABLES ─────────────────────────────────────────── */
.admin-card { background: #fff; border-radius: var(--radius); box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 2rem; }
.admin-card-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h2 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.admin-table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
th { text-align: left; padding: 0.75rem 1rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); background: #fafafa; border-bottom: 1px solid #f0f0f0; }
td { padding: 0.85rem 1rem; border-bottom: 1px solid #f5f5f5; color: var(--text); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafafa; }

/* ── BADGES ───────────────────────────────────────────────── */
.badge { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-pending  { background: #fef9c3; color: #854d0e; }
.badge-confirmed{ background: #dcfce7; color: #166534; }
.badge-cancelled{ background: #fee2e2; color: #991b1b; }
.badge-checked-in{ background: #dbeafe; color: #1e40af; }
.badge-new      { background: #f0fdf4; color: var(--teal-dark); border: 1px solid var(--teal); }
.badge-read     { background: #f5f5f5; color: #888; }

/* ── ADMIN FORMS ──────────────────────────────────────────── */
.admin-form { max-width: 720px; }
.admin-form .form-group input,
.admin-form .form-group select,
.admin-form .form-group textarea { background: #f9f9f9; }
.form-actions { display: flex; gap: 1rem; margin-top: 2rem; }

/* ── FILTER BAR ───────────────────────────────────────────── */
.filter-bar { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.filter-bar input, .filter-bar select { border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 0.55rem 0.9rem; font-size: 0.88rem; font-family: inherit; background: #fff; }
.filter-bar input:focus, .filter-bar select:focus { outline: none; border-color: var(--teal); }

/* ── BACKUP PAGE ──────────────────────────────────────────── */
.backup-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.backup-info { background: var(--teal-light); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-bottom: 2rem; font-size: 0.9rem; color: var(--teal-dark); }
.backup-info strong { display: block; margin-bottom: 0.3rem; font-size: 1rem; }

/* ── ADMIN LOGIN ──────────────────────────────────────────── */
.login-wrap { min-height: 100vh; background: linear-gradient(135deg, var(--dark) 0%, #1a3030 100%); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.login-box { background: #fff; border-radius: 16px; padding: 3rem; width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); }
.login-box .logo { text-align: center; margin-bottom: 2rem; }
.login-box .logo img { height: 50px; margin: 0 auto 0.5rem; }
.login-box h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark); margin-bottom: 0.3rem; }
.login-box p { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; }

/* ── MISC ─────────────────────────────────────────────────── */
.divider { height: 1px; background: #eee; margin: 2rem 0; }
.text-muted { color: var(--text-light); font-size: 0.85rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 768px) {
  .admin-wrap { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-content { padding: 1rem; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-bar form { flex-direction: column; }
}

/* ── IMAGE GALLERY SLIDER (simple) ───────────────────────── */
.gallery-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-track { display: flex; transition: transform .4s ease; }
.gallery-track img { width: 100%; flex-shrink: 0; height: 420px; object-fit: cover; }
.gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 2; transition: background .2s; }
.gallery-btn:hover { background: var(--teal); }
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }
.gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 0.8rem; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; transition: background .2s; }
.gallery-dot.active { background: var(--teal); }

/* ── CHECKIN STRIP ────────────────────────────────────────── */
.checkin-strip { background: var(--teal-light); padding: 1.5rem; border-radius: var(--radius); display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin: 2rem 0; }
.checkin-item { text-align: center; }
.checkin-item strong { display: block; font-size: 1rem; color: var(--teal-dark); }
.checkin-item span { font-size: 0.82rem; color: var(--text); }

/* HERO SLIDER */
.hero-slider{position:absolute;inset:0}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.2s ease}
.hero-slide.active{opacity:1}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.55));pointer-events:none}
.hero-arrow{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.15);border:2px solid rgba(255,255,255,0.4);color:#fff;width:52px;height:52px;border-radius:50%;font-size:1.8rem;cursor:pointer;z-index:10;transition:background .2s;display:flex;align-items:center;justify-content:center}
.hero-arrow:hover{background:var(--teal);border-color:var(--teal)}
.hero-prev{left:24px}.hero-next{right:24px}
.hero-dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10}
.hero-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.4);border:none;cursor:pointer;transition:background .2s,transform .2s;padding:0}
.hero-dot.active{background:#fff;transform:scale(1.3)}
