/*
 * Tanzschule Neubeck Theme - EXACT from Astro Site
 */

:root {
  /* EXACT Colors from Astro Site */
  --primary-950: #3b0764;
  --primary-900: #581c87;
  --primary-800: #6b21a8;
  --primary-700: #7c3aed;
  
  --gold-400: #d4af37;
  --gold-300: #fde047;
  --gold-500: #c49940;
  
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--neutral-950);
  color: var(--neutral-100);
  line-height: 1.6;
  padding-top: 5rem;
}

/* Homepage - remove body padding, slider handles it */
body.home {
  padding-top: 0;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* Main content - no gaps */
#main-content {
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(to right, var(--gold-400), var(--gold-500));
  color: var(--primary-950);
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.3);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  margin-left: 1rem;
}

/* HEADER - Fixed Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to right, var(--primary-950), var(--primary-900), var(--primary-950));
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo img {
  height: 3.5rem;
  width: auto;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--neutral-200);
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--gold-400);
}

.chevron {
  transition: transform 0.2s;
}

.dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* Dropdown Mega Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: linear-gradient(to bottom, var(--primary-900), var(--primary-950));
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  padding: 1rem;
  z-index: 60;
}

.dropdown-wide {
  width: 600px;
}

.dropdown-single {
  min-width: 280px;
}

.dropdown-right {
  right: 0;
  left: auto;
}

.dropdown-center {
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-wide-paartanz {
  width: 550px;
}

.dropdown-menu:not(.dropdown-right):not(.dropdown-center) {
  left: 0;
  right: auto;
}

.dropdown-grid {
  display: grid;
  gap: 1.5rem;
}

.dropdown-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.dropdown-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.dropdown-section h3 {
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.5);
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-section li {
  margin-bottom: 0.5rem;
}

.dropdown-section a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--neutral-300);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.dropdown-section a:hover {
  color: var(--gold-400);
}

/* Icon styles in navigation */
.icon-item,
.icon-num {
  width: 1.25rem;
  color: rgba(212, 175, 55, 0.6);
  flex-shrink: 0;
}

.dropdown-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(124, 58, 237, 0.5);
  display: flex;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-300);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--gold-400);
}

.contact-link svg,
.contact-link i {
  color: var(--gold-400);
}

.has-dropdown {
  position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: var(--neutral-200);
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(124, 58, 237, 0.5);
  color: var(--gold-400);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
.nav-mobile {
  background: rgba(59, 7, 100, 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem 1rem;
}

.mobile-contact-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-700);
  margin-bottom: 1rem;
}

.mobile-contact-bar a {
  color: var(--gold-400);
  font-size: 0.875rem;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  color: var(--neutral-200);
  font-weight: 500;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background: rgba(124, 58, 237, 0.3);
  color: var(--gold-400);
}

.accordion-toggle.open .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.accordion-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--neutral-400);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.accordion-content a:hover {
  background: rgba(124, 58, 237, 0.2);
  color: var(--gold-400);
}

.mobile-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-700);
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-400);
}

.mobile-footer a {
  color: var(--gold-400);
}

.mobile-footer p {
  margin-bottom: 0.5rem;
}

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

.mobile-social a {
  font-size: 1.5rem;
  color: var(--neutral-400);
  transition: color 0.2s;
}

.mobile-social a:hover {
  color: var(--gold-400);
}

.mobile-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-legal a {
  color: var(--neutral-400);
  font-size: 0.875rem;
}

.mobile-legal a:hover {
  color: var(--gold-400);
}

.mobile-nav-content {
  margin-bottom: 1rem;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(115, 115, 115, 0.5);
}

.mobile-nav-single {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(115, 115, 115, 0.5);
}

/* AlpineJS utilities */
[x-cloak] {
  display: none !important;
}

.rotate-180 {
  transform: rotate(180deg);
}

.mobile-nav-link i.fa-chevron-down {
  transition: transform 0.2s;
}

/* Prose - Rich Text */
.prose {
  max-width: 65ch;
  color: var(--neutral-300);
  line-height: 1.75;
}

.prose h2 {
  color: var(--gold-400);
  font-size: 1.875rem;
  margin: 2rem 0 1rem;
}

