:root {
  --primary-color: #d4af37; 
  --secondary-color: #ff0055; 
  --bg-dark: #0f0f13;
  --bg-card: rgba(30, 30, 40, 0.7);
  --text-main: #ffffff;
  --text-muted: #cccccc;
  --neon-glow: 0 0 10px rgba(212, 175, 55, 0.7), 0 0 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
  --neon-glow-pink: 0 0 10px rgba(255, 0, 85, 0.7), 0 0 20px rgba(255, 0, 85, 0.5), 0 0 30px rgba(255, 0, 85, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  text-shadow: var(--neon-glow);
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(15, 15, 19, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.1rem;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
}
.burger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: var(--neon-glow);
  transform: scale(1.05);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.btn-neon-pink {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.btn-neon-pink:hover {
  background: var(--secondary-color);
  color: white;
  box-shadow: var(--neon-glow-pink);
}


.hero-banner {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(15, 15, 19, 0.8), rgba(15, 15, 19, 0.9)), url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.banner-content {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  max-width: 800px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.banner-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--neon-glow);
  border-color: var(--primary-color);
}

.hero-banner h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
  margin-bottom: 1.5rem;
}

.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}


.events-hero {
  text-align: center;
  padding: 5rem 2rem;
  background: radial-gradient(circle at center, rgba(30,30,40,1) 0%, rgba(15,15,19,1) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.time-box {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 1rem;
  min-width: 90px;
  box-shadow: inset 0 0 10px rgba(212,175,55,0.2);
}

.time-box span {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.time-box label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
}


.timeline-section {
  padding: 4rem 2rem;
}

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

.card {
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}

.card-img {
  height: 200px;
  background-color: #2a2a35;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-img.week1 { background-image: url('../images/sanremo.png'); }
.card-img.week2 { background-image: url('../images/cyberpunk.png'); }
.card-img.week3 { background-image: url('../images/ferragosto.png'); }
.card-img.week4 { background-image: url('../images/wildwest.png'); }


.card-content {
  padding: 1.5rem;
}

.card-date {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}


.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(212, 175, 55, 0.05);
}

.disclaimer-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}


.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-card);
  margin: auto;
  padding: 2.5rem;
  border: 1px solid var(--primary-color);
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-btn {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

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


.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid #444;
  color: white;
  border-radius: 5px;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.checkbox-group input {
  margin-top: 5px;
}
.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.error-message {
  color: #ff4444;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
  background: rgba(255, 68, 68, 0.1);
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ff4444;
}


.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-form-box, .contact-info-box {
  flex: 1;
  min-width: 300px;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 15px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  margin-top: 1rem;
}


.legal-content {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 15px;
  margin: 2rem auto;
}
.legal-content h2 { margin-top: 2rem; color: var(--primary-color); }
.legal-content p, .legal-content ul { margin-bottom: 1rem; color: #ccc; }
.legal-content ul { padding-left: 1.5rem; }


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 19, 0.95);
  border-top: 1px solid var(--primary-color);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-text {
  font-size: 0.9rem;
  max-width: 70%;
}
.cookie-text a {
  text-decoration: underline;
  font-weight: 500;
}


.ai-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--neon-glow);
  z-index: 1000;
  transition: transform 0.3s;
}
.ai-widget:hover {
  transform: scale(1.1);
}
.ai-widget svg {
  fill: var(--bg-dark);
  width: 30px;
  height: 30px;
}


footer {
  background: #08080a;
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--primary-color); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}


@media (max-width: 768px) {
  .logo { font-size: 1.2rem; }
  .hero-banner h1 { font-size: 2.5rem; }
  
  .burger { display: flex; }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 19, 0.98);
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    z-index: 99;
  }
  
  nav.active {
    display: flex;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1.5rem;
  }
  
  nav .header-btn {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }

  .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .cookie-text { max-width: 100%; }

  .timer { gap: 1rem; flex-wrap: wrap; }
  .time-box { min-width: 75px; padding: 0.8rem; }
  .time-box span { font-size: 2rem; }
}

@media (max-width: 480px) {
  .timer { gap: 0.8rem; }
  .time-box { min-width: 65px; padding: 0.6rem; }
  .time-box span { font-size: 1.6rem; }
}

