/* ============================================
   ORCHESTRA ICNT - SUPER MODERN DESIGN
   Fresh, Bold, Dynamic for Young Musicians
   ============================================ */

:root {
  /* Colori Primari - PIÙ VIBRANTI */
  --primary-red: #C41E3A;
  --primary-dark: #0F0F0F;
  --primary-white: #FFFFFF;

  /* Colori Accento - PIÙ ENERGETICI */
  --accent-red: #DC143C;
  --accent-light: #FF6B6B;
  --accent-bright: #FF3366;
  --accent-dark: #8B0000;

  /* Grigi e Neutri */
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  /* Text Colors */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-light: #FFFFFF;

  /* Tipografia */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4.5rem;
  --fs-8xl: 6rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Layout */
  --container-width: 1200px;
  --container-padding: 2rem;
  --navbar-height: 120px;

  /* Shadows - MOLTO PIÙ DRAMMATICHE */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 40px 80px rgba(0, 0, 0, 0.35);
  --shadow-red: 0 10px 40px rgba(196, 30, 58, 0.4);
  --shadow-red-lg: 0 20px 60px rgba(196, 30, 58, 0.6);
  --shadow-red-glow: 0 0 40px rgba(255, 107, 107, 0.6);

  /* Gradients - PIÙ AUDACI */
  --gradient-red: linear-gradient(135deg, #DC143C 0%, #FF3366 50%, #FF6B6B 100%);
  --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

ul, ol {
  list-style: none;
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--fs-base);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: var(--spacing-md);
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(255, 107, 107, 0.1));
  border-radius: var(--radius-full);
  border: 2px solid rgba(196, 30, 58, 0.3);
  font-weight: 700;
  animation: float 3s ease-in-out infinite;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-6xl));
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 50%, #1A1A1A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-subtitle {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-footer {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

/* ============================================
   NAVBAR - SUPER IMPATTANTE
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 8px 40px rgba(196, 30, 58, 0.5), 0 0 60px rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

.navbar-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.navbar-logo {
  height: 100px;
  width: auto;
  transition: all var(--transition-bounce);
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 107, 107, 0.5));
}

.navbar-logo:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: brightness(1.4) drop-shadow(0 0 30px rgba(255, 107, 107, 0.8));
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, var(--spacing-lg));
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.2vw, var(--fs-base));
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: var(--spacing-xs) clamp(0.5rem, 1vw, var(--spacing-md));
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-red);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  border-radius: var(--radius-md);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 0.2;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-light);
  text-shadow: 0 0 20px rgba(255, 107, 107, 1), 0 0 40px rgba(255, 107, 107, 0.6);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--gradient-red);
  box-shadow: 0 0 15px var(--accent-light);
  transition: transform var(--transition-base);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link-special {
  background: var(--gradient-red);
  color: var(--primary-white) !important;
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5), 0 0 20px rgba(255, 107, 107, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
  font-weight: 800;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5), 0 0 20px rgba(255, 107, 107, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.8), 0 0 40px rgba(255, 107, 107, 0.7);
  }
}

.nav-link-special:hover {
  background: linear-gradient(135deg, #FF3366 0%, #DC143C 50%, #FF6B6B 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.8), 0 0 50px rgba(255, 107, 107, 0.8);
}

.nav-link-special::after {
  display: none;
}

.nav-link-special::before {
  display: none;
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--spacing-xs);
  cursor: pointer;
}

.navbar-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION - WOW EFFECT
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--navbar-height);
}

/* Velo rosso rimosso per mostrare meglio l'immagine */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: hero-zoom 25s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  padding: 0 var(--container-padding);
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: var(--spacing-xl);
}

.hero-title-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-5xl), 10vw, var(--fs-8xl));
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: var(--spacing-md);
  color: var(--primary-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fade-in-up 1s ease-out;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 4px 20px rgba(0, 0, 0, 0.9);
  animation: fade-in-up 1s ease-out 0.3s backwards;
}

.hero-claim {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl));
  font-style: italic;
  font-weight: 600;
  margin-bottom: var(--spacing-2xl);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fade-in-up 1s ease-out 0.6s backwards;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 1s ease-out 0.9s backwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator - PIÙ VISIBILE */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--accent-light);
  font-size: var(--fs-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 3;
  animation: bounce-glow 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 107, 107, 1), 0 0 50px rgba(255, 107, 107, 0.7);
}

