/* toronto.css - Toronto Event Page Styles */

/* ==========================================================================
   Reset and Base
   ========================================================================== */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   overflow: hidden;
   height: 100vh;
   color: white;
}

/* ==========================================================================
   Main Container
   ========================================================================== */
.toronto-event {
   position: relative;
   width: 100vw;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Background */
.toronto-event__bg {
   transform: translate(-50%, -50%) scale(1.1); /* escala extra para cubrir el blur */
   min-width: 100%;
   min-height: 100%;
   object-fit: cover; 
   filter: blur(8px);
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   z-index: -2;
}

.toronto-event__video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.toronto-event__overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(ellipse at center, 
       rgba(0, 0, 0, 0.3) 0%, 
       rgba(0, 0, 0, 0.938) 100%);
}

/* CN Tower Landmark */
.toronto-event__landmark {
   position: absolute;
   right: 5%;
   bottom: 0;
   height: 80%;
   z-index: -1;
}

.toronto-event__tower {
   height: 100%;
   opacity: 0.2;
   filter: drop-shadow(0 0 50px rgba(233, 30, 99, 0.5));
   animation: tower-glow 4s ease-in-out infinite;
}

@keyframes tower-glow {
   0%, 100% { filter: drop-shadow(0 0 50px rgba(233, 30, 99, 0.5)); }
   50% { filter: drop-shadow(0 0 80px rgba(233, 30, 99, 0.8)); }
}

.toronto-event__tower-lights {
   position: absolute;
   top: 10%;
   left: 50%;
   transform: translateX(-50%);
   width: 10px;
   height: 10px;
   background: #FF6B35;
   border-radius: 50%;
   box-shadow: 0 0 20px #FF6B35;
   animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
   0%, 100% { opacity: 1; }
   50% { opacity: 0.3; }
}

/* Content Container */
.toronto-event__content {
   position: relative;
   z-index: 10;
   width: 100%;
   max-width: 1400px;
   padding: 40px;
}

