@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #1a3a5c;
  --primary-hover: #15304d;
  --secondary: #c8a455;
  --accent: #4faec6;
  --bg: #f8f5f0;
  --bg-alt: #eef3f7;
  --bg-dark: #0f2236;
  --card: #ffffff;
  --text: #2a2a2a;
  --text-muted: #666;
  --border: #dde3e8;
  --shadow: 0 4px 24px rgba(26,58,92,0.12);
  --shadow-lg: 0 8px 40px rgba(26,58,92,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --trans: 0.3s ease;
  --nav-h: 72px;
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(15,34,54,0.95);
  backdrop-filter: blur(10px);
  display: flex; align-items: center;
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background var(--trans);
}
.nav.scrolled { background: rgba(15,34,54,0.99); }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; font-weight: 700; margin-right: auto; display: flex; align-items: center; gap: 0.45rem; }
.nav-brand span { color: var(--secondary); }
.nav-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: rgba(255,255,255,0.85); padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.9rem; font-weight: 400; transition: all var(--trans); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { color: rgba(255,255,255,0.85); padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 0.4rem; transition: all var(--trans); background: none; border: none; font-family: inherit; }
.nav-dropdown-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; background: white; border-radius: 10px; padding: 0.5rem; padding-top: 0.75rem; min-width: 180px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: all var(--trans); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 0.6rem 1rem; color: var(--text); font-size: 0.9rem; border-radius: 6px; }
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.nav-cta { background: var(--secondary); color: white !important; padding: 0.55rem 1.2rem !important; border-radius: 30px !important; font-weight: 700 !important; margin-left: 0.5rem; transition: all var(--trans) !important; }
.nav-cta:hover { background: #b8943f !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(200,164,85,0.4); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all var(--trans); }
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(15,34,54,0.98); padding: 1rem 2rem 2rem; z-index: 999; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; color: white; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1rem; }
.nav-mobile .nav-cta { display: inline-block; margin-top: 1rem; border-bottom: none; }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,34,54,0.3) 0%, rgba(15,34,54,0.1) 50%, rgba(15,34,54,0.5) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; color: white; padding: 0 1.5rem; max-width: 800px; }
.hero-badge { display: inline-block; background: var(--secondary); color: white; padding: 0.4rem 1.2rem; border-radius: 30px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-content h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2.5rem; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 30px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: all var(--trans); font-family: inherit; text-decoration: none; }
.btn-primary { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn-primary:hover { background: #b8943f; border-color: #b8943f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,164,85,0.4); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: white; color: var(--primary); transform: translateY(-2px); }
.btn-blue { background: var(--primary); color: white; border-color: var(--primary); }
.btn-blue:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,58,92,0.3); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: white; opacity: 0.7; animation: bounce 2s infinite; font-size: 1.5rem; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── HIGHLIGHTS BAR ── */
.highlights { background: var(--primary); padding: 2.5rem 2rem; }
.highlights-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.highlight-item { display: flex; align-items: center; gap: 1rem; color: white; }
.highlight-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.highlight-text strong { display: block; font-size: 1rem; font-weight: 700; }
.highlight-text span { font-size: 0.8rem; opacity: 0.75; }

/* ── SECTIONS ── */
section { padding: 80px 2rem; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: white; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--primary); margin-bottom: 0.75rem; }
.section-dark .section-header h2 { color: white; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-label { display: inline-block; color: var(--secondary); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 12px; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:first-child { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(1.12) contrast(0.95) saturate(1.08) sepia(0.08); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(26,58,92,0); transition: background var(--trans); }
.gallery-item:hover::after { background: rgba(26,58,92,0.2); }

/* ── 360 TOUR ── */
.tour-container { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 480px; background: #0f2236; }
.tour-container iframe, .tour-container #panorama { width: 100%; height: 100%; border: none; }
.tour-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: white; text-align: center; padding: 2rem; gap: 1rem; }
.tour-placeholder .tour-icon { font-size: 4rem; opacity: 0.5; }
.tour-placeholder p { opacity: 0.7; max-width: 400px; }
.tour-tabs { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.tour-tab { padding: 0.55rem 1.2rem; border-radius: 30px; border: 2px solid var(--border); background: white; color: var(--text); font-size: 0.88rem; cursor: pointer; transition: all var(--trans); font-family: inherit; font-weight: 600; }
.tour-tab.active, .tour-tab:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ── AMENITIES ── */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.amenity-card { background: var(--card); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans); }
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.amenity-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.amenity-card h3 .icon { font-size: 1.3rem; }
.amenity-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.amenity-card li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.amenity-card li::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ── PRICING ── */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pricing-table th { background: var(--primary); color: white; padding: 1rem 1.25rem; text-align: left; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.pricing-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--bg); }
.pricing-table td:first-child { font-weight: 700; color: var(--primary); }
.pricing-table td.price { font-weight: 700; font-size: 1rem; color: var(--secondary); }
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.extra-item { background: var(--card); border-radius: var(--radius); padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow); font-size: 0.9rem; }
.extra-item strong { color: var(--secondary); font-size: 1rem; }

