/*
Theme Name: Event Flash Theme
Theme URI: https://www.event-flash.de
Author: Event Flash
Author URI: https://www.event-flash.de
Description: Ein exklusives Theme für Event Flash, portiert von React.
Version: 1.0.0
Text Domain: event-flash-theme
*/

/* --- CSS from React App will be enqueued separately or appended here --- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0b79c4;
  --primary-hover: #09609c;
  --bg-color: #FFFFFF;
  --text-main: #1a1a1a;
  --text-muted: #64748b;
  --bg-subtle: #f8fafc;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --radius: 16px;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  /* Locked and warning state color variables */
  --warning-color: #f59e0b;
  --warning-color-hover: #d97706;
  --warning-shadow: rgba(245, 158, 11, 0.3);
  --locked-color: #94a3b8;
  --locked-color-hover: #64748b;
}

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

html, body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

/* Global SVG / Lucide Icon styles to prevent layout shifts on iOS Safari */
svg.lucide,
.lucide,
i[data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section {
  padding: 6rem 0;
}

@media (max-width: 992px) {
  .section {
    padding: 4.5rem 0;
  }
}

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

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

/* Base UI Elements */
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: inset 0 0 0 2px var(--primary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 2px var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background-color: var(--text-main);
  color: #fff;
  box-shadow: inset 0 0 0 2px var(--text-main);
}

.card {
  background: var(--bg-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* enable ::after overlay */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

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

/* Glassmorphism Panel */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Mesh Backgrounds */
.bg-mesh {
  background-color: #ffffff;
  background-image: 
    radial-gradient(at 0% 0%, hsla(203, 89%, 41%, 0.05) 0px, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(203, 89%, 41%, 0.03) 0px, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(203, 89%, 41%, 0.05) 0px, transparent 50%);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 121, 196, 0.1);
  outline: none;
}

/* Custom Radio Group */
.radio-group {
  display: flex;
  gap: 1rem;
}

.radio-label {
  flex: 1;
  cursor: pointer;
}

.radio-input {
  display: none;
}

.radio-content {
  display: block;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.radio-input:checked + .radio-content {
  border-color: var(--primary-color);
  background-color: rgba(11, 121, 196, 0.05);
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  cursor: default;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  z-index: 10000;
  padding: 10px;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  padding: 20px;
  z-index: 10000;
  transition: background-color 0.3s ease;
  border-radius: 50%;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* Gallery UI Elements */
.image-gallery-main:hover .image-zoom-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.image-zoom-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.gallery-thumb-container {
  position: relative;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  aspect-ratio: 4 / 3;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-thumb-container:hover .gallery-thumb {
  transform: scale(1.05);
}

.gallery-thumb-container:hover .thumb-overlay {
  opacity: 1;
}

.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 121, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  backdrop-filter: blur(4px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-color);
  /* Removed strong blur and border for a cleaner, flatter look */
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02); /* Extremely subtle line */
  transition: all 0.3s ease;
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo,
.custom-logo {
  height: 48px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.logo:hover,
.custom-logo-link:hover .custom-logo {
  opacity: 1;
}

.main-nav ul {
  display: flex;
  gap: 3rem; /* More breathing room */
}

.main-nav a {
  color: var(--text-main);
  font-weight: 400; /* Lighter font weight for minimalism */
  font-size: 0.9rem;
  letter-spacing: 1px; /* More tracking */
  text-transform: uppercase;
  transition: color 0.3s ease;
  opacity: 0.7;
}

.main-nav a:hover {
  color: var(--text-main);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  padding: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.cart-btn:hover {
  opacity: 1;
}

/* Minimalist Cart Badge (Just a tiny dot or clean number) */
.cart-badge {
  position: absolute;
  top: 0px;
  right: -2px;
  background-color: #f43f5e; /* Use a vivid accent color for badge */
  color: white;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-main);
  padding: 0.5rem;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    z-index: 105;
    visibility: hidden;
  }

  .main-nav.nav-open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .main-nav a {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.footer {
  margin-top: 6rem;
  padding: 4rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
}

.footer-brand .footer-logo,
.footer-brand .custom-logo {
  margin-bottom: 1.5rem;
  max-height: 60px !important;
  height: auto !important;
  width: auto !important;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

@media (max-width: 768px) {
  .footer-desc {
    margin: 0 auto;
  }
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-item {
    justify-content: center;
  }
}

.contact-item i {
  color: var(--primary-color);
  width: 18px;
  height: 18px;
}

.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Hero Section */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.home-hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-badge-wrapper {
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(11, 121, 196, 0.08);
  color: var(--primary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(11, 121, 196, 0.1);
}

.home-hero-content h1 {
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #064e8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 3.5rem;
}

.home-hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-btn,
.hero-btn-outline {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(11, 121, 196, 0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(11, 121, 196, 0.3);
  background: var(--primary-hover);
}

.hero-btn-outline {
  background: white;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.hero-btn-outline:hover {
  background: var(--bg-subtle);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

/* Hero Visuals */
.home-hero-visuals {
  position: relative;
}

.visual-stack {
  position: relative;
  height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-frame {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-lg);
  border: 12px solid white;
  transition: all 0.6s ease;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.circle-frame:hover img {
  transform: scale(1.08);
}

.circle-main {
  width: 460px;
  height: 460px;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.circle-secondary {
  width: 240px;
  height: 240px;
  top: 0;
  right: -20px;
  z-index: 1;
}

.circle-tertiary {
  width: 200px;
  height: 200px;
  bottom: 20px;
  left: -20px;
  z-index: 3;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 121, 196, 0.12) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ── Survey CTA ────────────────────────────── */
.survey-cta-box {
  padding: 4.5rem !important;
  border-radius: 40px !important;
}

.survey-cta-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icons-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--primary-color);
  animation: float 4s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 15%;
  left: 0%;
  animation-delay: 1.5s;
}

.icon-3 {
  top: 30%;
  right: 5%;
  animation-delay: 0.8s;
}

.survey-cta-main-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.check-animate {
  position: absolute;
  animation: scaleBounce 2s infinite;
}

@keyframes scaleBounce {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .survey-cta-box {
    padding: 2.5rem !important;
  }

  .survey-cta-visual {
    display: none;
  }
}

/* Stats Section */
.stats-section {
  padding-bottom: 4rem;
}

.stats-grid {
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Common Section Styles */
.section-badge {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  line-height: 1.6;
}

/* Modern Service Cards */
.services-grid {
  gap: 2rem;
}

.modern-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modern-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-card:hover .card-overlay-gradient {
  opacity: 1;
}

.image-copyright {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
  pointer-events: none;
  z-index: 5;
}

.card-body {
  padding: 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.card-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card-body p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.modern-card:hover .card-footer {
  gap: 1rem;
}

/* Impressions / Gallery Grid */
.bg-dark {
  background-color: #0f172a;
  color: white;
}

.section-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  font-size: 1.1rem;
}

.badge-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  padding: 3.5rem;
  text-align: left;
}

.testimonial-card .stars {
  color: #fbbf24;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.testimonial-card p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-card p::before {
  content: '"';
  position: absolute;
  left: -1rem;
  top: -1rem;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 1.1rem;
  color: var(--text-main);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Trust Section Refined */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.trust-visual {
  position: relative;
}

.image-blob-container {
  position: relative;
  height: 500px;
}

.img-blob {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 10px solid white;
}

.blob-1 {
  width: 80%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blob-2 {
  width: 60%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.trust-content {
  text-align: left;
}

.trust-points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
  padding-bottom: 8rem;
}

.cta-inner {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-large {
  padding: 1.5rem 3.5rem;
  font-size: 1.2rem;
}

/* Animations */
.float-anim {
  animation: floating 6s ease-in-out infinite;
}

.float-anim-delayed {
  animation: floating 6s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .home-hero-container {
    gap: 2rem;
  }

  .circle-main {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 992px) {
  .home-hero {
    min-height: auto !important;
    padding: 45px 0 30px 0 !important;
  }

  .home-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0 !important;
    gap: 2.5rem !important;
  }

  .home-hero-content {
    display: block !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .home-hero-content h1 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
    font-size: clamp(3rem, 10vw, 4.5rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
  }

  .home-hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
    font-size: clamp(1.05rem, 4vw, 1.25rem) !important;
  }

  .hero-badge-wrapper {
    text-align: center !important;
    margin: 0 auto 2rem auto !important;
    width: 100% !important;
    display: block !important;
  }

  .home-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .home-hero-actions .hero-btn,
  .home-hero-actions .hero-btn-outline {
    padding: 1rem 1.75rem !important;
  }

  .visual-stack {
    height: 410px;
    width: 100%;
    position: relative;
  }

  .scroll-indicator {
    display: none !important;
  }

  .home-hero-visuals {
    order: -1 !important;
    margin-top: -1.5rem !important;
  }

  .home-hero-content {
    order: 1 !important;
  }

  .circle-frame {
    border-width: 6px !important;
  }

  .circle-main {
    width: 335px;
    height: 335px;
  }

  .circle-secondary {
    width: clamp(155px, 28vw, 190px) !important;
    height: clamp(155px, 28vw, 190px) !important;
    right: 0 !important;
    top: 10px !important;
  }

  .circle-tertiary {
    width: clamp(135px, 23vw, 160px) !important;
    height: clamp(135px, 23vw, 160px) !important;
    left: 0 !important;
    bottom: 10px !important;
  }

  .section-header-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .trust-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trust-points {
    align-items: flex-start !important;
    max-width: 360px !important;
    margin: 2rem auto 0 auto !important;
  }

  .trust-point {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    font-size: 1rem !important;
  }

  .trust-point i {
    margin-top: 3px !important;
    flex-shrink: 0 !important;
  }

  .image-blob-container {
    height: 400px;
  }

  .stats-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .stats-grid {
    padding-top: 2rem !important;
  }

  .final-cta {
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .home-hero-content h1 {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
  }

  /* Keep header action buttons (cart and menu toggle) on top of menu overlay */
  .header-actions {
    position: relative;
    z-index: 110;
  }

  /* Shop Category filter bar mobile layout alignment */
  .category-filter-bar {
    justify-content: flex-start !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 12px !important;
  }

  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
  }

  /* Testimonials and final CTA mobile scaling improvements */
  .testimonial-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .testimonial-card .stars {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .testimonial-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-card p::before {
    left: 50%;
    transform: translateX(-50%);
    top: -1.25rem;
    font-size: 2.5rem;
  }

  .cta-inner {
    padding: 3.5rem 1.5rem;
  }

  .cta-inner h2 {
    font-size: 2rem;
  }

  .cta-inner p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .visual-stack {
    height: 320px;
  }

  .circle-main {
    width: 240px;
    height: 240px;
  }

  .circle-secondary {
    width: 110px !important;
    height: 110px !important;
    right: 0 !important;
    top: 5px !important;
  }

  .circle-tertiary {
    width: 95px !important;
    height: 95px !important;
    left: 0 !important;
    bottom: 5px !important;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
  }

  .home-hero-actions .hero-btn,
  .home-hero-actions .hero-btn-outline {
    width: 100% !important;
    max-width: 280px;
    text-align: center;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem;
  }

  .hero-badge {
    white-space: normal !important;
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
    max-width: 100%;
    line-height: 1.4;
  }
}
.page-fade-in {
  animation: fadeIn 0.5s ease;
}

.page-fade-in.section {
  padding-top: 3rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes carouselFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Category Filter ─────────────────────────── */
.category-filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-bottom: 24px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  padding: 9px 22px;
  border-radius: 50px;
  background: transparent;
  border: 1.5px solid #d1d5db;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(11, 121, 196, 0.05);
}

.filter-chip.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(11, 121, 196, 0.35);
  transform: scale(1.05);
}

/* ── Fotobox Hero Card ───────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 360px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.fotobox-hero {
  grid-column: 1 / -1; /* spans all 3 columns */
  display: flex;
  flex-direction: row;
  overflow: hidden;
  background: linear-gradient(135deg, #0b79c4 0%, #064e8a 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-height: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fotobox-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -10px rgba(11, 121, 196, 0.35);
}

.fotobox-hero-image {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fotobox-hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.fotobox-hero:hover .fotobox-hero-image img {
  transform: scale(1.04);
}

.fotobox-hero-content {
  flex: 1;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.fotobox-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.fotobox-hero-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.fotobox-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.fotobox-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-color);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  width: fit-content;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.fotobox-hero-btn:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateX(3px);
}

/* ── Regular Product Cards ───────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  position: relative; /* enable ::after overlay */
}

.product-placeholder {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-subtle);
  overflow: hidden;
}

.product-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-desc-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex: 1;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.product-desc.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0;
  margin-top: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.product-action {
  margin-top: auto;
  padding-top: 1.5rem;
}

.category-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.ef-set-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(11, 121, 196, 0.3);
}

.is-potm {
  position: relative;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.is-potm::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 0 3px #eab308;
  border-radius: inherit;
  pointer-events: none;
  z-index: 20; /* above image */
}

.product-placeholder img {
  position: relative;
  z-index: 1;
}

.potm-category-label {
  background: #eab308 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

/* ── Prices and Discounts ───────────────────── */
.product-price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.ef-original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 500;
}

.ef-discounted-price {
  color: #ef4444; /* Red */
  font-weight: 800;
  font-size: 1.75rem;
}
  margin-top: 1rem;
}

.original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.discounted-price {
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.25rem;
}

.price-currency {
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 2px;
}

.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f59e0b;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.product-card.is-promo {
  border: 2px solid #f59e0b77;
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.15);
}

/* ── Product Availability & Lock States ─────── */
.product-lock-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(15, 23, 42, 0.85); /* Slate 900 with 0.85 opacity */
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  pointer-events: none; /* Make sure clicks pass through to container if needed */
}

.product-card.is-locked {
  position: relative;
}

.product-card.is-locked .product-placeholder img {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.product-card.is-locked:hover .product-placeholder img {
  opacity: 0.75;
  filter: grayscale(60%);
}

.product-card.is-locked .product-info {
  opacity: 0.85;
}

.product-card.is-locked .btn-secondary {
  background-color: var(--locked-color) !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 2px var(--locked-color) !important;
  border: none !important;
}

.product-card.is-locked .btn-secondary:hover {
  background-color: var(--locked-color-hover) !important;
  box-shadow: inset 0 0 0 2px var(--locked-color-hover) !important;
}

/* Modal Centered Lock Badge */
.product-lock-badge.modal-image-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

/* Gray out the image in the detail modal when locked */
#ef-shop-modal.is-locked .ef-modal-main-image {
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Disabled add button state */
#ef-modal-add-btn:disabled,
#ef-modal-add-btn.is-disabled {
  background-color: var(--locked-color) !important;
  border-color: var(--locked-color) !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

/* Gray out categories when locked */
.product-card.is-locked .category-label {
  background-color: var(--locked-color) !important;
  color: #fff !important;
  box-shadow: none !important;
}

#ef-shop-modal.is-locked .detail-category-tag {
  background: rgba(148, 163, 184, 0.1) !important;
  color: var(--locked-color) !important;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1200px) {
}

@media (max-width: 900px) {
  .fotobox-hero {
    flex-direction: column;
    min-height: auto;
  }
  .fotobox-hero-image {
    flex: 0 0 260px;
    min-height: 260px;
  }
  .fotobox-hero-content {
    padding: 2rem;
  }
  .fotobox-hero-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
}

/* ── Gallery Notch & Dots ───────────────────── */
.gallery-notch {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  gap: 6px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: white;
  width: 14px;
  border-radius: 10px;
}

.product-placeholder > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.image-copyright {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
  pointer-events: none;
  z-index: 5;
}

/* ── Product Detail Overlay Modal (Sleek/Premium) ── */
.detail-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInBackdrop 0.3s ease;
}

@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

.detail-modal-card {
  background: var(--bg-color);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.detail-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: none;
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-modal-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg) scale(1.05);
}

.detail-modal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 500px;
}

.detail-modal-media {
  padding: 2.5rem;
  background: var(--bg-subtle);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.detail-main-img-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.detail-main-img-wrapper:hover .detail-modal-main-img {
  transform: scale(1.06);
}

.detail-img-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.detail-main-img-wrapper:hover .detail-img-zoom-hint {
  opacity: 1;
}

.detail-modal-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.detail-thumb-box {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all 0.25s ease;
  background: white;
  flex-shrink: 0;
}

.detail-thumb-box.active {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(11, 121, 196, 0.2);
}

.detail-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-modal-info {
  padding: 3rem 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
}

.detail-modal-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding-right: 15px; /* Scrollbar space */
  margin-right: -15px;
}

.detail-modal-top {
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.detail-category-tag {
  display: inline-block;
  background: rgba(11, 121, 196, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.detail-modal-top h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text-main);
  margin: 0;
  font-weight: 800;
}

.detail-modal-desc-area {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.detail-modal-desc-area p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.detail-modal-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-subtle);
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

.perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.detail-modal-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  position: relative;
}

.detail-modal-bottom-bar::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -2rem;
  right: -3rem;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--bg-color));
  pointer-events: none;
  z-index: 10;
}

.detail-price-display {
  display: flex;
  flex-direction: column;
}

.detail-price-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.detail-price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
}

.detail-price-amount span {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 2px;
}

.detail-action-btn {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .detail-modal-grid {
    grid-template-columns: 1fr;
  }
  .detail-modal-info {
    padding: 2rem;
  }
  .detail-main-img-wrapper {
    height: 260px;
  }
}

/* ── Enthaltene Artikel in Sets ── */
.detail-included-box {
  background: rgba(11, 121, 196, 0.04);
  border: 1px solid rgba(11, 121, 196, 0.15);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.included-title {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.included-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ── Mengenwähler im Detail-Modal ── */
.detail-modal-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(11, 121, 196, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-subtle);
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: rgba(11, 121, 196, 0.1);
}

.qty-input {
  width: 60px;
  border: none;
  border-left: 1.5px solid rgba(11, 121, 196, 0.2);
  border-right: 1.5px solid rgba(11, 121, 196, 0.2);
  background: var(--bg-color);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.detail-price-total-note {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2px;
}

/* Hero Section for Entertainment */
.ent-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}

.ent-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}

.ent-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ent-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4), var(--bg-color));
}

