/* ========= Reset & Base ========= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f8f9fa;
  --text: #0f1115;
  --card: #ffffff;
  --border: #e6e8eb;
  --brand: #28a745;
  --brand-2: #007bff;
}

.dark-mode {
  --bg: #0f1115;
  --text: #f1f5f9;
  --card: #151922;
  --border: #232838;
}

.custom-theme {
  --bg: #0b132b;
  --text: #e0e5ec;
  --card: #1c2541;
  --border: #3a506b;
}

html, body {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

/* ========= Layout Helpers ========= */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin: 24px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ========= Nav ========= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  height: 32px; width: 32px; object-fit: contain;
}

.links a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  opacity: 0.9;
}

.links a:hover { opacity: 1; }

/* Toggle Theme Button */
.toggle-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--brand-2);
  color: white;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}

.toggle-btn:hover { transform: translateY(-1px); }

/* ========= Hero ========= */
.hero {
  text-align: center;
  padding: 36px 0 20px;
}

.hero h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--brand);
  margin-bottom: 8px;
}

.hero p {
  color: #6b7280;
  margin-bottom: 16px;
}

.cta {
  display: inline-block;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }

/* ========= Top Logo ========= */
.top-logo {
  display: flex;
  justify-content: center;
  margin: 6px 0 10px;
}
.top-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* ========= Section Titles ========= */
.section-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* ========= Days Bar ========= */
.days {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 10;
}

.day {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s;
  font-weight: 500;
  outline: none;
  user-select: none;
}

.day:hover { transform: translateY(-3px); }
.day.active, .day.focus {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}
.today { font-size: 12px; opacity: 0.9; }

/* ========= Slots Grid ========= */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.slot {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.slot:hover { transform: translateY(-4px); }

.slot-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.slot strong { font-size: 1rem; }

.price {
  font-weight: 700;
  color: #d9534f;
  font-size: 1rem;
}

/* Booking Button */
.slot-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--brand);
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.slot-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ========= Pricing ========= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.pricing-item {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 14px;
}

.muted { color: #6b7280; margin-top: 10px; }

/* ========= Contact ========= */
.contact-list { list-style: none; display: grid; gap: 6px; }

/* ========= Football Animation ========= */
.football {
  width: 70px;
  height: 70px;
  background: url('https://i.ibb.co.com/Hp3h5vXq/IMG-20250915-150843-removebg-preview.png') no-repeat center/contain;
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  pointer-events: none;
  opacity: 0.85;
}

/* ========= Footer ========= */
.footer {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
}
.footer a { color: var(--brand-2); text-decoration: none; }

/* ========= Responsive Tweaks ========= */
@media (max-width: 640px) {
  .links { display: none; }
  .nav-inner { gap: 10px; }
}
