/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #eee;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ========== NAVBAR / HEADER ========== */
header {
  background: #5c0a0a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffcc00;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* ICON NAV STYLE */
.nav-utility a {
  font-size: 1.3rem;
  color: white;
  transition: color 0.3s ease;
}

.nav-utility a:hover {
  color: #ffcc00;
}

.nav-utility i {
  margin: 0;
  pointer-events: none;
}

/* HOURS BADGE */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(to right, #7a1a1a, #5c0a0a);
  color: #ffcc00;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(255, 204, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* ========== HERO SECTION (REAL RESPONSIVE FIX) ========== */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  color: #ffcc00;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.hero-content p {
  color: #ddd;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: #ffcc00;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ========== GALLERY / CAROUSEL ========== */
#gallery,
.carousel-wrapper {
  padding: 3.5rem 1rem;
  text-align: center;
}

.carousel-title {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  isolation: isolate;
}

.carousel-slide {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  transition: transform 0.5s ease-in-out;
  z-index: 1;
}

.carousel-slide img {
  width: calc((100% - 2rem) / 3);
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}

/* ARROWS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-btn:hover {
  background: #ffcc00;
  color: #000;
}

/* ========== MODAL / LIGHTBOX ========== */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.85);
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* ========== SERVICES / MEMBERSHIP SHARED ========== */
.membership-section {
  padding: 4rem 1rem;
  text-align: center;
  background: #0f0f0f;
}

.section-title {
  font-size: 2.2rem;
  color: #ffcc00;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #bbb;
  margin-bottom: 3rem;
}

.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.membership-card {
  background: #1a1a1a;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255,204,0,0.3);
}

.membership-card h3 {
  color: #ffcc00;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 0.9rem;
  color: #aaa;
}

.featured {
  border: 2px solid #ffcc00;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ffcc00;
  color: #000;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 6px;
}

/* ========== CONTACT US SECTION ========== */
#contact {
  padding: 4rem 1rem;
  text-align: center;
  background: #111;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #eee;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffcc00;
}

.contact-form textarea {
  resize: none;
}

/* ========== LOCATION SECTION ========== */
#location {
  padding: 4rem 1rem;
  text-align: center;
}

.map-container {
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255,204,0,0.2);
}

/* ========== LOCATION DETAILS ENHANCEMENT ========== */
.location-details {
  max-width: 700px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-item {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.location-item i {
  font-size: 1.8rem;
  color: #ffcc00;
  margin-top: 0.3rem;
}

.location-item p {
  color: #ddd;
  line-height: 1.6;
  margin: 0;
}

.location-item strong {
  color: #fff;
}

/* ========== FOOTER ========== */
footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  color: #aaa;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .carousel-slide img {
    width: calc((100% - 1rem) / 2);
    height: 350px;
  }
}

@media (max-width: 768px) {
  .carousel-slide img {
    width: 100%;
    height: 280px;
  }

  nav {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
  }
}

/* ========== REVIEWS (NO IMAGES) ========== */
.reviews-section {
  padding: 5rem 1rem;
  background: #111;
  text-align: center;
}

.reviews-badge {
  display: inline-block;
  background: rgba(255,204,0,0.15);
  color: #ffcc00;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.reviews-title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 3rem;
}

.reviews-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.quote-icon {
  font-size: 3rem;
  color: rgba(255,204,0,0.25);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.review-text {
  color: #ddd;
  line-height: 1.7;
  margin: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
}

.review-author {
  color: #ffcc00;
  font-size: 0.9rem;
}

/* VIEW ALL BUTTON */
.view-reviews-btn {
  margin-top: 3rem;
  background: transparent;
  border: 2px solid #ffcc00;
  color: #ffcc00;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-reviews-btn:hover {
  background: #ffcc00;
  color: #000;
}

/* ========== REVIEWS MODAL ========== */
.reviews-modal-content {
  background: #1a1a1a;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  max-width: 500px;
  width: 90%;
  color: #eee;
  text-align: center;
}

.reviews-modal-content h3 {
  color: #ffcc00;
  margin-bottom: 1.5rem;
}

.all-reviews p {
  margin-bottom: 1rem;
  color: #ddd;
  font-style: italic;
}

/* ========== STARS ========== */
.stars {
  color: #ffcc00;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ========== REVIEW FILTERS ========== */
.review-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.review-filters select {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

/* ========== MODAL REVIEWS LIST ========== */
.all-reviews {
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.all-reviews .review-item {
  border-bottom: 1px solid #333;
  padding: 0.8rem 0;
}

.all-reviews .review-item:last-child {
  border-bottom: none;
}

.review-date {
  font-size: 0.75rem;
  color: #888;
}

/* ========== MEMBERSHIP FEATURES ========== */
.plan-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.plan-features li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #ddd;
}

.plan-features li:has(✖) {
  color: #777;
}

@media (max-width: 768px) {
  #hero {
    min-height: 70vh;
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 60vh;
    padding: 2.5rem 1rem;
  }
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffcc00;
  border-radius: 3px;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #5c0a0a;
    padding: 1rem 0;
    margin-top: 1rem;
    border-radius: 10px;
  }

  nav.active .nav-links {
    display: flex;
  }

  .nav-links li {
    padding: 0.5rem 0;
    text-align: center;
  }
}