.scroll-indicator svg {
  filter: drop-shadow(0 0 15px rgba(255, 107, 107, 1));
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes bounce-glow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    text-shadow: 0 0 30px rgba(255, 107, 107, 1), 0 0 50px rgba(255, 107, 107, 0.7);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
    text-shadow: 0 0 50px rgba(255, 107, 107, 1), 0 0 80px rgba(255, 107, 107, 0.9);
  }
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============================================
   BUTTONS - SUPER IMPATTANTI
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-bounce);
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shine-slide 2s linear infinite;
  z-index: -1;
}

@keyframes shine-slide {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(200%) rotate(45deg); }
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--primary-white);
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.6),
              0 0 30px rgba(255, 107, 107, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 20px 60px rgba(196, 30, 58, 0.8),
              0 0 60px rgba(255, 107, 107, 0.8);
  transform: translateY(-8px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-4px) scale(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--primary-white);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: var(--primary-white);
  color: var(--primary-red);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 10px 30px rgba(255, 255, 255, 0.4);
  transform: translateY(-6px) scale(1.05);
  border-color: var(--primary-white);
}

/* Varianti per sfondi chiari */
.section:not(.hero) .btn-outline {
  color: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.2);
}

.section:not(.hero) .btn-outline:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  box-shadow: 0 0 40px rgba(196, 30, 58, 0.6), 0 10px 30px rgba(196, 30, 58, 0.4);
}

/* ============================================
   CONCERTS SECTION - CARDS SPETTACOLARI
   ============================================ */

.concerts-section {
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 50%, #FFF5F5 100%);
}

.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
}

.concert-card {
  background: var(--primary-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
}

.concert-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-red);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(8px);
}

.concert-card:hover {
  transform: translateY(-20px) scale(1.03) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25),
              0 0 60px rgba(196, 30, 58, 0.4);
}

.concert-card:hover::before {
  opacity: 0.8;
}

/* Poster con effetto WOW */
.concert-poster {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A, #2C2C2C);
}

.concert-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.8s ease;
  filter: brightness(0.9) contrast(1.15) saturate(1.1);
}

.concert-card:hover .concert-poster img {
  transform: scale(1.2) rotate(2deg);
  filter: brightness(1.05) contrast(1.2) saturate(1.2);
}

.concert-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

/* Placeholder Poster */
.concert-poster-placeholder {
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gradient-rotate 6s ease infinite;
}

@keyframes gradient-rotate {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.poster-placeholder-content {
  text-align: center;
  color: var(--primary-white);
  padding: 2rem;
  z-index: 1;
  position: relative;
}

.poster-music-note {
  font-size: 8rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.poster-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.poster-orchestra {
  font-family: var(--font-accent);
  font-size: var(--fs-xl);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Date badge SUPER VISIBILE */
.concert-date-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--gradient-red);
  padding: 20px 25px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(255, 107, 107, 0.8);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
  animation: float 4s ease-in-out infinite, pulse-shadow 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 107, 107, 0.8);
  }
  50% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 107, 107, 1);
  }
}

.concert-date-badge .concert-day {
  font-family: var(--font-accent);
  font-size: var(--fs-5xl);
  line-height: 0.9;
  color: var(--primary-white);
  font-weight: 900;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.concert-date-badge .concert-month {
  font-family: var(--font-accent);
  font-size: var(--fs-xl);
  letter-spacing: 0.15em;
  color: var(--primary-white);
  font-weight: 700;
}

.concert-date-badge .concert-year {
  font-size: var(--fs-sm);
  opacity: 0.9;
  color: var(--primary-white);
  font-weight: 600;
}

.concert-info {
  padding: var(--spacing-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  background: linear-gradient(180deg, transparent 0%, rgba(248, 249, 250, 0.5) 100%);
}

.concert-title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  transition: color var(--transition-base);
}

.concert-card:hover .concert-title {
  color: var(--primary-red);
}

.concert-program {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.concert-program strong {
  color: var(--text-primary);
  font-weight: 700;
}

.concert-meta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-size: var(--fs-base);
  color: var(--text-secondary);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--gray-200);
}

.concert-meta span {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 600;
}

.concert-meta svg {
  color: var(--primary-red);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.3));
}

/* ============================================
   ABOUT SECTION - IMPATTANTE
   ============================================ */

.about-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F8 50%, #FFFFFF 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-slow);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  opacity: 0.4;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.about-image:hover {
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3),
              0 0 60px rgba(196, 30, 58, 0.4);
  transform: scale(1.02);
}

.about-image:hover::after {
  opacity: 0.1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(1) contrast(1.05);
}

.about-image:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) contrast(1.1);
}

