/* ========== THEME VARIABLES ========== */
:root {
  --bg: #f5f5f5;
  --bg-alt: #ffffff;
  --text: #111111;
  --muted: #555555;
  --card-bg: #ffffff;
  --accent: #ff0000;
  --nav-bg: transparent;
  --overlay-start: rgba(0, 0, 0, 0.7);
  --overlay-end: rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Dark mode overrides */
body.dark {
  --bg: #050509;             /* page background */
  --bg-alt: #080914;         /* alt section background */
  --text: #f9f9ff;           /* main text */
  --muted: #b0b3c6;          /* softer text */
  --card-bg: #1f2233;        /* card background */
  --accent: #ff0000;         /* slightly brighter red in dark */
  --nav-bg: rgba(3, 3, 8, 0.9);
  --overlay-start: rgba(0, 0, 0, 0.9);
  --overlay-end: rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.8);
}

/* ========== BASE ========== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: var(--text);
  background: var(--bg);
}

/* smooth theme transitions */
body,
.section,
.card,
.footer {
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 70vh;
  background: url("https://res.cloudinary.com/dodevsdjg/image/upload/v1764728743/ChatGPT_Image_Dec_3_2025_04_24_17_AM_pfsnip.png")
    center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    var(--overlay-start),
    var(--overlay-end)
  );
}

/* ========== NAV ========== */

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8vw;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Book Now button – white pill */
.nav-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-btn:hover {
  background: #ffffff;
  color: #111111;
}

/* theme toggle button */
.theme-toggle {
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

body.dark .theme-toggle {
  background: rgba(0, 0, 0, 0.4);
}

/* ========== HERO CONTENT ========== */

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 8vw 60px;
  max-width: 480px;
}

.hero-content h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ========== BUTTONS ========== */

.primary-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: #ff0000;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.primary-btn:hover {
  filter: brightness(0.5);
}

.full-width {
  width: 100%;
}

/* ========== SECTIONS ========== */

.section {
  padding: 60px 8vw;
  background: var(--bg);
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--text);          /* visible in both modes */
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ========== CARDS ========== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 6px;
  color: var(--text);          /* strong title in both modes */
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ========== VIDEO GALLERY ========== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.video-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.video-card video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.price {
  font-weight: 700;
  color: var(--accent);        /* red price */
}

/* ========== BOOKING FORM ========== */

.booking-form {
  max-width: 420px;
  margin-top: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text);
}

.form-row input,
.form-row select {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  background: var(--bg-alt);
  color: var(--text);
}

body.dark .form-row input,
body.dark .form-row select {
  border-color: #333;
}

/* ========== FOOTER ========== */

.footer {
  text-align: center;
  padding: 20px 8vw;
  font-size: 0.8rem;
  background: var(--bg-alt);   /* follows theme */
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}