/* ── CALENDAR ── */
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .booking-wrapper { grid-template-columns: 1fr; } }
.calendar-card { background: var(--card); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.cal-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--primary); }
.cal-nav { display: flex; gap: 0.5rem; }
.cal-nav button { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); background: white; cursor: pointer; font-size: 1rem; color: var(--primary); transition: all var(--trans); display: flex; align-items: center; justify-content: center; }
.cal-nav button:hover { background: var(--primary); color: white; border-color: var(--primary); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-header { text-align: center; font-size: 0.7rem; font-weight: 700; color: var(--text-muted); padding: 0.4rem 0; text-transform: uppercase; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.85rem; cursor: pointer; transition: all var(--trans); position: relative; user-select: none; }
.cal-day:empty { cursor: default; }
.cal-day.today { font-weight: 700; color: var(--primary); }
.cal-day.available:hover { background: var(--primary); color: white; }
.cal-day.selected-start, .cal-day.selected-end { background: var(--primary); color: white; font-weight: 700; }
.cal-day.selected-start { border-radius: 8px 0 0 8px; }
.cal-day.selected-end { border-radius: 0 8px 8px 0; }
.cal-day.in-range { background: rgba(26,58,92,0.1); color: var(--primary); border-radius: 0; }
.cal-day.blocked { background: #fef0f0; color: #e74c3c; cursor: not-allowed; text-decoration: line-through; }
.cal-day.pending { background: #fff8e6; color: #f39c12; cursor: not-allowed; }
.cal-day.past { color: #bbb; cursor: not-allowed; }
.cal-legend { display: flex; gap: 1.2rem; margin-top: 1.2rem; flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-muted); }
.cal-legend-dot { width: 12px; height: 12px; border-radius: 3px; }
.dot-available { background: white; border: 1px solid var(--border); }
.dot-blocked { background: #fef0f0; border: 1px solid #e74c3c; }
.dot-pending { background: #fff8e6; border: 1px solid #f39c12; }
.dot-selected { background: var(--primary); }
.cal-selection { margin-top: 1.25rem; padding: 1rem; background: var(--bg); border-radius: var(--radius); font-size: 0.88rem; }
.cal-selection p { color: var(--text-muted); }
.cal-selection strong { color: var(--primary); }

/* ── BOOKING FORM ── */
.booking-form-card { background: var(--card); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.booking-form-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.form-group label span.req { color: var(--danger); }
.form-control { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.92rem; font-family: inherit; color: var(--text); background: white; transition: border-color var(--trans), box-shadow var(--trans); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,92,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-dates { display: flex; gap: 0.5rem; }
.form-dates .form-control { flex: 1; background: var(--bg); }
.form-control textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; background: var(--secondary); color: white; border: none; border-radius: 30px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all var(--trans); margin-top: 0.5rem; }
.form-submit:hover { background: #b8943f; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,164,85,0.35); }
.form-msg { display: none; margin-top: 1rem; padding: 0.9rem 1.2rem; border-radius: 8px; font-size: 0.9rem; }
.form-msg.success { background: #e8f8ee; color: #1a7a3a; display: block; }
.form-msg.error { background: #feecea; color: #c0392b; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; background: none; border: none; font-family: inherit; font-size: 0.95rem; font-weight: 700; color: var(--primary); cursor: pointer; text-align: left; transition: background var(--trans); }
.faq-question:hover { background: var(--bg); }
.faq-icon { font-size: 1.3rem; color: var(--secondary); flex-shrink: 0; transition: transform var(--trans); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.4rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.4rem 1.2rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ── FOOTER ── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.8); padding: 60px 2rem 30px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.4rem; margin-bottom: 0.5rem; }
.footer-brand h3 span { color: var(--secondary); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; opacity: 0.7; margin-top: 0.75rem; }
.footer-col h4, .footer-contact h4 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family: 'Lato', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.88rem; opacity: 0.7; transition: opacity var(--trans); }
.footer-col a:hover { opacity: 1; color: var(--secondary); }
.footer-contact p { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.5rem; opacity: 0.8; }
.footer-contact p strong { flex-shrink: 0; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; opacity: 0.55; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.15); border: none; color: white; width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--trans); }
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ── STATIC PAGES (AGB, IMPRESSUM) ── */
.static-page { max-width: 820px; margin: 0 auto; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; }
.static-page h1 { font-size: 2.2rem; color: var(--primary); margin-bottom: 2.5rem; }
.static-page h2 { font-size: 1.25rem; color: var(--primary); margin: 2rem 0 0.75rem; }
.static-page p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.static-page ul { margin: 0.75rem 0 1rem 1.5rem; }
.static-page ul li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.4rem; list-style: disc; }
.static-page table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.static-page table th { background: var(--primary); color: white; padding: 0.75rem 1rem; text-align: left; font-size: 0.85rem; }
.static-page table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); }

/* ── ADMIN ── */
.admin-login { max-width: 420px; margin: calc(var(--nav-h) + 80px) auto 80px; padding: 0 1rem; }
.admin-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.admin-card h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.admin-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.admin-panel { max-width: 1100px; margin: calc(var(--nav-h) + 40px) auto 80px; padding: 0 2rem; display: none; }
.admin-panel.visible { display: block; }
.admin-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.admin-tab-btn { padding: 0.75rem 1.5rem; border: none; background: none; font-family: inherit; font-size: 0.92rem; font-weight: 700; color: var(--text-muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--trans); }
.admin-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }
.admin-house-tabs { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.admin-house-btn { padding: 0.5rem 1.2rem; border-radius: 30px; border: 2px solid var(--border); background: white; color: var(--text); font-size: 0.88rem; cursor: pointer; transition: all var(--trans); font-family: inherit; font-weight: 600; }
.admin-house-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.bookings-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.bookings-table th { background: var(--primary); color: white; padding: 0.85rem 1rem; text-align: left; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.bookings-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: middle; }
.bookings-table tr:last-child td { border-bottom: none; }
.status-badge { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 30px; font-size: 0.75rem; font-weight: 700; }
.status-pending { background: #fff8e6; color: #d68a00; }
.status-confirmed { background: #e8f8ee; color: #1a7a3a; }
.status-blocked { background: #fef0f0; color: #c0392b; }
.action-btn { padding: 0.3rem 0.8rem; border-radius: 6px; border: none; font-size: 0.78rem; cursor: pointer; font-family: inherit; font-weight: 600; transition: all var(--trans); }
.action-confirm { background: #e8f8ee; color: #1a7a3a; }
.action-confirm:hover { background: #1a7a3a; color: white; }
.action-reject { background: #fef0f0; color: #c0392b; }
.action-reject:hover { background: #c0392b; color: white; }
.action-delete { background: var(--bg); color: var(--text-muted); }
.action-delete:hover { background: var(--text-muted); color: white; }
.admin-block-form { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); max-width: 500px; }
.admin-block-form h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 1.25rem; }

/* ── TOAST NOTIFICATION ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--primary); color: white; padding: 1rem 1.5rem; border-radius: var(--radius); font-size: 0.9rem; box-shadow: var(--shadow-lg); z-index: 9000; opacity: 0; transform: translateY(20px); transition: all var(--trans); pointer-events: none; max-width: 340px; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #1a7a3a; }
.toast.error { background: #c0392b; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-rows: 220px 220px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 60px 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .tour-container { height: 320px; }
  .admin-panel { padding: 0 1rem; }
  .pricing-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .pricing-table th, .pricing-table td { white-space: nowrap; }
  .bookings-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bookings-table th, .bookings-table td { white-space: nowrap; }
  .admin-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0; }
  .admin-tab-btn { white-space: nowrap; padding: 0.75rem 1rem; }
  .admin-house-tabs { flex-wrap: wrap; }
  .admin-block-form { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item { height: 200px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Animations ── */

/* Page fade-in */
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: page-in 0.5s ease forwards; }

/* Pulsing CTA button */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,85,0.55); }
  60%       { box-shadow: 0 0 0 12px rgba(200,164,85,0); }
}
.btn-primary { animation: pulse-cta 2.8s infinite; }
.btn-primary:hover { animation: none; }

/* Staggered highlight items */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.highlights .highlight-item {
  opacity: 0;
  animation: fade-up 0.55s ease forwards;
}
.highlights .highlight-item:nth-child(1) { animation-delay: 0.05s; }
.highlights .highlight-item:nth-child(2) { animation-delay: 0.15s; }
.highlights .highlight-item:nth-child(3) { animation-delay: 0.25s; }
.highlights .highlight-item:nth-child(4) { animation-delay: 0.35s; }
.highlights .highlight-item:nth-child(5) { animation-delay: 0.45s; }

/* Enhanced amenity card hover */
.amenity-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}
.amenity-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(26,58,92,0.14);
  border-color: var(--secondary);
}

/* Counter number pop */
@keyframes count-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); color: var(--secondary); }
  100% { transform: scale(1); }
}
.count-pop { animation: count-pop 0.4s ease; }

/* Pricing table row hover */
.pricing-table tbody tr {
  transition: background 0.2s ease;
  cursor: default;
}
.pricing-table tbody tr:hover td { background: rgba(200,164,85,0.08) !important; }

/* Page fade-out on navigation */
body.page-out { animation: page-in 0.35s ease reverse forwards; }
