/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #22c55e;              /* vibrant green */
  --primary-foreground: #ffffff;
  --secondary: #00d4ff;
  --accent: #16a34a;               /* darker green accent */
  --background: #0a0a14;
  --surface: #1a1a2e;
  --foreground: #e5e5e5;
  --card: #1f1f35;
  --border: #2d2d4a;
  --muted: #4a4a6a;
  --muted-foreground: #a0a0b0;

  /* Ponuda page colors (koristi ih ponuda.html u svom inline CSS-u ako želiš) */
  --bg-dark: #050816;
  --bg-card: rgba(11, 18, 36, 0.92);
  --accent-yellow: #ffd54a;
  --accent-green: #25d366;
  --accent-pink: #ff4da6;
  --accent-blue: #3b82f6;
  --text-main: #f9fafb;
  --text-muted: #cbd5f5;
}

body {
  font-family: "Sansation", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(211, 212, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(211, 212, 0, 0.5);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-gallery-item {
  animation: scaleIn 0.6s ease-out forwards;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
}

/* LOGO: image + text u jednom redu, mali razmak */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.logo:hover {
  color: var(--accent);
  transform: scale(1.03);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  margin-left: 2rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 20, 0.98);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--foreground);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--muted-foreground);
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.language-switcher-mobile {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.lang-btn-mobile {
  flex: 1;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--muted-foreground);
  padding: 0.6rem;
  border-radius: 0.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.lang-btn-mobile.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.lang-btn-mobile:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-content {
    padding: 0 1rem;
    height: 60px;
  }

  .language-switcher {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.6);
  transform: scale(1.05);
}

.btn-outline {
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.2);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  transform: scale(1.05);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: 100%;
}

