/* Hen Party Theme Styles - 80s Retro Design */

/* Clean Hero Section - Inspired by dance-birm-full style */
.hero-80s, .hero-hen-party {
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  border-bottom: 3px solid var(--accent);
}

.hero-80s::after, .hero-hen-party::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-content {
  padding-right: var(--space-xl);
}

.hero-80s h1, .hero-hen-party h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #666666;
  margin-bottom: var(--space-xl);
  line-height: 1.4;
}

.btn-primary {
  display: inline-block;
  background-color: #000000;
  color: var(--accent);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-base);
  border: 2px solid #000000;
  border-radius: 0;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
}

/* Add container padding for hero */
.hero-80s .container, .hero-hen-party .container {
  padding: 0 var(--container-padding);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-80s, .hero-hen-party {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-80s h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-tagline {
    font-size: 1.125rem;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .btn-primary {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Accent Button for 80s Theme */
.btn-accent {
  background-color: #000000;
  color: var(--accent) !important;
  border: 2px solid #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accent:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Outline Button for Dark Background */
.hero-80s .btn-outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.hero-80s .btn-outline:hover {
  background-color: white;
  color: #000000;
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-slow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent) 0%, transparent 100%);
  opacity: 0.03;
  z-index: 1;
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
  transition: filter var(--transition-base);
}

.image-frame:hover img {
  filter: grayscale(100%) contrast(1.2) brightness(1);
}

/* Subtle 80s Effect */
.hero-80s h1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
  transition: all 1s ease;
  pointer-events: none;
  z-index: -1;
}

.hero-80s:hover h1::after {
  opacity: 0.05;
  transform: translateY(-50%) translateX(100%);
}

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #f8f8f8;
  padding: calc(var(--space-md) * 0.25) 0;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #666666;
}

.breadcrumb-item::after {
  content: '/';
  margin: 0 var(--space-sm);
  color: #999999;
}

.breadcrumb-item:last-child::after {
  content: none;
}

.breadcrumb-item a {
  color: #666666;
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #000000;
  font-weight: 600;
}

/* Mobile Responsive for Breadcrumb */
@media (max-width: 480px) {
  .breadcrumb {
    padding: calc(var(--space-sm) * 0.25) 0;
  }
  
  .breadcrumb-list {
    font-size: 0.75rem;
  }
  
  .breadcrumb-item::after {
    margin: 0 var(--space-xs);
  }
}

/* What to Expect Section */
.what-to-expect {
  padding: var(--space-3xl) 0;
  background-color: #f8f8f8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-intro {
  font-size: 1.125rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.expect-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.expect-content {
  background: #ffffff;
  padding: var(--space-xl);
  border: 1px solid #e5e5e5;
}

.pricing-info {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
}

.pricing-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-md);
  text-align: center;
}

.price-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.price-option {
  background: #ffffff;
  padding: var(--space-md);
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}