@media (max-width: 320px) {
  .hero-banner h1 { font-size: 1.8rem; }
  .banner-content { padding: 1.5rem; }
  .btn { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
  .timer { gap: 0.5rem; }
  .time-box { min-width: 55px; padding: 0.5rem; }
  .time-box span { font-size: 1.3rem; }
}


.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.chat-window.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--primary-color);
  color: var(--bg-dark);
  padding: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--bg-dark);
  cursor: pointer;
}
.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-msg {
  max-width: 80%;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
}
.chat-msg.ai {
  background: rgba(255,255,255,0.1);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.chat-msg.user {
  background: var(--primary-color);
  color: var(--bg-dark);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}
.chat-footer {
  display: flex;
  padding: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
}
.chat-footer input {
  flex: 1;
  background: none;
  border: none;
  color: white;
  padding: 0.5rem;
  outline: none;
}
.chat-footer button {
  background: var(--primary-color);
  border: none;
  color: var(--bg-dark);
  padding: 0 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
}


.feature-card, .sneak-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.sneak-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(212, 175, 55, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.sneak-card > div {
  z-index: 2;
}
.sneak-card:hover {
  transform: scale(1.05);
}
.sneak-card:hover::before {
  opacity: 1;
}

/* Extracted Utility Classes */
.header-btn-style { padding: 0.6rem 1.5rem; font-size:0.9rem; }
.pt-4rem { padding-top: 4rem; }
.contact-heading { text-align: center; color: var(--primary-color); font-size: 2.5rem; margin-bottom: 3rem; }
.contact-subheading { font-size: 1.8rem; margin-bottom: 1.5rem; }
.mt-2rem { margin-top: 2rem; }
.w-100 { width: 100%; }
.events-hero-title { font-size: 3rem; color: var(--primary-color); }
.events-hero-subtitle { font-size: 1.2rem; color: #ddd; max-width: 600px; margin: 0 auto; }
.events-section-title { text-align:center; font-size: 2.5rem; color: var(--text-main); }
.btn-large { font-size:1.5rem; padding: 1.2rem 3rem; }
.disclaimer-title { color:var(--primary-color); margin-bottom:1.5rem; font-size:1.8rem; }
.btn-disabled { width:100%; font-size:1.2rem; cursor:not-allowed; opacity:0.5; }
.footer-text { color:var(--text-muted); font-size:0.9rem; line-height:1.8; }
.footer-heading { color:var(--text-main); font-size:1.1rem; }
.footer-address { color:var(--text-muted); font-size:0.95rem; line-height:1.8; }
.social-links { margin-top:1rem; display:flex; gap:1rem; align-items:center; }
.text-main { color:var(--text-main); }
.text-center { text-align: center; }
.mt-4rem { margin-top: 4rem; }
.section-title-gold { color: var(--primary-color); font-size: 2.5rem; text-transform: uppercase; }
.section-desc-muted { color: var(--text-muted); font-size: 1.1rem; max-width: 800px; margin: 1.5rem auto; line-height: 1.8; }
.grid-300 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card-gold { background: var(--bg-card); padding: 2rem; border-radius: 15px; border-top: 3px solid var(--primary-color); text-align: center; }
.feature-title-gold { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }
.feature-card-pink { background: var(--bg-card); padding: 2rem; border-radius: 15px; border-top: 3px solid var(--secondary-color); text-align: center; }
.feature-title-pink { color: var(--secondary-color); font-size: 1.5rem; margin-bottom: 1rem; }
.sneak-peek-section-wrap { margin-top: 5rem; margin-bottom: 5rem; text-align: center; }
.sneak-peek-title { font-size: 2.2rem; margin-bottom: 3rem; }
.text-pink { color: var(--secondary-color); }
.grid-250 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.sneak-card-base { display: block; height: 200px; border-radius: 10px; position: relative; overflow: hidden; background-position: center; background-size: cover; }
.bg-sanremo { background-image: url('/assets/images/sanremo-desktop.webp'); }
@media (max-width: 768px) {
  .bg-sanremo { background-image: url('/assets/images/sanremo-mobile.webp'); }
}
.bg-cyberpunk { background-image: url('/assets/images/cyberpunk-desktop.webp'); }
@media (max-width: 768px) {
  .bg-cyberpunk { background-image: url('/assets/images/cyberpunk-mobile.webp'); }
}
.bg-ferragosto { background-image: url('/assets/images/ferragosto-desktop.webp'); }
@media (max-width: 768px) {
  .bg-ferragosto { background-image: url('/assets/images/ferragosto-mobile.webp'); }
}
.bg-wildwest { background-image: url('/assets/images/wildwest-desktop.webp'); }
@media (max-width: 768px) {
  .bg-wildwest { background-image: url('/assets/images/wildwest-mobile.webp'); }
}
.sneak-card-label { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.8); padding: 1rem; }
.sneak-card-title-gold { color: var(--primary-color); margin: 0; }
.sneak-card-title-pink { color: var(--secondary-color); margin: 0; }
.mt-3rem { margin-top: 3rem; }
.btn-outline-white { border-color: var(--text-main); color: var(--text-main); }
.text-gold { color:var(--primary-color); }
.not-found-title { font-size: 2rem; margin-bottom: 2rem; }
.not-found-desc { margin-bottom: 2rem; color: #aaa; }