.ent-hero-content {
  color: white;
  z-index: 1;
  padding: 0 2rem;
  max-width: 800px;
}

.ent-hero-content h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.ent-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Filter Switch */
.filter-switch {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 50px;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-switch button {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.filter-switch button:hover {
  color: white;
}

.filter-switch button.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(11, 121, 196, 0.4);
}

/* Dynamic Artist Cards */
.artists-showcase {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-bottom: 6rem;
}

.artist-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.artist-row:hover {
  transform: translateY(-10px);
}

.artist-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.artist-row:hover .artist-image img {
  transform: scale(1.05);
}

.artist-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 2;
}

.artist-row:nth-child(even) .artist-overlay {
  background: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.artist-info {
  position: relative;
  z-index: 3;
  width: 50%;
  padding: 4rem;
  color: white;
}

.artist-row:nth-child(even) .artist-info {
  margin-left: auto;
}

.artist-info h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.old-artist-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  padding-left: 1rem;
}

.old-artist-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.genre-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.artist-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Artist Logo ── */
.artist-logo-wrapper {
  margin-bottom: 1.25rem;
}

.artist-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.artist-logo:hover {
  opacity: 1;
}

/* ── Social Links ── */
.artist-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.social-link-btn:hover {
  background: var(--social-color, rgba(255, 255, 255, 0.25));
  border-color: var(--social-color, rgba(255, 255, 255, 0.5));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


@media (max-width: 992px) {
  .artist-row {
    min-height: 500px;
  }
  .artist-overlay, .artist-row:nth-child(even) .artist-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  }
  .artist-info, .artist-row:nth-child(even) .artist-info {
    width: 100%;
    margin-top: auto;
    padding: 2rem;
  }
  .artist-info h2 {
    font-size: 2.2rem;
  }
}

