/* ============================================
   BOYS VERONA - STYLESHEET
   Modern, Professional, Responsive
============================================ */

:root {
  --bg-primary: #0b0a0d;
  --bg-secondary: #150e1a;
  --surface: #1a1520;
  --red-primary: #ff1a3d;
  --red-light: #ff6a7a;
  --gold: #ffd36a;
  --text-primary: #ffffff;
  --text-muted: #c8c8c8;
  --border: rgba(255, 255, 255, 0.1);
  --gradient-main: linear-gradient(135deg, var(--red-primary), #d41630);
  --gradient-gold: linear-gradient(135deg, #ffd36a, #ffaa3d);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-main);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-main);
  z-index: 10001;
  transition: width 0.1s ease;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 32px;
}

.section-dark {
  padding: 100px 32px;
}

/* Override for specific sections to remove space */
#momenti-indimenticabili.section-dark,
#info.section-dark {
  padding-top: 100px !important;
  padding-bottom: 0 !important;
}

.section-dark {
  background: var(--bg-secondary);
}

/* ============================================
   AGE VERIFICATION POPUP
============================================ */
#ageVerification {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

#ageVerification.hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  border: 2px solid var(--red-primary);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255, 26, 61, 0.3);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-modal img {
  max-width: 180px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(255, 26, 61, 0.5));
}

.age-modal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.age-modal p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.age-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-btn.confirm {
  background: var(--gradient-main);
  color: white;
}

.age-btn.confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 26, 61, 0.4);
}

.age-btn.deny {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-primary);
}

.age-btn.deny:hover {
  border-color: var(--text-muted);
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 10, 13, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

header.scrolled {
  background: rgba(11, 10, 13, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(255, 26, 61, 0.3));
  opacity: 1;
  visibility: visible;
}

.logo:hover img {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 0 20px rgba(255, 26, 61, 0.6));
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.nav-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 26, 61, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-social-link:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: translateY(-2px);
}

.nav-cta {
  padding: 12px 28px;
  background: var(--gradient-main);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 26, 61, 0.3);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
  width: 300px;
  height: 300px;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 26, 61, 0.5);
}

.nav-cta:active {
  transform: translateY(-1px) scale(1.02);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 10px 0;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 32px 60px;
  animation: fadeIn 1s ease-in-out;
}

/* Parallax effect for hero background */
.hero-background {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.2) contrast(1.1);
}

/* Hero images per pagina - Default (Home) */
.hero-background {
  background-image: url('../images/foto1.jpg');
}

/* Hero per Home - immagine del locale */
body.page-home .hero .hero-background {
  background-image: url('../images/immagini/woman-2486528-p.png');
}

/* Hero per Eventi Speciali */
body.page-eventi .hero .hero-background {
  background-image: url('../images/foto1.jpg');
}

/* Hero per Galleria */
body.page-galleria .hero .hero-background {
  background-image: url('../images/gallery.jpg');
}

/* Reduce space between hero and gallery section */
body.page-galleria .hero + .section {
  padding-top: 3px !important;
}

/* Hero per Contatti */
body.page-contatti .hero .hero-background {
  background-image: url('../images/3.jpg');
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 13, 0.4);
  z-index: 1;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 26, 61, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 211, 106, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(13, 8, 18, 0.3) 0%, rgba(26, 14, 21, 0.5) 100%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 3;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(0); opacity: 0; }
  50% { opacity: 1; transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content > * {
  animation: fadeInUp 0.8s ease-out both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

.hero-icon {
  max-width: 100px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 3px;
  filter: drop-shadow(0 0 25px rgba(255, 26, 61, 0.9));
  animation: pulse 3s ease-in-out infinite, float 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
}

.hero-logo {
  max-width: 240px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 40px rgba(255, 26, 61, 0.6));
  animation: pulse 3s ease-in-out infinite, float 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
}

.hero-logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 60px rgba(255, 26, 61, 0.9));
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(255, 26, 61, 0.6)); }
  50% { transform: scale(1.02); filter: drop-shadow(0 0 60px rgba(255, 26, 61, 0.8)); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 16px;
  margin-top: 0;
  color: transparent;
  -webkit-text-stroke: 3px var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-shadow: 
    0 0 20px rgba(255, 211, 106, 0.6),
    0 0 40px rgba(255, 211, 106, 0.4),
    0 0 60px rgba(255, 26, 61, 0.3);
  animation: titleSlideIn 1s ease-out, titleGlow 3s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 30px rgba(255, 211, 106, 0.5));
}

