body {
  font-family: 'Segoe UI', sans-serif;
}

body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark-mode .card {
  background-color: #1e1e1e;
  color: #f1f1f1;
  border-color: #2c2c2c;
}

body.dark-mode .form-control,
body.dark-mode .form-select {
  background-color: #2c2c2c;
  color: #f1f1f1;
  border-color: #444;
}

body.dark-mode .form-control::placeholder,
body.dark-mode .form-select option {
  color: #aaa;
}

body.dark-mode .btn-success {
  background-color: #2e7d32;
  border-color: #27642a;
}

body.dark-mode .btn-danger {
  background-color: #c62828;
  border-color: #a91d1d;
}

body.dark-mode .btn-outline-secondary {
  color: #ccc;
  border-color: #555;
}

body.dark-mode .btn-outline-secondary:hover {
  background-color: #555;
  color: white;
}

body.dark-mode hr {
  border-color: #444;
}

body.dark-mode .overview-label {
  color: #aaa;
}

body.dark-mode .overview-value {
  font-size: 1.5rem;
  font-weight: bold;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.hero-text {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-image {
    height: 45vh;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 35vh;
  }
}

.status-indicator {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-weight: bold;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.status-operating {
  background-color: #28a745;
  color: white;
}

.status-down {
  background-color: #dc3545;
  color: white;
}

.status-refurbishment {
  background-color: #ffc107;
  color: black;
}

.status-closed {
  background-color: #6c757d;
  color: white;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

.card-img-container {
  width: 120px;
  height: 165px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-fixed {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  min-height: 100%;
}

.card-title {
  font-weight: bold;
}

.card-title,
.card-body {
  min-height: 3rem;
}

.attraction-location {
  min-height: 2.2rem;
}

.waittime-badge {
  min-height: 1.5rem;
}

@media (max-width: 768px) {
  .card-body {
    padding: 1rem;
  }
}

.hero-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-size: 2.5rem;
}

.coming-soon-btn {
  background-color: #ffc107;
  color: black;
}

.coming-soon-btn:hover {
  background-color: #e0a800;
  color: white;
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .container.py-5 {
    padding: 2rem;
  }
}

/* Nav & Footer Dark Mode */
body.dark-mode nav,
body.dark-mode footer {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

body.dark-mode nav a,
body.dark-mode footer a {
  color: #f1f1f1;
}

body.dark-mode nav a:hover,
body.dark-mode footer a:hover {
  color: #ffc107;
}

body.dark-mode nav .navbar-brand {
  color: #f1f1f1;
}

body.dark-mode nav .navbar-brand:hover {
  color: #ffc107;
}

body.dark-mode .footer .social-icon {
  color: #f1f1f1;
}

body.dark-mode .footer .social-icon:hover {
  color: #ffc107;
}

body.dark-mode footer {
  border-top: 1px solid #444;
}

.text-muted {
  color: #6c757d !important;
}

body.dark-mode .text-muted {
  color: #adb5bd !important;
}