/* Events / Portfolio Page Styles */

.events-page {
  min-height: 100vh;
  padding-top: 60px;
}

.events-header {
  margin-bottom: 3rem;
}

/* Filter Styles */
.filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.filter-row {
  display: flex;
  padding: 0.5rem;
  gap: 0.5rem;
  border-radius: 50px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.filter-btn:hover {
  background: rgba(11, 121, 196, 0.05);
  color: var(--primary-color);
}

.filter-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(11, 121, 196, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
  min-height: 400px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: inherit;
  margin: 1rem;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.1);
}

.portfolio-card-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.category-tag {
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(11, 121, 196, 0.3);
}

.year-tag {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.portfolio-card-content {
  padding: 1rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.portfolio-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-spacer {
  flex-grow: 1;
}

.portfolio-card-footer {
  margin-top: 1.5rem;
}

.view-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.portfolio-card:hover .view-details {
  gap: 0.75rem;
}

/* Proof Section */
.proof-section {
  margin-top: 4rem;
}

.proof-inner {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-glow {
  filter: drop-shadow(0 0 10px rgba(11, 121, 196, 0.4));
  margin-bottom: 1.5rem;
}

.proof-inner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.proof-inner p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Staggered entry animation */
.staggered-fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .filter-row {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .events-page {
    padding-top: 40px;
  }

  .filter-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .portfolio-card-content {
    padding: 1rem 1.5rem 2rem 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .proof-inner {
    padding: 4rem 1.5rem;
  }
}

/* ── Event Detail Overlay Modal (Sleek/Premium) ── */
.event-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInBackdrop 0.3s ease;
}

.event-modal-card {
  background: var(--bg-color);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: 24px;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: none;
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.event-modal-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg) scale(1.05);
}

.event-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.event-modal-image {
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-modal-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.event-modal-info {
  padding: 3rem 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.event-modal-top {
  margin-bottom: 1.5rem;
}

.event-category-tag {
  display: inline-block;
  background: rgba(11, 121, 196, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.event-modal-top h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text-main);
  margin: 0 0 0.75rem 0;
  font-weight: 800;
}

.event-year-badge {
  display: inline-block;
  background: var(--bg-subtle);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.event-modal-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.event-tech-box {
  background: rgba(11, 121, 196, 0.04);
  border: 1px solid rgba(11, 121, 196, 0.15);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: auto; /* Pushes action button to bottom */
}

.event-tech-box.empty {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

.event-tech-box h4 {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-tech-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-tech-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.tech-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.event-modal-action {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-subtle);
}

.event-modal-action .btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .event-modal-grid {
    grid-template-columns: 1fr;
  }
  .event-modal-image {
    height: 250px;
  }
  .event-modal-info {
    padding: 2rem;
  }
}

/* Contact Page Styles */

.contact-page {
  min-height: 100vh;
  padding-top: 80px;
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Info Column Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  padding: 3rem 2.5rem;
  text-align: left;
}

.info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-items {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  background: rgba(11, 121, 196, 0.1);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-text strong {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.info-text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.social-links {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.business-hours {
  padding: 2rem;
  text-align: left;
}

.business-hours h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
}

/* Form Styles */
.contact-form {
  padding: 4rem;
  text-align: left;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.form-icon-header {
  color: var(--primary-color);
}

.form-header h3 {
  font-size: 1.8rem;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary-color);
  outline: none;
  background: white;
  box-shadow: 0 0 0 4px rgba(11, 121, 196, 0.1);
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
  padding: 1.25rem;
}

.form-privacy {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-privacy a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    order: 2;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 2.5rem 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

.survey-container {
  max-width: 800px;
  margin: 0 auto;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.survey-card {
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.survey-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background: var(--primary-color);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.survey-question h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.survey-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.survey-option {
  padding: 2rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.survey-option:hover {
  border-color: var(--primary-color);
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.survey-option.selected {
  border-color: var(--primary-color);
  background: rgba(11, 121, 196, 0.05);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.survey-option-label {
  font-weight: 700;
  font-size: 1.1rem;
}

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

.recommendation-card {
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.survey-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  align-items: center;
}

.survey-badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}

.match-percentage {
  font-size: 0.8rem;
  font-weight: 800;
  color: #16a34a;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: #0b79c4;
  color: #ffffff;
  padding: 12px 24px;
  z-index: 999999;
  transition: top 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: bold;
  text-decoration: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* ── Page Layout Adjustments (Lifting content higher) ── */
.events-page,
.contact-page {
  padding-top: 1rem !important;
}

.events-page .section,
.contact-page .section,
.page-anfrage .section,
.page-checkout .section {
  padding-top: 0.5rem !important;
}

/* Hide duplicate WordPress page headings on Inquiry pages */
.page-anfrage .entry-header,
.page-checkout .entry-header {
  display: none !important;
}

/* Center the text and icon inside the contact form submit button */
#ef-contact-submit .btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Photobox Page Header & Title Adjustments */
.pb-header-container {
  margin-bottom: 3rem !important;
  padding: 0 1.5rem !important;
}

.pb-main-title {
  font-size: clamp(1.85rem, 6vw, 2.75rem) !important;
  margin-bottom: 1rem !important;
  line-height: 1.2 !important;
  color: var(--text-main) !important;
  letter-spacing: -0.02em !important;
}

.pb-main-subtitle {
  font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
  color: var(--text-muted) !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
}

/* Photobox Configurator Uniform Styling */
.pb-config-card {
  padding: 2.5rem !important;
}

.pb-step-container {
  margin-bottom: 2.5rem !important;
}

.pb-options-grid {
  display: flex !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}

.pb-option-label {
  flex: 1 !important;
  min-width: 120px !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
}

.pb-option-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 1.5rem !important;
  text-align: center !important;
  border: 2px solid #e5e7eb !important;
  border-radius: var(--radius) !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  justify-content: center !important;
  flex-grow: 1 !important;
}

.pb-info-box {
  margin-bottom: 2.5rem !important;
  padding: 1.5rem !important;
  border-radius: var(--radius) !important;
}

.pb-warning-box {
  margin-top: 1.25rem !important;
  padding: 1.25rem !important;
  background-color: #fff7ed !important;
  border: 1px solid #fed7aa !important;
  border-radius: 12px !important;
}

.pb-fullservice-box {
  margin-top: 1.5rem !important;
  padding: 1.5rem !important;
  background-color: #f9fafb !important;
  border-radius: var(--radius) !important;
  border: 1px solid #e5e7eb !important;
}

@media (max-width: 768px) {
  .pb-config-card {
    padding: 1.25rem 1rem !important;
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .pb-option-card {
    padding: 1.25rem 0.5rem !important;
  }
  .pb-info-box,
  .pb-warning-box,
  .pb-fullservice-box {
    padding: 1rem !important;
  }
  .pb-options-grid {
    gap: 0.75rem !important;
  }
  .pb-option-label {
    min-width: 100px !important; /* Save horizontal space to prevent unwanted wrapping */
  }
  .pb-option-card div {
    font-size: 0.9rem !important; /* Scale down the main option text slightly */
  }
  .pb-option-card div[style*="font-size: 0.78rem"] {
    font-size: 0.75rem !important; /* Scale down subtexts slightly */
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   ENTERTANMENT PAGE OVERHAUL (DJs & Bands Showcase)
   ────────────────────────────────────────────────────────────────────────── */
.ent-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.ent-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ent-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.05);
}

.ent-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
}

.ent-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.ent-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  color: #ffffff !important;
  margin-bottom: 1.25rem !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.ent-hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
  color: rgba(241, 245, 249, 0.95) !important;
  margin-bottom: 2.5rem !important;
  line-height: 1.6 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.ef-ent-filters {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ef-ent-filters button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ef-ent-filters button:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06);
}

.ef-ent-filters button.active {
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ent-showcase-section {
  padding: 5rem 0;
  width: 95vw;
  max-width: 1200px;
  margin: 0 auto;
}

.artists-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.artist-card {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(241, 245, 249, 0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  height: 520px; /* Increased height for breathing room */
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Webkit rounded corner mask leak fix */
  transform: translateZ(0);
  isolation: isolate;
}

.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.artist-image-col {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Webkit rounded corner mask leak fix */
}

.artist-card.layout-reverse .artist-image-col {
  left: auto;
  right: 0;
  border-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.artist-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  transform: scale(1) translateZ(0); /* Pre-promote layer to prevent flicker on hover start/end */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.artist-image-col::after {
  content: '';
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.7) 65%, rgba(255, 255, 255, 0.95) 85%, #ffffff 100%);
  pointer-events: none;
  z-index: 2;
  transition: background 0.4s ease;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.artist-card.layout-reverse .artist-image-col::after {
  background: linear-gradient(270deg, transparent 40%, rgba(255, 255, 255, 0.7) 65%, rgba(255, 255, 255, 0.95) 85%, #ffffff 100%);
}

.artist-card:hover .artist-image-col img {
  transform: scale(1.05) translateZ(0); /* Match pre-promoted layer state */
}

.artist-info-col {
  width: 55%;
  margin-left: 45%;
  padding: 1.75rem 3rem 2.25rem 3rem; /* Biased vertical padding to shift contents upwards */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.artist-card.layout-reverse .artist-info-col {
  margin-left: 0;
  margin-right: 45%;
}

.artist-logo {
  margin-bottom: 0.5rem;
}

.artist-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.artist-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.artist-genre {
  display: inline-block;
  background: rgba(11, 121, 196, 0.08);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-info-col h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.artist-quote {
  font-style: italic;
  color: #1e293b;
  border-left: 4px solid var(--primary-color);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.artist-desc {
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  overflow: hidden;
  flex-shrink: 1;
}

.artist-desc p {
  margin: 0 0 0.5rem 0;
  color: #1e293b;
}

.artist-desc p:last-child {
  margin-bottom: 0;
}

.ef-open-artist-modal {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.ef-open-artist-modal:hover {
  color: var(--primary-hover);
}

.artist-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--primary-color);
  padding-top: 1rem;
  flex-wrap: wrap;
}

.artist-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.artist-title-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.artist-title-logo img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.artist-socials {
  display: flex;
  gap: 10px;
}

.artist-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f8fafc;
  border-radius: 50%;
  color: #64748b;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-socials a i,
.artist-socials a svg {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  color: #64748b;
  transition: color 0.3s ease;
}

.artist-socials a:hover {
  color: var(--primary-color);
  background: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(11, 121, 196, 0.15);
}

.artist-socials a:hover i,
.artist-socials a:hover svg {
  color: var(--primary-color);
}

.ef-ent-add-btn.added {
  background-color: transparent !important;
  color: #10b981 !important;
  border-color: transparent !important;
  cursor: default !important;
  box-shadow: none !important;
}

.artists-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-subtle);
  border-radius: 16px;
  border: 1px dashed var(--border-color);
}

.artists-empty span {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.5rem;
}

.artists-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artists-empty p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .ent-hero {
    height: auto;
    min-height: 400px;
  }
  .ent-hero-content {
    padding: 4rem 1.5rem;
  }
  .artist-card,
  .artist-card.layout-reverse {
    flex-direction: column;
    border-radius: 16px;
    height: auto !important;
  }
  .artist-image-col {
    position: relative !important;
    width: 100% !important;
    min-height: 320px !important;
    height: 320px !important;
  }
  .artist-image-col::after {
    background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.95) 85%, #ffffff 100%) !important;
  }
  .artist-info-col {
    position: relative !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 2.5rem !important;
    height: auto !important;
    background: #ffffff !important;
  }
  .artist-info-col h2 {
    font-size: 1.8rem;
    margin: 0;
  }
  .artist-quote {
    font-size: 1rem;
    padding-left: 1rem;
  }
  .artist-desc {
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
    margin-bottom: 2rem !important;
  }
  .artist-actions {
    padding-top: 1.5rem;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 1.25rem;
  }
  .artist-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .artist-socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ef-ent-filters {
    width: 100%;
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
  }
  .ef-ent-filters button {
    width: 100%;
    padding: 10px 16px;
  }
  .artist-info-col {
    padding: 1.75rem;
  }
}

/* ── Accessibility: Reduced Motion ───────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