.prose h3 {
  color: var(--neutral-100);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose a {
  color: var(--gold-400);
}

.prose a:hover {
  color: var(--gold-300);
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.625rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--gold-400);
  padding-left: 1.5rem;
  color: var(--gold-400);
  font-style: italic;
  margin: 2rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.prose td, .prose th {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.prose-invert { color: var(--neutral-200); }
.prose-lg { font-size: 1.125rem; }
.max-w-none { max-width: none; }

/* Utility Classes */
.text-white { color: #fff; }
.text-gold-400 { color: var(--gold-400); }
.text-gold-300 { color: var(--gold-300); }
.text-neutral-100 { color: var(--neutral-100); }
.text-neutral-200 { color: var(--neutral-200); }
.text-neutral-300 { color: var(--neutral-300); }
.text-neutral-400 { color: var(--neutral-400); }

.bg-gradient-to-br {
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(59, 7, 100, 0.5));
}

.border { border-width: 1px; }
.border-primary-700\/30 { border-color: rgba(124, 58, 237, 0.3); }
.border-gold-400 { border-color: var(--gold-400); }
.border-gold-400\/30 { border-color: rgba(212, 175, 55, 0.3); }
.rounded-xl { border-radius: 0.75rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mr-2 { margin-right: 0.5rem; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Course Page Two-Column Layout */
.course-layout {
  margin-top: 2rem;
}

.course-info {
  order: 1;
}

.course-iframe {
  order: 2;
}

.iframe-container {
  position: sticky;
  top: 6rem;
}

.iframe-placeholder {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky { position: sticky; }
.top-24 { top: 6rem; }

@media (max-width: 1023px) {
  .course-layout {
    display: flex;
    flex-direction: column;
  }

  .course-info {
    order: 1;
  }

  .course-iframe {
    order: 2;
    margin-top: 2rem;
  }

  .iframe-container {
    position: static;
  }
}

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.overflow-hidden { overflow: hidden; }

.w-full { width: 100%; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.object-cover { object-fit: cover; }

.transition-all { transition: all 0.3s; }
.hover\\:bg-primary-800\/30:hover { background-color: rgba(107, 33, 168, 0.3); }
.hover\\:border-gold-400\/50:hover { border-color: rgba(212, 175, 55, 0.5); }
.hover\\:text-gold-300:hover { color: var(--gold-300); }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.list-none { list-style: none; }
.pl-6 { padding-left: 1.5rem; }

/* Alpine.js */
[x-cloak] { display: none !important; }
.rotate-180 { transform: rotate(180deg); }

/* Cards */
.card {
  background: linear-gradient(to bottom right, var(--primary-900), var(--primary-950));
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

/* Additional Styling - Complete from Astro Site */

/* Hero Image Section */
.hero-image-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--neutral-200);
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

/* Page Content Sections */
.page-content {
  padding: 3rem 0;
}

/* Accordion Sections with Alpine.js */
.accordion-container {
  margin: 3rem 0;
}

.accordion-item {
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(59, 7, 100, 0.5));
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-button {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}

.accordion-button:hover {
  background-color: rgba(107, 33, 168, 0.3);
}

.accordion-icon {
  color: var(--gold-400);
  transition: transform 0.2s;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--neutral-300);
  line-height: 1.75;
}

.accordion-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}

/* Course Boxes Grid */
.course-boxes-section {
  margin: 3rem 0;
}

.course-boxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .course-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .course-boxes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-box {
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(59, 7, 100, 0.5));
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  overflow: hidden;
  transition: all 0.3s;
}

.course-box:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.course-box-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.course-box-content {
  padding: 1.5rem;
}

.course-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.course-box-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-400);
  font-weight: 600;
  transition: color 0.2s;
}

.course-box-link:hover {
  color: var(--gold-300);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(59, 7, 100, 0.5));
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.gallery-caption {
  padding: 1rem;
}

.gallery-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.gallery-description {
  font-size: 0.875rem;
  color: var(--neutral-400);
}

/* ABO Pricing Tabs */
.abo-tabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .abo-tabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .abo-tabs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.abo-tab {
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(59, 7, 100, 0.5));
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 2rem;
  transition: all 0.3s;
}

.abo-tab:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.abo-tab-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.abo-tab-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.abo-tab-description {
  color: var(--neutral-300);
  margin-bottom: 1.5rem;
}

