/* Design system - all colors are in HSL format */
:root {
  --background: 0 0% 8%;
  --foreground: 315 100% 95%;

  --card: 0 0% 12%;
  --card-foreground: 315 100% 95%;

  --popover: 0 0% 12%;
  --popover-foreground: 315 100% 95%;

  --primary: 315 100% 50%;
  --primary-foreground: 0 0% 8%;

  --secondary: 0 0% 15%;
  --secondary-foreground: 315 100% 95%;

  --muted: 0 0% 15%;
  --muted-foreground: 315 20% 70%;

  --accent: 315 100% 50%;
  --accent-foreground: 0 0% 8%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 0 0% 20%;
  --input: 0 0% 15%;
  --ring: 315 100% 50%;

  --radius: 0.75rem;

  /* Custom design tokens */
  --neon-pink: 315 100% 50%;
  --neon-pink-glow: 315 100% 65%;
  --deep-black: 0 0% 8%;
  --charcoal: 0 0% 12%;
  --dark-gray: 0 0% 15%;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--deep-black)), hsl(315 50% 15%));
  --gradient-neon: linear-gradient(135deg, hsl(var(--neon-pink)), hsl(315 100% 65%));
  --gradient-card: linear-gradient(145deg, hsl(var(--charcoal)), hsl(var(--dark-gray)));

  /* Shadows and glows */
  --shadow-neon: 0 0 20px hsl(var(--neon-pink) / 0.5);
  --shadow-neon-lg: 0 0 40px hsl(var(--neon-pink) / 0.6);
  --shadow-dark: 0 10px 40px hsl(0 0% 0% / 0.8);

  /* Transitions */
  --transition-glow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility classes */
.neon-glow {
  box-shadow: var(--shadow-neon);
  transition: var(--transition-glow);
}

.neon-glow-lg {
  box-shadow: var(--shadow-neon-lg);
  transition: var(--transition-glow);
}

.neon-text {
  color: hsl(var(--neon-pink));
  text-shadow: 0 0 10px hsl(var(--neon-pink) / 0.8);
}

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

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-image.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--deep-black) / 0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 6rem;
  font-family: "Blacksword", serif;
  margin-bottom: 1.5rem;
}

.hero-logo {
  height: 8rem;
  width: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
  max-width: 90%;
}

.hero-title-normal {
  color: hsl(var(--foreground));
}

.hero-subtitle {
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: calc(var(--radius) - 2px);
  transition: var(--transition-glow);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-neon);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  box-shadow: var(--shadow-neon-lg);
}

.btn-secondary {
  border: 1px solid hsl(var(--neon-pink));
  color: hsl(var(--neon-pink));
  background: transparent;
}

.btn-secondary:hover {
  background: hsl(var(--neon-pink));
  color: hsl(var(--primary-foreground));
}

.btn-instagram {
  background: var(--gradient-primary);
  color: hsl(var(--foreground));
}

.btn-instagram:hover {
  box-shadow: var(--shadow-neon);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 1.5rem;
  background: var(--gradient-primary);
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: var(--transition-glow);
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow-neon);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.card-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: hsl(var(--neon-pink));
  border-radius: 50%;
  margin-right: 0.75rem;
  box-shadow: var(--shadow-neon);
  flex-shrink: 0;
}

.service-price {
  color: hsl(var(--neon-pink));
  font-weight: bold;
  font-size: 1.125rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 1.5rem;
  background: var(--gradient-primary);
}

.gallery-container {
  display: flex;
  justify-content: center;
}

.instagram-feed-container {
  width: 100%;
  max-width: 72rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px hsl(0 0% 0% / 0.2);
  overflow: hidden;
  background: var(--gradient-card);
  padding: 1.5rem;
}

.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: hsl(var(--neon-pink));
  text-shadow: 0 0 10px hsl(var(--neon-pink) / 0.8);
}

.instagram-subtitle {
  color: hsl(var(--muted-foreground));
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.instagram-post {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: hsl(var(--muted) / 0.2);
  transition: var(--transition-glow);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-post:hover {
  box-shadow: var(--shadow-neon);
}

.instagram-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
}

.instagram-svg {
  width: 2rem;
  height: 2rem;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: hsl(0 0% 0% / 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay-text {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.instagram-footer {
  text-align: center;
}

.instagram-footer-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.gallery-bottom {
  text-align: center;
  margin-top: 3rem;
}

.gallery-bottom-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.gallery-link {
  color: hsl(var(--neon-pink));
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: none;
}

.gallery-link:hover {
  color: hsl(var(--neon-pink-glow));
}

.gallery-arrow {
  margin-left: 0.5rem;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 1.5rem;
  background: var(--gradient-primary);
}

.reviews-stats {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-container {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.stats-rating {
  text-align: center;
}

.rating-number {
  font-size: 2rem;
  font-weight: bold;
  color: hsl(var(--neon-pink));
}

.rating-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.star {
  font-size: 1.125rem;
}

.star-filled {
  color: hsl(var(--neon-pink));
}

.star-empty {
  color: hsl(var(--muted-foreground) / 0.3);
}

.rating-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.stats-divider {
  width: 1px;
  height: 4rem;
  background: hsl(var(--border));
  margin: 0 1rem;
}

.stats-verified {
  text-align: center;
}

.verified-percentage {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.verified-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

.review-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: var(--transition-glow);
  padding: 1.5rem;
}

.review-card:hover {
  box-shadow: var(--shadow-neon);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-user {
  flex: 1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.user-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.verified-badge {
  font-size: 0.75rem;
  background: hsl(var(--neon-pink) / 0.2);
  color: hsl(var(--neon-pink));
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--radius) - 4px);
}

.review-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.review-rating {
  display: flex;
}

.review-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-service {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground) / 0.8);
  border-top: 1px solid hsl(var(--border));
  padding-top: 0.75rem;
}

.reviews-footer {
  text-align: center;
  margin-top: 3rem;
}

.reviews-footer-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.reviews-link {
  color: hsl(var(--neon-pink));
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: none;
}

.reviews-link:hover {
  color: hsl(var(--neon-pink-glow));
}

.reviews-arrow {
  margin-left: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1.5rem;
  background: var(--gradient-primary);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.map-container {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.contact-details p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.contact-link {
  color: hsl(var(--neon-pink));
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-link:hover {
  color: hsl(var(--neon-pink-glow));
}

.hours-list {
  color: hsl(var(--muted-foreground));
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.hours-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.hours-note p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

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

.social-link {
  color: hsl(var(--neon-pink));
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  color: hsl(var(--neon-pink-glow));
}

/* Footer */
.footer {
  background: hsl(var(--deep-black));
  padding: 3rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  font-family: "Blacksword", serif;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-description {
  color: hsl(var(--muted-foreground));
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: hsl(var(--neon-pink));
}

.footer-details p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.footer-contact-link {
  display: block;
  color: hsl(var(--neon-pink));
  transition: color 0.3s ease;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-contact-link:hover {
  color: hsl(var(--neon-pink-glow));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-title {
    font-size: 8rem;
  }

  .hero-logo {
    height: 10rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

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

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

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

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

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

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

  .stats-container {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1280px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

/* Accessibility Styles */
/* Screen reader only text - accessible but hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus\:absolute:focus {
  position: absolute;
}

.focus\:top-4:focus {
  top: 1rem;
}

.focus\:left-4:focus {
  left: 1rem;
}

.focus\:z-50:focus {
  z-index: 50;
}