.price-option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.price-option .price {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.price-option .duration {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.price-option .details {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.3;
}

.expect-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.expect-step:last-child {
  margin-bottom: 0;
}

.expect-number {
  background-color: #000000;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-sm);
}

.step-content p {
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.music-choices {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f8f8f8;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  text-align: center;
}

.music-choices h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-sm);
}

.music-choices p {
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.expect-form {
  background: #f8f8f8;
  padding: var(--space-xl);
  border: 1px solid #e5e5e5;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.expect-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-xs);
  text-align: center;
}

.expect-form > p {
  color: #666666;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.quick-booking-form .form-group {
  margin-bottom: var(--space-md);
}

.quick-booking-form label {
  font-weight: 600;
  color: #000000;
  margin-bottom: var(--space-xs);
  display: block;
}

.quick-booking-form input,
.quick-booking-form select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: border-color var(--transition-base);
}

.quick-booking-form input:focus,
.quick-booking-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-form {
  width: 100%;
  padding: var(--space-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.expect-form .form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

/* Mobile responsive for new layout */
@media (max-width: 968px) {
  .expect-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .expect-form {
    position: static;
  }
  
  .expect-step {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .expect-number {
    align-self: center;
  }
  
  .price-options {
    grid-template-columns: 1fr;
  }
}

/* Class Details Section */
.class-details {
  padding: var(--space-3xl) 0;
  background-color: #ffffff !important;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.class-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.detail-box {
  background: #ffffff;
  padding: var(--space-xl);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent);
}

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

.detail-box li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: #000000;
  font-weight: 500;
}

.detail-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.section-cta .btn-large {
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  border-radius: 0;
  width: 350px;
  max-width: 90%;
}

@media (max-width: 768px) {
  .section-cta .btn-large {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    width: 350px;
    max-width: 90%;
    display: inline-block;
  }
}

/* Venues Info Section */
.venues-info {
  padding: var(--space-3xl) 0;
  background-color: #f8f8f8;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.venue-location {
  background: #ffffff;
  padding: var(--space-xl);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.venue-location:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.venue-location h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-sm);
}

.venue-address {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: var(--space-xs);
}

.venue-distance {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.venue-tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.venue-tag {
  background-color: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venue-nearby {
  font-size: 0.8rem;
  color: #666666;
  font-style: italic;
  margin: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid #f0f0f0;
}

/* Gallery Section */
.gallery-80s, .gallery-hen-party {
  padding: var(--space-3xl) 0;
  background-color: #ffffff !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: all var(--transition-slow);
}

.gallery-item:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: var(--space-md);
  transition: background var(--transition-base);
}

.gallery-item:hover .image-overlay {
  background: rgba(0, 0, 0, 0.85);
}

.image-caption {
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsive for gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .image-wrapper {
    height: 250px;
  }
}

/* Reviews Section */
.reviews-section {
  padding: var(--space-3xl) 0;
  background-color: #f8f8f8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.review-card {
  background: #ffffff;
  padding: var(--space-xl);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.review-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 var(--space-lg) 0;
}

.review-author {
  padding-top: var(--space-md);
  border-top: 1px solid #f0f0f0;
}

.author-name {
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-xs);
}

.author-details {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
}

.review-summary {
  background: #ffffff;
  padding: var(--space-xl);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  text-align: center;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-text {
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

/* Mobile responsive for reviews */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: var(--space-3xl) 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.faq-grid {
  display: grid;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f8f8;
  padding: var(--space-xl);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.faq-item h3::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.faq-cta {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: #f8f8f8;
  border-radius: var(--radius-md);
}

.faq-cta p {
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

/* Mobile responsive for FAQ */
@media (max-width: 768px) {
  .faq-grid {
    gap: var(--space-md);
  }
  
  .faq-item {
    padding: var(--space-lg);
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
}







/* Step Numbers and Badges for Theme Pages */
.step-number {
  background-color: #000000 !important;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.popular-badge {
  background-color: #000000 !important;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Theme-specific Form Buttons */
.theme-form .btn-submit {
  background-color: #000000;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-form .btn-submit:hover {
  background-color: white;
  color: #000000;
  border-color: white;
}

/* Section Styling for Theme Pages */
.theme-section {
  padding: var(--space-3xl) 0;
}

.theme-section:nth-child(even) {
  background-color: #000000;
  color: white;
}

.theme-section:nth-child(even) h2,
.theme-section:nth-child(even) h3 {
  color: white;
}

.theme-section:nth-child(even) p {
  color: rgba(255, 255, 255, 0.8);
}

/* Content Cards for Theme Sections */
.theme-card {
  background: white;
  border: 2px solid #000000;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 48, 0.05), transparent);
  transition: left 0.8s ease;
}

.theme-card:hover::before {
  left: 100%;
}

.theme-card h3 {
  color: #000000;
  margin-bottom: var(--space-md);
  position: relative;
}

.theme-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }
  
  .hero-80s {
    padding: 100px 0 60px;
    min-height: 70vh;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .image-frame {
    transform: none;
    margin-top: var(--space-lg);
  }
  
  .image-frame:hover {
    transform: scale(1.02);
  }
  
  .hero-highlights {
    text-align: left;
    margin-top: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-80s h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}