.hero h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-text-stroke: 4px var(--gold);
  color: transparent;
  z-index: -1;
  animation: titlePulse 2s ease-in-out infinite;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: underlineExpand 1s ease-out 0.5s forwards;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 211, 106, 0.6),
      0 0 40px rgba(255, 211, 106, 0.4),
      0 0 60px rgba(255, 26, 61, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 211, 106, 0.5));
  }
  50% {
    text-shadow: 
      0 0 30px rgba(255, 211, 106, 0.8),
      0 0 60px rgba(255, 211, 106, 0.6),
      0 0 90px rgba(255, 26, 61, 0.5);
    filter: drop-shadow(0 0 50px rgba(255, 211, 106, 0.7));
  }
}

@keyframes titlePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1.02);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes underlineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--red-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-btn {
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.cta-btn.primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 8px 32px rgba(255, 26, 61, 0.3);
}

.cta-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-btn.primary:hover::before {
  left: 100%;
}

.cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 50px rgba(255, 26, 61, 0.6);
}

.cta-btn.primary:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.cta-btn.secondary:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-4px);
}

.hero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.feature-icon {
  font-size: 20px;
}

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

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

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--border);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 28px; }
}

/* ============================================
   SECTION STYLES
============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-badge {
  display: inline-block;
  background: var(--gradient-main);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-badge.white {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

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

.about-feature i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-feature h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 400px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  min-height: 400px;
}

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

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 26, 61, 0.2), rgba(255, 211, 106, 0.2));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 24px;
  z-index: 1;
}

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

/* ============================================
   SERVICES SECTION
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 61, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--red-primary);
  box-shadow: 0 20px 60px rgba(255, 26, 61, 0.3);
  background: linear-gradient(135deg, rgba(255, 26, 61, 0.05), var(--surface));
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 24px rgba(255, 26, 61, 0.3);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 26, 61, 0.5);
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gallery-item.animate {
  opacity: 1;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  background: var(--surface);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 26, 61, 0.1), rgba(255, 211, 106, 0.1));
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5) 50%, transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 1;
  transition: all 0.3s ease;
  min-height: 130px;
  justify-content: flex-start;
  box-sizing: border-box;
  pointer-events: none; /* Allow clicks to pass through to gallery-item */
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6) 50%, transparent);
  padding: 28px 24px;
  min-height: 140px;
}

.gallery-overlay > div {
  width: 100%;
}

.gallery-overlay h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: left;
}

.gallery-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

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

/* ============================================
   INFO SECTION
============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

/* Specific override for prenota section */
#prenota .info-grid {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#prenota .container {
  padding-bottom: 0 !important;
}

#prenota img {
  margin: 0 auto !important;
  display: block !important;
}

#prenota .info-grid + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#prenota .info-card {
  margin-bottom: 0 !important;
}

#prenota .info-card:last-child {
  margin-bottom: 0 !important;
}

#prenota {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 60px !important;
}

#prenota .container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#prenota .info-grid {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#prenota + footer {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

body {
  margin-bottom: 0;
  padding-bottom: 0;
}

#prenota img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#prenota img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

#prenota .info-grid {
  margin-top: 0 !important;
}

.info-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

.info-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 61, 0.1), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.info-card:hover::before {
  width: 300px;
  height: 300px;
}

.info-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 26, 61, 0.2);
  background: linear-gradient(135deg, rgba(255, 26, 61, 0.05), var(--surface));
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: rgba(255, 26, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red-primary);
}

.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.info-link {
  color: var(--red-primary);
  text-decoration: underline;
  font-weight: 600;
}

.info-link:hover {
  color: var(--gold);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-primary), #d41630);
  padding: 80px 32px;
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  animation: gradientShift 8s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: white;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.cta-banner p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .cta-btn.primary {
  background: white;
  color: var(--red-primary);
}

.cta-banner .cta-btn.primary:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.cta-banner .cta-btn.secondary {
  border-color: white;
  color: white;
}

.cta-banner .cta-btn.secondary:hover {
  background: white;
  color: var(--red-primary);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--red-primary);
  padding: 20px 32px 16px;
  margin-top: 0 !important;
  margin-bottom: 0;
}

#info + footer {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-logo img {
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 1;
  visibility: visible;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 26, 61, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}

.whatsapp-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-wa 2s infinite;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6); }
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