.btn-large {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-gatsby {
  background: linear-gradient(135deg, #4a5568, #2d3748);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-gatsby:hover {
  box-shadow: 0 8px 25px rgba(74, 85, 104, 0.5);
  transform: scale(1.05);
}

.btn-flamenco {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-flamenco:hover {
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  transform: scale(1.05);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 0; /* exactly under 80px navbar */
  background: linear-gradient(135deg, var(--background) 0%, #1a0a2e 100%);
}

/* full-bleed hero layout; image fixed 50vw on the left */
.hero-container {
  display: grid;
  grid-template-columns: 50vw 1fr;
  align-items: stretch;
  gap: 0;
  width: 100vw;
  max-width: 100%;
  margin: 0;
  padding: 0 2rem 0 0; /* content padding on right only */
  position: relative;
  z-index: 2;
}

/* this spans exactly 50% of the viewport and flushes to body left */
.hero-image-wrapper {
  position: relative;
  width: 50vw;
  height: calc(100vh - 80px); /* viewport minus navbar height */
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  justify-self: start;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding: 3rem 2rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.scroll-indicator p {
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  margin: 0 auto;
  position: relative;
}

.scroll-arrow::after {
  content: "";
  width: 2px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* ============================================
   SECTIONS (GLOBAL)
   ============================================ */

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, rgba(211, 212, 0, 0.2), rgba(179, 47, 181, 0.2));
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-badge.flamenco {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.2));
  color: #fca5a5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  position: relative;
  background: var(--background);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(179, 47, 181, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.services::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211, 212, 0, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(36, 36, 36, 0.5), rgba(13, 13, 13, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(211, 212, 0, 0.05), rgba(179, 47, 181, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(211, 212, 0, 0.2);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* ============================================
   GATSBY & FLAMENCO SHOWS
   ============================================ */

.gatsby-show {
  background: linear-gradient(to bottom, var(--background), rgba(74, 85, 104, 0.05));
  position: relative;
  overflow: hidden;
}

.gatsby-show::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(128, 128, 128, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.gatsby-show::after {
  content: "";
  position: absolute;
  bottom: 100px;
  right: 40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(128, 128, 128, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.flamenco-show {
  background: linear-gradient(to bottom, var(--background), rgba(220, 38, 38, 0.05));
  position: relative;
  overflow: hidden;
}

.flamenco-show::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.flamenco-show::after {
  content: "";
  position: absolute;
  bottom: 100px;
  right: 40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.flamenco-title {
  background: linear-gradient(135deg, #fca5a5, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.15) rotate(2deg);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.8),
    rgba(22, 163, 74, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover p {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
}

/* ============================================
   PERFORMANCES SECTION
   ============================================ */

.performances {
  background: linear-gradient(to bottom, var(--background), rgba(36, 36, 36, 0.5));
  position: relative;
  overflow: hidden;
}

.performances::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211, 212, 0, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.performances::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(179, 47, 181, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.performances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.performance-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease;
}

.performance-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
  transform: translateY(-10px);
}

.perf-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.perf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-card:hover .perf-image img {
  transform: scale(1.1);
}

.perf-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.performance-card:hover .perf-badge {
  transform: scale(1.1);
}

.perf-content {
  padding: 1.5rem;
}

.perf-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.performance-card:hover .perf-content h3 {
  color: var(--primary);
}

.perf-content p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211, 212, 0, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(179, 47, 181, 0.1), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(36, 36, 36, 0.5), rgba(13, 13, 13, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.5s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.contact-card:hover h3 {
  color: var(--primary);
}

.contact-card p {
  color: var(--muted-foreground);
}

.contact-form {
  background: linear-gradient(135deg, rgba(36, 36, 36, 0.5), rgba(13, 13, 13, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: scaleIn 0.6s ease-out forwards;
  opacity: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(13, 13, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
  background: rgba(13, 13, 13, 0.7);
}

.form-group textarea {
  resize: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(to top, rgba(36, 36, 36, 0.5), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(211, 212, 0, 0.05), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-col h3 {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.footer-col a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-col p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  gap: 0.5rem;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 1.5rem;
  }

  .hero-image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
  }

  .hero-content {
    padding: 2.5rem 0 0 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .services-grid,
  .performances-grid,
  .contact-cards,
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-content {
    padding: 2rem 0 0 0;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .header-content {
    padding: 0 0.75rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }
}

/* ====== PREMIUM BACKGROUND ZA SHOW SEKCIJE ====== */

.gatsby-show,
.flamenco-show,
.hawaii-show {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* šaren gradient pozadina iza svake sekcije */
.gatsby-show::before,
.flamenco-show::before,
.hawaii-show::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 0, 128, 0.22), transparent 60%),
    radial-gradient(circle at top right, rgba(0, 180, 255, 0.25), transparent 55%);
  z-index: 0;
  opacity: 1;
}

/* da se sadržaj vidi lepo iznad */
.gatsby-show .container,
.flamenco-show .container,
.hawaii-show .container {
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 20, 0.82);      /* tamna prozirna podloga */
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* malo spacing između headera, slika i kartica */
.gatsby-show .section-header,
.flamenco-show .section-header,
.hawaii-show .section-header {
  text-align: left;
  margin-bottom: 24px;
}

.gatsby-show .section-header h2,
.flamenco-show .section-header h2,
.hawaii-show .section-header h2 {
  margin-bottom: 8px;
}

.gatsby-show .section-header p,
.flamenco-show .section-header p,
.hawaii-show .section-header p {
  max-width: 520px;
}

/* =========== SHOW IMAGES (tvoj postojeći deo + malo finiji) =========== */

.show-images {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.show-image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.show-image {
  width: 100%;
  aspect-ratio: 3 / 4;          /* uspravne fotke – možeš promeniti ako treba */
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

/* da kartice performansi dišu malo u odnosu na slike */
.features-grid {
  margin-top: 1.5rem;
}

/* Mobile tweakovano da bude clean */

@media (max-width: 768px) {
  .gatsby-show .container,
  .flamenco-show .container,
  .hawaii-show .container {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .show-image-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .show-image-row {
    grid-template-columns: 1fr;
  }
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #ffffff; /* OVO čini SVG vidljivim */
}

.social-links a:hover {
  color: #ffdd55; /* ili tvoje brand highlight */
}

.icon {
  width: 26px;
  height: 26px;
}