.abo-tab-benefits {
  color: var(--neutral-300);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Content Blocks */
.content-block {
  margin: 2rem 0;
}

.content-block-image {
  width: 100%;
  border-radius: 0.75rem;
  margin: 2rem 0;
}

.content-block-caption {
  text-align: center;
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Page Title Section */
.page-title-section {
  background: linear-gradient(to bottom right, var(--primary-900), var(--primary-800), var(--primary-950));
  padding: 4rem 1rem;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
}

.page-excerpt {
  font-size: 1.25rem;
  color: var(--neutral-200);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

/* Section Headers */
.section-header {
  margin: 3rem 0 2rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-400);
}

/* Info Boxes */
.info-box {
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), rgba(245, 158, 11, 0.05));
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box-title {
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box-content {
  color: var(--neutral-300);
  line-height: 1.75;
}

.info-box-content ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.info-box-content li {
  margin-bottom: 0.5rem;
}

/* Responsive Images */
figure {
  margin: 2rem 0;
}

figcaption {
  text-align: center;
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.3), rgba(59, 7, 100, 0.3));
  border-radius: 0.75rem;
  overflow: hidden;
}

thead {
  background: rgba(124, 58, 237, 0.5);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--gold-400);
  border-bottom: 1px solid rgba(124, 58, 237, 0.5);
}

td {
  padding: 1rem;
  color: var(--neutral-300);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background: rgba(124, 58, 237, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Spacing Utilities */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }

/* Additional Text Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-capitalize: capitalize; }

/* Hidden */
[hidden] {
  display: none !important;
}

/* Page Hero Section - Default background for pages without featured image */
.page-hero-section {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.page-hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 7, 100, 0.95), rgba(88, 28, 135, 0.7), rgba(0, 0, 0, 0.3));
}

.page-hero-section .hero-content {
  position: relative;
  width: 100%;
  padding: 3rem 1.5rem;
  z-index: 1;
}

.page-hero-section .hero-content h1 {
  font-size: 2.5rem;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.page-hero-section .hero-content p {
  font-size: 1.125rem;
  color: var(--neutral-200);
}

@media (min-width: 768px) {
  .page-hero-section {
    min-height: 500px;
  }

  .page-hero-section .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* ========================================
   FOOTER STYLES - Matching Laravel/Astro
   ======================================== */

.site-footer {
  background: linear-gradient(to bottom, var(--neutral-900), var(--neutral-950));
  border-top: 1px solid rgba(107, 33, 168, 0.3);
  margin-top: 0;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer Column Titles */
.footer-title {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-subtitle {
  color: rgba(168, 85, 247, 0.8);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.footer-title + .footer-subtitle {
  margin-top: 0;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-400);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-400);
}

/* Footer Divider */
.footer-divider {
  border-top: 1px solid var(--neutral-700);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

/* Social Media Icons */
.social-label {
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(107, 33, 168, 0.5);
  color: var(--neutral-300);
  transition: all 0.2s;
}

.social-icon:hover {
  color: var(--gold-400);
  background: rgba(107, 33, 168, 0.7);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer Contact Section */
.footer-address {
  font-style: normal;
  color: var(--neutral-400);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-address .company-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neutral-300);
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--gold-400);
}

.footer-contact-link .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(107, 33, 168, 0.5);
  transition: background 0.2s;
}

.footer-contact-link:hover .icon-box {
  background: rgba(107, 33, 168, 0.7);
}

.footer-contact-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-contact-link .phone-number {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Footer Copyright */
.footer-copyright {
  color: var(--neutral-500);
  font-size: 0.75rem;
  margin-top: 2rem;
}

.footer-admin-link {
  color: var(--neutral-600);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.footer-admin-link a:hover {
  color: var(--neutral-400);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--neutral-800);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

.footer-tagline {
  color: var(--neutral-500);
  font-size: 0.875rem;
}

.footer-logo {
  height: 2rem;
  opacity: 0.5;
}

/* Contact Card in Legal Pages */
.contact-card {
  background: linear-gradient(to bottom right, var(--primary-900), var(--primary-950));
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 2rem;
  margin-top: 3rem;
}

.contact-card h3 {
  color: var(--gold-400);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--neutral-300);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--gold-400);
}

.contact-card a:hover {
  color: var(--gold-300);
}

/* Print Styles */
@media print {
  .header, .site-footer, .nav-mobile, .mobile-menu-btn {
    display: none;
  }

  body {
    padding-top: 0;
  }
}