/* Stagger animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Magnetic button effect */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text gradient animation */
@keyframes gradientText {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--red-primary), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

/* Performance optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: 100vh;
  }
  
  /* Disable cursor effects on mobile */
  .custom-cursor,
  .cursor-follower {
    display: none !important;
  }

  .nav-container {
    padding: 12px 20px;
  }

  .logo img {
    height: 40px;
  }

  .hero-icon {
    max-width: 80px;
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 80px);
    letter-spacing: 4px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 8px;
  }

  .hero-tagline {
    font-size: clamp(14px, 2.5vw, 18px);
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 14px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .section-subtitle {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    min-height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-overlay {
    padding: 20px;
    min-height: 120px;
  }

  .gallery-overlay h4 {
    font-size: 20px;
  }

  .gallery-overlay p {
    font-size: 13px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-card {
    padding: 32px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .social-links {
    justify-content: center;
  }

  .cta-banner {
    padding: 60px 20px;
    border-radius: 24px;
  }

  .cta-banner h2 {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 12px;
  }

  .cta-banner p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cta-banner-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-banner-buttons .cta-btn {
    width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 16px;
  }

  .hero {
    padding: 80px 16px 40px;
    min-height: 100vh;
  }

  .nav-container {
    padding: 10px 16px;
  }

  .logo img {
    height: 36px;
  }

  .hero-icon {
    max-width: 60px;
    margin-bottom: 6px;
  }

  .hero h1 {
    font-size: clamp(32px, 14vw, 60px);
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .hero-tagline {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-badge {
    font-size: 11px;
    padding: 6px 16px;
  }

  .section-title {
    font-size: clamp(28px, 10vw, 40px) !important;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-image {
    min-height: 250px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .gallery-overlay {
    padding: 16px;
    min-height: 100px;
  }

  .gallery-overlay h4 {
    font-size: 18px;
  }

  .gallery-overlay p {
    font-size: 12px;
  }

  .info-card {
    padding: 24px 20px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .info-card h3 {
    font-size: 20px;
  }

  .cta-banner {
    padding: 48px 16px;
    margin: 40px 0 0 0;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: clamp(24px, 8vw, 32px);
    letter-spacing: 2px;
  }

  .cta-banner p {
    font-size: 14px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-section h4 {
    font-size: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .evento-content {
    padding: 20px;
  }

  .evento-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .evento-description {
    font-size: 14px;
  }

  .evento-meta {
    flex-direction: column;
    gap: 8px;
  }

  .evento-date,
  .evento-time {
    font-size: 14px;
  }
}

/* ============================================
   ADDITIONAL MODERN EFFECTS
============================================ */

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, rgba(255, 255, 255, 0.05) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Selection color */
::selection {
  background: var(--red-primary);
  color: white;
}

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

/* Smooth page transitions */
body {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

/* Enhanced button press effect */
.cta-btn:active,
.nav-cta:active {
  transform: scale(0.98);
}

/* Image loading effect */
img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.loaded {
  opacity: 1;
}

/* Hover glow effect */
.service-card:hover .service-icon,
.info-card:hover .info-icon {
  box-shadow: 0 0 30px rgba(255, 26, 61, 0.6);
}

/* Text gradient on hover */
.section-title:hover {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s ease;
}

/* Smooth section transitions */
section {
  will-change: transform, opacity;
}

/* Enhanced gallery hover */
.gallery-item {
  will-change: transform;
}

/* Performance: GPU acceleration */
.service-card,
.gallery-item,
.info-card,
.cta-btn {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}


/* ============================================
   COOKIE CONSENT BANNER - GDPR COMPLIANT
============================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--bg-secondary), #1a1a1a);
  border-top: 2px solid var(--red-primary);
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.cookie-consent-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.cookie-consent-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.cookie-consent-links {
  margin-top: 8px;
}

.cookie-consent-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.cookie-consent-links a:hover {
  color: var(--red-primary);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.cookie-btn-accept {
  background: var(--gradient-main);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 26, 61, 0.4);
}

.cookie-btn-necessary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.cookie-btn-necessary:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.cookie-btn-save {
  background: var(--gradient-main);
  color: white;
  width: 100%;
  padding: 14px;
}

.cookie-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 26, 61, 0.4);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 2px solid var(--red-primary);
  padding: 32px;
  z-index: 10001;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-settings-panel.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-settings-content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cookie-settings-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 2px;
  margin: 0;
}

.cookie-close-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-close-btn:hover {
  color: var(--red-primary);
}

.cookie-settings-body {
  margin-bottom: 24px;
}

.cookie-settings-body > p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.cookie-setting-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-setting-header-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-setting-header-item label {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-badge-required {
  background: rgba(255, 26, 61, 0.2);
  color: var(--red-primary);
}

.cookie-setting-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--red-primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-settings-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-settings-panel {
    padding: 24px 16px;
  }

  .cookie-settings-header h3 {
    font-size: 24px;
  }
}

/* Privacy Policy Page Styles */
.privacy-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.privacy-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.privacy-section h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--red-primary);
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy-section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-section ul {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-section a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: var(--red-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .privacy-section h2 {
    font-size: 24px;
  }

  .privacy-section h3 {
    font-size: 20px;
  }
}

/* Contact Form Styles */
#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--red-primary);
}

#contact-form input:hover,
#contact-form textarea:hover {
  border-color: var(--gold);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  #contact-form {
    display: flex !important;
    flex-direction: column !important;
  }

  #contact-form input,
  #contact-form textarea {
    font-size: 14px;
    padding: 12px 16px;
  }

  #contact-form label {
    font-size: 13px;
  }

  #mappa iframe {
    height: 400px !important;
  }
}

@media (max-width: 480px) {
  .contact-methods-grid {
    gap: 20px !important;
  }

  #contact-form input,
  #contact-form textarea {
    font-size: 13px;
    padding: 10px 14px;
  }

  #mappa iframe {
    height: 300px !important;
  }
}

/* ============================================
   PROSSIMI EVENTI SECTION
============================================ */
.eventi-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}

.evento-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.evento-item:hover {
  border-color: var(--red-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 26, 61, 0.2);
}

.evento-item-reverse {
  direction: rtl;
}

.evento-item-reverse > * {
  direction: ltr;
}

.evento-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.evento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.evento-image img[src=""],
.evento-image img:not([src]) {
  opacity: 0;
}

.evento-item:hover .evento-image img {
  transform: scale(1.05);
}

.evento-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.evento-badge {
  display: inline-block;
  background: var(--gradient-main);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.evento-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold);
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.2;
}

.evento-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0;
}