/* Header */
.toronto-event__header {
   position: absolute;
   top: 40px;
   left: 40px;
   right: 40px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.toronto-event__back {
   display: flex;
   align-items: center;
   gap: 10px;
   color: white;
   text-decoration: none;
   font-weight: 600;
   padding: 10px 20px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border-radius: 30px;
   transition: all 0.3s ease;
}

.toronto-event__back:hover {
   background: rgba(255, 255, 255, 0.2);
   transform: translateX(-5px);
}

.toronto-event__lang {
   display: flex;
   gap: 15px;
   align-items: center;
   font-weight: 600;
}

.toronto-event__lang a {
   color: rgba(255, 255, 255, 0.6);
   text-decoration: none;
   transition: color 0.3s ease;
}

.toronto-event__lang a.active,
.toronto-event__lang a:hover {
   color: white;
}

/* Main Info */
.toronto-event__info {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   margin-top: 100px;
}

/* City Badge */
.toronto-event__city-badge {
   display: inline-flex;
   align-items: center;
   gap: 15px;
   background: #ff6b3567;
   backdrop-filter: blur(10px);
   padding: 15px 30px;
   border-radius: 50px;
   border: 2px solid #fc5f26d3;
   margin-bottom: 30px;
   animation: badge-float 3s ease-in-out infinite;
}

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

.toronto-event__city-flag {
   font-size: 2rem;
}

.toronto-event__city-name {
   font-size: 1.2rem;
   font-weight: 800;
   letter-spacing: 3px;
}

/* Title */
.toronto-event__title {
   margin-bottom: 40px;
   position: relative;
}

.toronto-event__title-top {
   display: block;
   font-size: 3rem;
   font-weight: 900;
   color: #ffffff;
   letter-spacing: 5px;
   text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.toronto-event__title-main {
   display: block;
   font-size: 8rem;
   font-weight: 900;
   letter-spacing: -5px;
   line-height: 0.8;
   background: linear-gradient(180deg, #FF6B35 0%, #ec987a 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   text-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
   animation: title-pulse 2s ease-in-out infinite;
}

@keyframes title-pulse {
   0%, 100% { transform: scale(1); }
   50% { transform: scale(1.02); }
}

.toronto-event__title-year {
   position: absolute;
   right: -50px;
   top: 50%;
   transform: translateY(-50%) rotate(-90deg);
   font-size: 1.5rem;
   font-weight: 700;
   letter-spacing: 10px;
   opacity: 0.3;
}

/* Details */
.toronto-event__details {
   display: flex;
   align-items: center;
   gap: 40px;
   margin-bottom: 30px;
}

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

.toronto-event__date-day {
   display: block;
   font-size: 1rem;
   font-weight: 600;
   letter-spacing: 2px;
   opacity: 0.8;
}

.toronto-event__date-number {
   display: block;
   font-size: 4rem;
   font-weight: 900;
   line-height: 1;
   color: #FF6B35;
}

.toronto-event__date-month {
   display: block;
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 3px;
}

.toronto-event__separator {
   width: 2px;
   height: 60px;
   background: rgba(255, 255, 255, 0.2);
}

.toronto-event__venue {
   display: flex;
   align-items: center;
   gap: 15px;
   text-align: left;
}

.toronto-event__venue-icon {
   font-size: 2.5rem;
}

.toronto-event__venue-name {
   display: block;
   font-size: 1.3rem;
   font-weight: 700;
}

.toronto-event__venue-time {
   display: block;
   font-size: 1rem;
   opacity: 0.7;
}

/* Artists */
.toronto-event__artists {
   margin-bottom: 40px;
}

.toronto-event__artists-label {
   font-size: 0.9rem;
   font-weight: 600;
   letter-spacing: 2px;
   opacity: 0.6;
   margin-bottom: 10px;
}

.toronto-event__artists-list {
   font-size: 1.2rem;
   font-weight: 600;
}

.toronto-event__artist {
   color: #ffffff;
}

.toronto-event__artist-separator {
   margin: 0 15px;
   opacity: 0.5;
}

/* CTAs */
.toronto-event__actions {
   display: flex;
   gap: 20px;
   margin-bottom: 50px;
}

.toronto-event__cta {
   padding: 20px 40px;
   border-radius: 60px;
   text-decoration: none;
   font-weight: 700;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.toronto-event__cta--primary {
   background: linear-gradient(135deg, #FF6B35 0%, #FF6B35 100%);
   color: white;
   display: flex;
   align-items: center;
   gap: 15px;
}

.toronto-event__cta--primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4);
}

.toronto-event__cta-icon {
   font-size: 1.5rem;
}

.toronto-event__cta-text {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.toronto-event__cta-price {
   font-size: 0.85rem;
   opacity: 0.9;
   font-weight: 400;
}

.toronto-event__cta--secondary {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.3);
   display: flex;
   align-items: center;
   gap: 10px;
}

.toronto-event__cta--secondary:hover {
   background: rgba(255, 255, 255, 0.2);
   transform: translateY(-3px);
}

/* ==========================================================================
   Mobile – Pantalla completa sin scroll
   ========================================================================== */
@media (max-width: 768px) {
  /* Impedir cualquier scroll y fijar altura */
  html, body {
    overflow: hidden;
    height: 100vh;
  }
  .toronto-event {
    height: 100vh;
    overflow: hidden;
    padding: 0;
  }

  /* Fondo y overlay más suaves */
  .toronto-event__bg {
    transform: translate(-50%, -50%) scale(1.2);
    filter: blur(5px);
  }
  .toronto-event__overlay {
    background: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.95) 100%);
  }

  /* Contenido compacto */
  .toronto-event__content {
    padding: 10px;
    max-width: 100%;
  }
  .toronto-event__header {
    position: static;
    margin: 10px 0;
    padding: 0 10px;
  }
  .toronto-event__back {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .toronto-event__info {
    margin-top: 10px;
    padding: 0 10px;
  }
  .toronto-event__city-badge {
    padding: 10px 20px;
    margin-bottom: 15px;
  }

  .toronto-event__title {
    margin-bottom: 20px;
  }
  .toronto-event__title-top {
    font-size: 1.6rem;
  }
  .toronto-event__title-main {
    font-size: 4rem;
    letter-spacing: -3px;
  }

  .toronto-event__details {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .toronto-event__separator {
    width: 50px;
    height: 2px;
  }

  .toronto-event__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  .toronto-event__cta {
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
  }
  .toronto-event__cta--primary {
    gap: 8px;
  }

  /* Ocultar elemento decorativo si ocupa espacio */
  .toronto-event__landmark {
    display: none;
  }
}

/* Ajustes extra para pantallas muy pequeñas */
@media (max-width: 480px) {
  html, body {
    overflow: hidden;
  }
  .toronto-event__title-main {
    font-size: 3.5rem;
  }
  .toronto-event__date-number {
    font-size: 2.5rem;
  }
  .toronto-event__actions {
    gap: 5px;
    margin-bottom: 10px;
  }
  .toronto-event__cta {
    padding: 12px;
    font-size: 0.8rem;
  }
}