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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1rem;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Header & Navigation */
.site-header {
  background: linear-gradient(135deg, #f2c452 0%, #e6b045 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(242, 196, 82, 0.4);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-logo h1 {
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin: 0;
}


.nav-logo a:hover {
  opacity: 0.8;
}

.nav-tagline {
  font-size: 0.75rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: -0.25rem;
  letter-spacing: 0.025em;
  display: block;
}

@media (max-width: 768px) {
  .nav-tagline {
    display: none;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #4a5568;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 3px 0;
  background-color: #1a1a1a;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #655005;
  text-decoration: none;
  border-radius: 8px;
  background: rgba(242, 196, 82, 0.1);
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  color: #f2c452;
  background: rgba(242, 196, 82, 0.2);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../images/hero-image-hd.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: white;
  padding: 0;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 8px rgba(0,0,0,0.6),
    0 8px 16px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 8px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease-out 0.2s both;
  color: #f8f9fa;
}

.hero-hours {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-hours p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #f2c452;
  font-weight: 600;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.9),
    0 4px 8px rgba(0,0,0,0.7),
    0 8px 16px rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  display: inline-block;
  letter-spacing: 0.025em;
  position: relative;
  background: transparent;
}

.hero-hours p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(242,196,82,0.2);
  z-index: -1;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(242,196,82,0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #f2c452 0%, #d4a017 100%);
  color: #000000 !important;
  border-color: #f2c452;
  box-shadow: 0 6px 20px rgba(242,196,82,0.3);
  position: relative;
  z-index: 0;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #d4a017 0%, #b8941a 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(242,196,82,0.4);
  border-color: #d4a017;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: #f2c452;
  border-color: rgba(242,196,82,0.5);
  box-shadow: 0 4px 14px rgba(242,196,82,0.1);
}

.btn-secondary:hover {
  background: rgba(242,196,82,0.1);
  border-color: #f2c452;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(242,196,82,0.25);
}

.btn-outline {
  background: transparent;
  color: #4a5568;
  border-color: #e2e8f0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.btn-outline:hover {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Sections */
section {
  padding: 6rem 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header .subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #6b7280;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f2c452, #d4a017);
  border-radius: 3px;
}

.about {
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(242,196,82,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242,196,82,0.06) 0%, transparent 50%);
  z-index: 0;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.about-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.about-image:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.about-image:hover::before {
  opacity: 1;
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-text p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

/* Testimonial */
.testimonial {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(242,196,82,0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(242,196,82,0.02) 0%, transparent 50%);
  z-index: 0;
}

.testimonial-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial blockquote {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-style: italic;
  color: #1a1a1a;
  margin: 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
  border-left: 4px solid #f2c452;
  transition: all 0.4s ease;
  z-index: 1;
}

.testimonial blockquote:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #f2c452;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
  opacity: 0.7;
}

.testimonial blockquote p {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

/* Services */
.services {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(242,196,82,0.05) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(242,196,82,0.03) 0%, transparent 50%);
  z-index: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.service-card .btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.service-card-content {
  margin-bottom: 2rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: rgba(242,196,82,0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.service-card p {
  color: #4a5568;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Pricing */
.pricing {
  background-color: #ffffff;
  text-align: center;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 600;
}

.pricing-info p {
  font-size: 18px;
  color: #000000;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Events */
.events {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 60%, rgba(242,196,82,0.04) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(242,196,82,0.06) 0%, transparent 50%);
  z-index: 0;
}

.events h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: #1a1a1a;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.event-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.event-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: rgba(242,196,82,0.2);
}

.event-card:hover::before {
  opacity: 1;
}

.event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-card h3 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.event-card p {
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.event-date {
  color: #f2c452;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, #f2c452 0%, #e6b045 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  color: #1a1a1a;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-hero-subtitle {
  color: #1a1a1a;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 500;
}

.contact-main {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(242,196,82,0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(242,196,82,0.02) 0%, transparent 50%);
  z-index: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(242,196,82,0.2);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card h3 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(242,196,82,0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #1a1a1a;
}

.time {
  color: #4a5568;
  font-weight: 500;
}

.hours-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(242,196,82,0.1);
  border-radius: 10px;
  border-left: 4px solid #f2c452;
}

.hours-note p {
  margin: 0;
  color: #4a5568;
  font-size: 0.9rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  color: #4a5568;
  line-height: 1.6;
}

.contact-item strong {
  color: #1a1a1a;
}

.contact-item a {
  color: #f2c452;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #d4a017;
}

.location-details p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.location-details p:last-child {
  margin-bottom: 0;
}

.video-section {
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

.video-section h3 {
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.video-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(242,196,82,0.2);
  aspect-ratio: 16/9;
  position: relative;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-section {
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

.map-section h3 {
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(242,196,82,0.2);
}

.social-section {
  position: relative;
  z-index: 1;
}

.social-section h3 {
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  overflow: hidden;
}

.social-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.social-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: rgba(242,196,82,0.2);
}

.social-link-card:hover::before {
  opacity: 1;
}

.social-link-card strong {
  color: #1a1a1a;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.social-link-card span {
  color: #4a5568;
  font-size: 0.95rem;
}

/* Party Pages */
.party-hero {
  background: linear-gradient(135deg, #f2c452 0%, #e6b045 100%);
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.party-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 0;
}

.party-hero-content {
  position: relative;
  z-index: 1;
}

.party-hero h1 {
  color: #1a1a1a;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.party-hero-subtitle {
  color: #1a1a1a;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
  font-weight: 500;
}

.party-content {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.party-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(242,196,82,0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(242,196,82,0.02) 0%, transparent 50%);
  z-index: 0;
}

.party-intro {
  max-width: 1200px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.party-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.party-intro-content:has(.intro-text):not(:has(.intro-image)) {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.intro-text h2 {
  color: #1a1a1a;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text p {
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
}

.intro-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rental-gun-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.image-caption {
  color: #6b7280;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 0;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a1a1a;
  font-weight: 500;
}

.highlight-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #f2c452;
  flex-shrink: 0;
}

.party-details-section {
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

.party-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(242,196,82,0.15);
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.detail-card h4 {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card li {
  color: #4a5568;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.detail-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #f2c452;
  font-weight: bold;
  font-size: 1.2rem;
}

.detail-card li:last-child {
  margin-bottom: 0;
}

.pricing-section {
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

.pricing-section h3 {
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-single {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.pricing-single .pricing-card {
  width: 100%;
  max-width: 600px;
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(242,196,82,0.2);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: #f2c452;
  transform: scale(1.02);
  border-width: 2px;
}

.pricing-card.featured::before {
  background: linear-gradient(135deg, rgba(242,196,82,0.05) 0%, transparent 50%);
  opacity: 1;
}

.pricing-card h4 {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card .price {
  color: #f2c452;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.price-note {
  font-size: 1rem;
  color: #4a5568;
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card li {
  color: #4a5568;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f2c452;
  font-weight: bold;
}

.pricing-card li:last-child {
  margin-bottom: 0;
}

.party-cta {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
  border: 1px solid rgba(242,196,82,0.2);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 5rem auto 0;
  text-align: center;
}

.party-cta h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.party-cta p {
  color: #4a5568;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.party-cta a[href^="tel:"] {
  color: #f2c452;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.party-cta a[href^="tel:"]:hover {
  color: #d4a017;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.party-cta .btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.waiver-cta {
  background: linear-gradient(135deg, #f2f7ff 0%, #e8f4fd 100%);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.waiver-cta h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.waiver-cta p {
  color: #4a5568;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.add-ons {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(242,196,82,0.15);
  max-width: 600px;
  margin: 0 auto;
}

.add-ons h4 {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.add-on-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.add-on-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(242,196,82,0.05);
  border-radius: 10px;
  border: 1px solid rgba(242,196,82,0.1);
}

.add-on-name {
  color: #1a1a1a;
  font-weight: 500;
}

.add-on-price {
  color: #f2c452;
  font-weight: 600;
  font-size: 1.1rem;
}

/* FAQ Page */
.faq-hero {
  background: linear-gradient(135deg, #f2c452 0%, #e6b045 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 0;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
}

.faq-hero h1 {
  color: #1a1a1a;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-hero-subtitle {
  color: #1a1a1a;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 500;
}

.faq-content {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faq-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(242,196,82,0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(242,196,82,0.02) 0%, transparent 50%);
  z-index: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242,196,82,0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: rgba(242,196,82,0.15);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-item p {
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

.faq-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.faq-steps li {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.faq-steps li:last-child {
  margin-bottom: 0;
}

.faq-cta {
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(242,196,82,0.1);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.faq-cta p {
  color: #4a5568;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Waiver */
.waiver {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
  color: #1a1a1a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waiver::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(242,196,82,0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(242,196,82,0.04) 0%, transparent 50%);
  z-index: 0;
}

.waiver h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.waiver p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #4a5568;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #f2c452 0%, #e6b045 100%);
  color: #1a1a1a;
  padding: 4rem 0 2rem;
  box-shadow: 0 -4px 25px rgba(242, 196, 82, 0.4);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.footer-section p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

.footer-section a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-section a:hover {
  color: #4a5568;
}

/* Store Page Styles */
.store-intro {
  text-align: center;
  margin: 4rem 0;
}

.store-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.store-intro h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.store-intro p {
  color: #4a5568;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.store-intro .store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.store-coming-soon {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
}

.coming-soon-card {
  background: white;
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 800px;
  border: 1px solid rgba(242,196,82,0.1);
}

.coming-soon-card h3 {
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.coming-soon-card p {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(242,196,82,0.05);
  border-radius: 12px;
  border: 1px solid rgba(242,196,82,0.1);
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: #f2c452;
  flex-shrink: 0;
}

.feature-item span {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
  color: #1a1a1a;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn {
    white-space: normal;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../images/hero-image-hd.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 2rem 1rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #f2c452;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 2rem 0 15rem 0;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(242, 196, 82, 0.3);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 0;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 1rem 2rem;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #1a1a1a;
  }
  
  .nav-link:hover {
    background-color: rgba(0,0,0,0.1);
    transform: translateY(-2px);
    color: #4a5568;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-hours p {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 250px;
    margin: 0.5rem 0;
  }
  
  .about-images {
    grid-template-columns: 1fr;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-hero {
    padding: 6rem 0 3rem;
  }
  
  .contact-main {
    padding: 4rem 0;
  }
  
  .social-links-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .party-intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .intro-text {
    order: 2;
  }
  
  .intro-image {
    order: 1;
  }
  
  .party-details-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .party-hero {
    padding: 8rem 0 3rem;
  }
  
  .party-content {
    padding: 4rem 0;
  }
  
  .party-cta {
    padding: 3rem 2rem;
  }
  
  .waiver-cta {
    padding: 2.5rem 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-hero {
    padding: 6rem 0 3rem;
  }
  
  .faq-content {
    padding: 4rem 0;
  }
  
  .testimonial blockquote {
    font-size: 24px;
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-hours p {
    font-size: 16px;
    padding: 0.8rem 1.5rem;
  }
  
  .about-text p {
    font-size: 18px;
  }
  
  .testimonial blockquote {
    font-size: 20px;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-card h3 {
    font-size: 24px;
  }
  
  .events h2 {
    font-size: 36px;
  }
  
  .waiver h2 {
    font-size: 32px;
  }
}