.evento-date,
.evento-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 16px;
}

.evento-date i,
.evento-time i {
  color: var(--red-primary);
  font-size: 18px;
}

.evento-description {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 8px 0;
}

.evento-content .cta-btn {
  margin-top: 8px;
  width: fit-content;
}

@media (max-width: 1024px) {
  .evento-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .evento-item-reverse {
    direction: ltr;
  }

  .evento-image {
    min-height: 300px;
  }

  .evento-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .eventi-list {
    gap: 48px;
    margin-top: 48px;
  }

  .evento-item {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 20px;
  }

  .evento-item-reverse {
    direction: ltr;
  }

  .evento-image {
    min-height: 280px;
    border-radius: 20px 20px 0 0;
  }

  .evento-content {
    padding: 24px;
  }

  .evento-title {
    font-size: clamp(24px, 5vw, 32px);
  }

  .evento-description {
    font-size: 15px;
  }

  .evento-meta {
    flex-direction: column;
    gap: 12px;
  }

  .evento-content .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .eventi-list {
    gap: 32px;
    margin-top: 32px;
  }

  .evento-content {
    padding: 20px;
  }

  .evento-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .evento-title {
    font-size: clamp(20px, 6vw, 26px);
  }

  .evento-description {
    font-size: 14px;
  }

  .evento-date,
  .evento-time {
    font-size: 13px;
  }

  .evento-date i,
  .evento-time i {
    font-size: 16px;
  }
}

/* Remove empty space between sections */
.cta-banner + #momenti-indimenticabili {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#momenti-indimenticabili {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#momenti-indimenticabili .container {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

#momenti-indimenticabili .section-header {
  margin-top: 0 !important;
}

#momenti-indimenticabili .gallery-cta {
  margin-bottom: 0 !important;
}

#info {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#info .container {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}

#info .info-grid {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#info + footer {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

/* ============================================
   GALLERY LIGHTBOX / POPUP
============================================ */
#gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.3s ease;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10003;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  background: rgba(255, 26, 61, 0.8);
  border-color: var(--red-primary);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 48px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
  line-height: 1;
  padding: 0;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 26, 61, 0.8);
  border-color: var(--red-primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 36px;
  }
}

