/* Global Styles */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

* {
  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: #333; */
}

/* Accessibility Utilities */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

/* Focus Management */
*:focus {
  outline: var(--focus-outline-width) solid var(--focus-outline) !important;
  outline-offset: 2px !important;
}

/* Skip to content link */
.sr-only-focusable:focus {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 9999 !important;
  background: var(--focus-outline) !important;
  color: white !important;
  padding: 8px 16px !important;
  text-decoration: none !important;
  border-radius: 0 0 4px 0 !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --focus-outline: #000000;
    --focus-outline-width: 4px;
  }
  
  body {
    color: var(--high-contrast-text);
    background: var(--high-contrast-bg);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  .nav-link {
    border: 1px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .gallery-main-image,
  .gallery-side-image {
    transition: none !important;
  }
  
  .service-card:hover {
    transform: none !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --high-contrast-text: #ffffff;
    --high-contrast-bg: #1a1a1a;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-image img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: #6c757d;
  margin-bottom: 1rem;
}

.service-performers {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}


#performer-wrapper {
  background: #111;
}

/* Performer Cards */
.performer-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.performer-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.performer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.performer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.performer-role {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Button Styles */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* Container and Layout */
.container-fluid {
  max-width: 100%;
}

/* Background Colors */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Text Colors */
.text-primary {
  color: var(--primary-color) !important;
}

.text-white {
  color: white !important;
}

.text-muted {
  color: #6c757d !important;
}

/* Navigation Styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
}

.nav-link.active {
  color: #A5A5A5 !important;
  font-weight: 700;
  border-bottom: 2px solid #A5A5A5;
  background-color: rgba(165, 165, 165, 0.1);
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* Card Hover Effects */
.performer-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Badge Styles */
.badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
}

/* Responsive Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Section Spacing */
.section-spacing {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 2rem 0;
  }
}

/* ===== PERFORMER GALLERY STYLES ===== */
/* Custom styles for PerformerGallery component */
.performer-gallery-container {
  text-align: center;
}

.performer-gallery-name h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.performer-gallery-preview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  height: 400px;
  min-height: 400px;
}

/* Main large image on the left - spans 2 rows */
.gallery-main-image {
  grid-column: 1;
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  min-height: 100%;
}

.gallery-main-image:hover {
  transform: scale(1.02);
}

/* Side images container on the right */
.gallery-side-images {
  display: contents; /* This makes the children direct grid items */
}

/* First side image - top right */
.gallery-side-image:first-child {
  grid-column: 2;
  grid-row: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  min-height: 100%;
}

/* Second side image - bottom right */
.gallery-side-image:last-child {
  grid-column: 2;
  grid-row: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  min-height: 100%;
}

.gallery-side-image:hover {
  transform: scale(1.02);
}

/* Lightbox styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Lightbox navigation buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 0;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lightbox-close:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.lightbox-close i {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Navigation arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
  .performer-gallery-name h3 {
    font-size: 1.25rem;
  }
  
  .performer-gallery-preview {
    max-width: 100%;
    height: 300px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-close:hover {
    transform: scale(1.05);
  }
  
  .lightbox-counter {
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .performer-gallery-name h3 {
    font-size: 1.1rem;
  }
  
  .performer-gallery-preview {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 250px;
    gap: 8px;
  }
  
  .gallery-main-image {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  
  .gallery-side-image:first-child {
    grid-column: 2;
    grid-row: 1;
  }
  
  .gallery-side-image:last-child {
    grid-column: 2;
    grid-row: 2;
    display: block; /* Show third image on mobile */
  }
  
  .lightbox-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .lightbox-prev {
    left: 5px;
  }
  
  .lightbox-next {
    right: 5px;
  }
} 

/* Accordion table styling - ensure consistent padding across all sections */
#profile-accordion .table {
  margin-bottom: 0;
}

#profile-accordion .table th,
#profile-accordion .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: none;
  border-bottom: none;
}

#profile-accordion .table th {
  font-weight: 600;
}

#profile-accordion .table td {
}

/* Ensure consistent text color for all accordion content */
#profile-accordion .panel-body {
}

#profile-accordion .panel-body p {
} 

/* Footer Styles */
.footer-row {
  /* margin-bottom: 0.5rem; */
  text-align: center;
}

.footer-row:last-child {
  margin-bottom: 0;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0.5rem; */
} 