/* CSS Reset & Variables */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors - Dark Luxury Nightclub Theme */
  --primary-dark: #0a0a0a;
  --primary-deeper: #1a1a1a;
  --accent-purple: #8b5cf6;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --text-muted: #9ca3af;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  --gradient-secondary: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  --gradient-accent: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));

  /* Shadows */
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.5);
  --glow-blue: 0 0 30px rgba(59, 130, 246, 0.5);
  --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.8);

  /* Typography */
  --font-display: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--primary-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/photo-1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.2);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(139, 92, 246, 0.3),
    transparent 50%,
    rgba(59, 130, 246, 0.2)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroEntry 2s var(--transition-smooth) both;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.club-text {
  display: block;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--glow-purple);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.ambrozja-text {
  display: block;
  background: var(--gradient-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--glow-blue);
  animation: titleGlow 2s ease-in-out infinite alternate-reverse;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-gray);
  margin-bottom: 2rem;
  animation: fadeInUp 1.5s var(--transition-smooth) 0.5s both;
}

.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1.5s var(--transition-smooth) 0.7s both;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: #fbbf24;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.star.partial {
  background: linear-gradient(90deg, #fbbf24 80%, var(--text-muted) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-text {
  font-weight: 500;
  color: var(--text-gray);
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 1.5s var(--transition-smooth) 0.9s both;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--glow-purple);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.8);
}

.cta-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.cta-secondary:hover {
  background: var(--accent-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.8);
}

.cta-icon {
  font-size: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: var(--gradient-primary);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--accent-purple);
}

/* Section Titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--text-white);
}

.title-line {
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
}

/* Gallery Section */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--primary-deeper);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--primary-dark), transparent);
}

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-purple);
  box-shadow: var(--glow-purple);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.1);
}

/* Reviews Section */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--primary-dark);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--primary-deeper), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-purple);
  border-color: var(--accent-purple);
}

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

.review-stars span {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.review-author {
  font-weight: 600;
  color: var(--text-white);
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact {
  padding: var(--section-padding) 0;
  background: var(--primary-deeper);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--primary-dark), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.hours-card,
.contact-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.hours-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
  border-color: var(--accent-blue);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text-white);
  text-align: center;
}

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

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

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

.hours-item.weekend {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), transparent);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day {
  font-weight: 500;
  color: var(--text-gray);
}

.time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 2rem;
}

.contact-link {
  color: var(--text-gray);
  text-decoration: none;
  transition: all var(--transition-smooth);
  line-height: 1.6;
}

.contact-link:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.contact-text {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link,
.footer-social {
  color: var(--text-gray);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.footer-link:hover,
.footer-social:hover {
  color: var(--accent-purple);
  text-shadow: var(--glow-purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: scaleIn 0.3s ease-out;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-heavy);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -50px;
  background: var(--accent-purple);
  color: white;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.lightbox-close:hover {
  transform: scale(1.1);
  box-shadow: var(--glow-purple);
}

/* Animations */
@keyframes slowZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.05); }
}

@keyframes heroEntry {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: clamp(3rem, 6vw, 6rem);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    gap: 1rem;
  }

  .title-line {
    width: 50px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .lightbox-close {
    top: -40px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 375px) {
  .hero-ctas {
    gap: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title {
    gap: 0.5rem;
  }

  .title-line {
    width: 30px;
    height: 1px;
  }

  .review-card,
  .hours-card,
  .contact-card {
    padding: 1.5rem;
  }
}