.about-badge {
  position: absolute;
  top: var(--spacing-xl);
  right: var(--spacing-xl);
  background: var(--gradient-red);
  color: var(--primary-white);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 107, 107, 0.6);
  animation: pulse-glow 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.badge-number {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--fs-5xl);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.badge-label {
  display: block;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.95;
  font-weight: 700;
  margin-top: 0.25rem;
}

.about-text {
  text-align: left;
}

.about-text .section-header {
  text-align: left;
  margin-bottom: var(--spacing-xl);
}

.about-description {
  font-size: var(--fs-xl);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.about-features {
  margin: var(--spacing-2xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.feature-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
  transform: translateX(10px);
}

.feature-icon {
  font-size: var(--fs-4xl);
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.feature-content h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.feature-content p {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  line-height: 1.6;
}

/* ============================================
   DIRECTOR SECTION - NUOVA SEZIONE
   ============================================ */

.director-section {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.director-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.director-section .section-title {
  background: linear-gradient(135deg, #FFFFFF 0%, #FF6B6B 50%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
}

.director-section .section-subtitle {
  color: var(--gray-400);
}

.director-content {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.director-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 60px rgba(255, 107, 107, 0.4);
  transition: all var(--transition-slow);
}

.director-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-red);
  z-index: -1;
  border-radius: var(--radius-2xl);
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.6s ease;
}

.director-image:hover::before {
  opacity: 1;
}

.director-image:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8),
              0 0 80px rgba(255, 107, 107, 0.7);
  transform: scale(1.02) translateY(-10px);
}

.director-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
  filter: brightness(0.95) contrast(1.1);
}

.director-image:hover img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.15);
}

.director-info {
  padding: var(--spacing-lg);
}

.director-name {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: var(--primary-white);
  margin-bottom: var(--spacing-xs);
  line-height: 1.2;
}

.director-title {
  font-family: var(--font-accent);
  font-size: var(--fs-xl);
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xl);
}

.director-quote {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-style: italic;
  font-weight: 600;
  color: var(--gray-300);
  border-left: 4px solid var(--primary-red);
  padding-left: var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  line-height: 1.6;
  position: relative;
}

/* Virgoletta rimossa come richiesto */

.director-bio {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--gray-400);
  font-weight: 400;
}

.director-bio p {
  margin-bottom: var(--spacing-lg);
}

.director-bio strong {
  color: var(--gray-200);
  font-weight: 700;
}

/* ============================================
   MEDIA SECTION
   ============================================ */

.media-section {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.media-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
}

.media-section .section-title {
  background: linear-gradient(135deg, #FFFFFF 0%, #FF6B6B 50%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
}

.media-section .section-subtitle {
  color: var(--gray-400);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.media-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-bounce);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.media-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
              0 0 60px rgba(255, 107, 107, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.media-thumbnail {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  background: #000;
}

.media-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-info {
  padding: var(--spacing-xl);
}

.media-info h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-white);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.media-info p {
  font-size: var(--fs-base);
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--navbar-height) + var(--spacing-xl));
}

.contact-info .section-header {
  text-align: left;
  margin-bottom: var(--spacing-2xl);
}

.contact-description {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-2xl);
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.contact-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
  transform: translateX(10px);
}

.contact-item svg {
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 0.3rem;
  filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.3));
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.contact-item a {
  color: var(--primary-red);
  font-weight: 600;
  transition: all var(--transition-base);
}

.contact-item a:hover {
  color: var(--accent-dark);
  text-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
}

