/* ── DARK THEME — variable overrides ─────────────────────────────────── */

/* Guest tokens (main.css) */
[data-theme="dark"] {
  --primary:       #0a9fb5;
  --primary-dark:  #067484;
  --primary-light: #0d2a2f;
  --dark:          #e2e8f0;
  --text:          #cbd5e1;
  --muted:         #8ba0a3;
  --border:        #2d3d40;
  --white:         #0f1a1c;
  --cream:         #152224;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.25);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.45);

  /* Admin tokens (Master.css) */
  --color-primary:       #0a9fb5;
  --color-primary-hover: #067484;
  --color-primary-light: #0d2a2f;
  --color-text:          #cbd5e1;
  --color-muted:         #8ba0a3;
  --color-card-bg:       #152224;
  --color-border:        #2d3d40;
  --color-bg:            #0f1a1c;
}

/* ── Body ────────────────────────────────────────────────────────────── */
[data-theme="dark"] body {
  color-scheme: dark;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
[data-theme="dark"] .nav {
  background: #0f1a1c;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
[data-theme="dark"] .nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
[data-theme="dark"] .nav-link {
  color: rgba(203,213,225,.6);
}
[data-theme="dark"] .nav-link:hover {
  color: #e2e8f0;
}
[data-theme="dark"] .nav-guest:hover {
  color: #fff;
}
[data-theme="dark"] .nav-guest-dropdown {
  background: #152224;
}
[data-theme="dark"] .nav-guest-dropdown a:hover {
  background: #1a2e30;
}
[data-theme="dark"] .nav-guest-dropdown a.logout-link:hover {
  background: #2d1515;
}

/* Mobile nav */
@media (max-width: 860px) {
  [data-theme="dark"] .nav-links {
    background: #0f1a1c;
    border-top-color: rgba(255,255,255,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
}

/* ── Logo swap ───────────────────────────────────────────────────────── */
[data-theme="dark"] .dark-hide { display: none !important; }
[data-theme="light"] .light-hide,
:root:not([data-theme]) .light-hide { display: none !important; }

/* ── Hero (already dark overlay — minimal changes) ───────────────────── */
[data-theme="dark"] .booking-widget {
  border: 1px solid var(--border);
}

/* ── About section ───────────────────────────────────────────────────── */
[data-theme="dark"] .about-section {
  background: var(--cream);
}

/* ── Gallery section ─────────────────────────────────────────────────── */
[data-theme="dark"] .gallery-section {
  background: var(--cream);
}

/* ── Amenities (keep dark bg — override since --dark flips to light) ── */
[data-theme="dark"] .amenities-section {
  background: #0d1f21;
}
[data-theme="dark"] .amenities-section .section-heading {
  color: #ffffff;
}
[data-theme="dark"] .amenities-section .section-heading em {
  color: rgba(255,255,255,.5);
}
[data-theme="dark"] .amenities-section .section-tag {
  color: rgba(255,255,255,.5);
}
[data-theme="dark"] .amenity-item strong {
  color: #ffffff;
}

/* ── Testimonials ────────────────────────────────────────────────────── */
[data-theme="dark"] .testimonials-section {
  background: var(--cream);
}

/* ── Contact section ─────────────────────────────────────────────────── */
[data-theme="dark"] .contact-section {
  background: var(--cream);
}
[data-theme="dark"] .contact-map iframe {
  filter: invert(.9) hue-rotate(180deg);
}

/* ── Footer (keep dark bg — override since --dark flips to light) ───── */
[data-theme="dark"] .site-footer {
  background: #0d1f21;
}
[data-theme="dark"] .footer-logo span {
  color: #ffffff;
}
[data-theme="dark"] .footer-col h4 {
  color: #ffffff;
}

/* ── Forms ────────────────────────────────────────────────────────────── */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: var(--muted);
}

/* ── Flatpickr ───────────────────────────────────────────────────────── */
[data-theme="dark"] .flatpickr-calendar {
  background: #152224 !important;
  border-color: var(--border) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.5) !important;
}
[data-theme="dark"] .flatpickr-months .flatpickr-month {
  color: #e2e8f0 !important;
  background: #152224 !important;
}
[data-theme="dark"] .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #152224 !important;
  color: #e2e8f0 !important;
}
[data-theme="dark"] .flatpickr-weekdays {
  background: #152224 !important;
}
[data-theme="dark"] span.flatpickr-weekday {
  color: var(--muted) !important;
  background: #152224 !important;
}
[data-theme="dark"] .flatpickr-day {
  color: #cbd5e1 !important;
}
[data-theme="dark"] .flatpickr-day:hover {
  background: #1a2e30 !important;
  border-color: #1a2e30 !important;
}
[data-theme="dark"] .flatpickr-day.prevMonthDay,
[data-theme="dark"] .flatpickr-day.nextMonthDay {
  color: #4a5f62 !important;
}
[data-theme="dark"] .flatpickr-day.flatpickr-disabled {
  color: #3a4a4d !important;
}
[data-theme="dark"] .numInputWrapper:hover {
  background: #1a2e30 !important;
}
[data-theme="dark"] .flatpickr-months .flatpickr-prev-month,
[data-theme="dark"] .flatpickr-months .flatpickr-next-month {
  color: #e2e8f0 !important;
  fill: #e2e8f0 !important;
}
[data-theme="dark"] .flatpickr-innerContainer {
  border-bottom: none !important;
}

/* ── Invoice modal ───────────────────────────────────────────────────── */
[data-theme="dark"] .inv-overlay {
  background: rgba(0,0,0,.65);
}
[data-theme="dark"] .inv-err {
  background: #2d1515;
  border-color: #5c2020;
  color: #fca5a5;
}

/* ── Status badges ───────────────────────────────────────────────────── */
[data-theme="dark"] .form-note.success { color: #4ade80; }
[data-theme="dark"] .form-note.error   { color: #f87171; }

/* ── Scrollbar ───────────────────────────────────────────────────────── */
[data-theme="dark"] ::-webkit-scrollbar { width: 8px; }
[data-theme="dark"] ::-webkit-scrollbar-track { background: #0f1a1c; }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #2d3d40; border-radius: 4px; }
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: #3d5053; }

/* ── THEME TOGGLE BUTTON ─────────────────────────────────────────────── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ── ADMIN-SPECIFIC DARK OVERRIDES ───────────────────────────────────── */

/* Admin shell */
[data-theme="dark"] .admin-shell {
  background: #0f1a1c;
}

/* Admin topbar */
[data-theme="dark"] .admin-topbar {
  background: #152224;
  border-bottom-color: #2d3d40;
}

/* Admin sidebar — already dark, just deepen slightly for contrast */
[data-theme="dark"] .admin-sidebar {
  background: #0a1315;
}

/* Admin content area */
[data-theme="dark"] .admin-content {
  background: #0f1a1c;
}

/* Admin cards & tables */
[data-theme="dark"] .card,
[data-theme="dark"] .panel,
[data-theme="dark"] .table-container {
  background: #152224;
  border-color: #2d3d40;
}

[data-theme="dark"] table thead th {
  background: #1a2e30;
  color: #8ba0a3;
  border-color: #2d3d40;
}
[data-theme="dark"] table tbody td {
  border-color: #1e3133;
}
[data-theme="dark"] table tbody tr:hover {
  background: #1a2e30;
}

/* Admin inputs */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: #0f1a1c;
  color: #cbd5e1;
  border-color: #2d3d40;
}

/* Admin modals */
[data-theme="dark"] .modal-content {
  background: #152224;
  border-color: #2d3d40;
}

/* Admin guest/transaction name readability */
[data-theme="dark"] .gp-mcard-name,
[data-theme="dark"] .gp-mcard-val,
[data-theme="dark"] .dropdown-menu {
  color: #cbd5e1;
}
[data-theme="dark"] .dropdown-menu {
  background: #152224;
  border-color: #2d3d40;
}
[data-theme="dark"] .dropdown-item {
  color: #cbd5e1;
}
[data-theme="dark"] .dropdown-item:hover {
  background: #1a2e30;
  color: #e2e8f0;
}

/* Admin utility classes (Master.css hardcoded overrides) */
[data-theme="dark"] .text-title-color { color: #e2e8f0 !important; }
[data-theme="dark"] .text-subtitle-color { color: #8ba0a3 !important; }
[data-theme="dark"] .text-default-color { color: #cbd5e1 !important; }
[data-theme="dark"] .main-sidemenu-content { background: #0a1315; }
[data-theme="dark"] .main-header { background: #067484; }

/* Admin calendar specific */
[data-theme="dark"] .ac-cell {
  background: #152224;
  border-color: #2d3d40;
}
[data-theme="dark"] .ac-cell.ac-other-month {
  background: #0f1a1c;
}
[data-theme="dark"] .ac-cell.ac-today {
  background: #2a2510;
  border-color: #806a00;
}
[data-theme="dark"] .ac-available {
  color: #4ade80;
  background: #0d2f1a;
}
[data-theme="dark"] .ac-grid th {
  color: #8ba0a3;
  border-bottom-color: #2d3d40;
}

/* Selection highlight (e.g. search results, active filters) */
[data-theme="dark"] ::selection {
  background: rgba(10,159,181,.35);
  color: #fff;
}
