/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(-45deg, #0f0f0f, #1a1a1a, #141414);
  background-size: 400% 400%;
  animation: bg-shift 20s ease infinite;
  color: #f2f2f2;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@keyframes bg-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00ffc3;
  box-shadow: 0 0 10px rgba(0, 255, 195, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.site-logo {
  max-height: 120px;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}


.nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Enhanced Header Nav Styles */
.nav-links a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00fff7;
  text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00ffc3, 0 0 20px #00ffc3;
  transform: scale(1.05);
}


.menu-toggle {
  display: none;
    margin-left: auto;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


/* Slideshow */
.slideshow-wrapper {
  padding: 0 0 2rem;
}

.swiper {
  width: 100%;
  height: 500px;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.swiper-slide::after {
  content: attr(alt);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* Info Sections */
.info-section {
  padding: 4rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.info-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-section h2 {
  font-family: 'Rampart One', cursive;
  font-size: 2.5rem;
  color: #00ffc3;
  text-shadow: 0 0 10px #00ffc3, 0 0 20px #00887a;
  margin-bottom: 2rem;
}

.info-section h2.section-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 2.25rem !important;
  color: #00fff7 !important;
  text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7, 0 0 20px #0ff !important;
}


.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.1);
  border: 1px solid rgba(0, 255, 195, 0.3);
}

/* Reviews */
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  width: 300px;
  text-align: left;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* Map Section */
.map-container {
  margin: 2rem auto 0;
  max-width: 800px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 255, 195, 0.15);
  border: 1px solid rgba(0, 255, 195, 0.2);
}


.map-preview {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.map-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.map-button:hover {
  background: #e6b800;
}

.address-highlight {
  font-size: 1.25rem;
  color: #00ffc3;
  text-shadow: 0 0 5px #00ffc3;
  margin-bottom: 1rem;
  font-weight: 600;
}


/* Social Media */
#social-media {
  padding: 3rem 2rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 36px;
  height: 36px;
  filter: brightness(1.5);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  color: #fff;
}

/* Fade-in Animation */
.fade-in-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffcc00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body.loaded #page-loader {
  opacity: 0;
  pointer-events: none;
}

/* Responsive & Mobile Nav Upgrade */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 2rem;
    transition: right 0.4s ease;
    border-left: 2px solid #00ffc3;
    box-shadow: -5px 0 20px rgba(0, 255, 195, 0.3);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }
  .site-logo {
  max-height: 90px;
}


.nav-links a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #00ffc3;
  text-shadow: 0 0 5px #00ffc3;
}

  .menu-toggle {
    display: block;
      margin-left: auto;
  }

  .hero-title {
    font-size: 3rem;
  }

  .swiper {
    height: 300px;
  }
}

/* Section Titles */
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.section-title.neon-glow {
  color: #00fff7;
  text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7, 0 0 20px #0ff;
}

/* Rates + Hours Grid */
.rates-hours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.hours-list,
.rates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li,
.rates-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Reviews Carousel (Basic) */
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.review-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  font-family: 'Open Sans', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.review-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-card span {
  font-weight: bold;
  font-size: 0.95rem;
  color: #00fff7;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .rates-hours-grid {
    flex-direction: column;
    align-items: center;
  }
    .map-preview {
    height: 250px;
  }

  .map-container {
    padding: 1rem 0.5rem;
  }
}

.hour-rate-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hour-rate-card.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Remove accidental spacing between header and first section */
.site-header + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.glass-card.hour-rate-card:hover,
.review-card:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.02);
}
.glass-card.hour-rate-card,
.review-card {
  position: relative;
  overflow: hidden;
}

.glass-card.hour-rate-card::before,
.review-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(0, 255, 195, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: shimmer 5s infinite linear;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

/* Desktop improvements for Hours & Rates */
@media (min-width: 769px) {
  .rates-hours-grid {
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .hour-rate-card {
    flex: 1;
    min-width: 450px;
    max-width: 500px;
  }

  .hours-list li,
  .rates-list li {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }

  .glass-card.hour-rate-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #00ffc3;
    text-shadow: 0 0 10px #00ffc3;
  }
}
.glass-card.hour-rate-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card.hour-rate-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}