.contact-item p {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-red);
  color: var(--primary-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-bounce);
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.social-link:hover {
  background: linear-gradient(135deg, #FF3366 0%, #DC143C 50%, #FF6B6B 100%);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.6),
              0 0 30px rgba(255, 107, 107, 0.5);
}

/* Contact Form */
.contact-form {
  background: var(--primary-white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.contact-form:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
              0 0 40px rgba(196, 30, 58, 0.15);
  border-color: rgba(196, 30, 58, 0.2);
}

.form-group {
  margin-bottom: var(--spacing-xl);
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 3px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--primary-white);
  font-weight: 500;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 5px rgba(196, 30, 58, 0.15),
              0 10px 30px rgba(196, 30, 58, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  color: var(--gray-400);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  border-top: 2px solid rgba(196, 30, 58, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 2px solid var(--gray-900);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--spacing-md);
  filter: brightness(1.2);
}

.footer-description {
  font-size: var(--fs-base);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--primary-white);
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  font-size: var(--fs-base);
  color: var(--gray-400);
  transition: all var(--transition-base);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  transform: translateX(5px);
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  color: var(--gray-400);
  border-radius: var(--radius-lg);
  transition: all var(--transition-bounce);
  border: 2px solid transparent;
}

.footer-social a:hover {
  background: var(--gradient-red);
  color: var(--primary-white);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.6),
              0 0 30px rgba(255, 107, 107, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  font-size: var(--fs-base);
  padding-top: var(--spacing-xl);
}

.footer-bottom p {
  margin-bottom: var(--spacing-sm);
}

.footer-credits a {
  color: var(--primary-red);
  font-weight: 700;
  transition: all var(--transition-base);
}

.footer-credits a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  width: 60px;
  height: 60px;
  background: var(--gradient-red);
  color: var(--primary-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.6),
              0 0 30px rgba(255, 107, 107, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-bounce);
  z-index: 999;
  animation: pulse-glow 3s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #FF3366 0%, #DC143C 50%, #FF6B6B 100%);
  transform: translateY(-10px) scale(1.15);
  box-shadow: 0 20px 50px rgba(196, 30, 58, 0.8),
              0 0 50px rgba(255, 107, 107, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
    --spacing-3xl: 4rem;
  }

  .about-content,
  .contact-content,
  .director-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .director-image {
    max-width: 450px;
    margin: 0 auto;
  }

  .contact-info {
    position: static;
  }

  .concerts-grid,
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 80px;
    --container-padding: 1.25rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
  }

  /* Mobile Navbar */
  .navbar-toggle {
    display: flex;
  }

  .navbar-logo {
    height: 70px;
  }

  .navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
    flex-direction: column;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-top: 3px solid var(--primary-red);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    white-space: nowrap;
    position: relative;
    display: block;
    line-height: 1.2;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(196, 30, 58, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link-special {
    margin-top: var(--spacing-md);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6),
                0 0 30px rgba(255, 107, 107, 0.6);
  }

  /* Hero */
  .hero {
    min-height: 600px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Sections */
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .section-header {
    margin-bottom: var(--spacing-xl);
  }

  /* Grids */
  .concerts-grid,
  .media-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  /* About features */
  .about-features {
    gap: var(--spacing-lg);
  }

  /* Contact form */
  .contact-form {
    padding: var(--spacing-xl);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    height: 50px;
  }

  .scroll-indicator {
    display: none;
  }

  .concert-card {
    margin: 0 -0.5rem;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
  }

  .btn {
    padding: 1rem 2rem;
    font-size: var(--fs-base);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 4px solid var(--primary-red);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-contrast: high) {
  :root {
    --primary-red: #E01E37;
    --text-secondary: #4A4A4A;
  }
}

/* ============================================
   CUSTOM SCROLLBAR - SUPER STYLED
   ============================================ */

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-red);
  border-radius: 10px;
  border: 3px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF3366 0%, #DC143C 50%, #FF6B6B 100%);
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) var(--gray-100);
}

/* ============================================
   SELECTION STYLING
   ============================================ */

::selection {
  background: var(--primary-red);
  color: var(--primary-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary-red);
  color: var(--primary-white);
  text-shadow: none;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

.concert-card,
.media-card,
.btn,
.about-image img,
.director-image img {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ============================================
   HIDE EMPTY CONTENT BOXES UNTIL LOADED
   ============================================ */

/* Nascondi elementi vuoti generici */
h4:empty,
p:empty:not(.hero-claim),
span:empty:not(.navbar-toggle span):not(.concert-day):not(.concert-month):not(.concert-year):not(.badge-number):not(.badge-label),
div:empty:not(.hero-gradient):not(.scroll-indicator) {
  display: none !important;
}

/* Nascondi feature items vuoti */
.feature-item:has(h4:empty),
.feature-item:has(p:empty) {
  display: none !important;
}

/* Nascondi contact items vuoti */
.contact-item:has(span:empty) {
  display: none !important;
}

/* Nascondi btn vuoti alla fine about */
.about-text .btn:empty,
.about-text a.btn:empty {
  display: none !important;
}

/* Durante il caricamento nascondi tutto */
body:not(.loaded) .feature-item,
body:not(.loaded) .about-text .btn,
body:not(.loaded) .contact-item {
  opacity: 0;
  pointer-events: none;
}

/* Quando caricato mostra con fade */
body.loaded .feature-item,
body.loaded .about-text .btn,
body.loaded .contact-item {
  opacity: 1;
  transition: opacity 0.3s ease;
}
