/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

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

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

    body {
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at top left, #FF8040 0%, transparent 30%),
        radial-gradient(circle at bottom right, #FF61C0 0%, transparent 30%),
        #FF6F85;
      color: white;
      overflow-x: hidden;
    }

    /* NAVBAR */

    nav {
      position: sticky;
      top: 0;
      z-index: 1000;

      display: flex;
      justify-content: center;
      gap: 40px;

      padding: 20px;

      background: rgba(10, 10, 20, 0.7);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      letter-spacing: 1px;
      transition: 0.3s;
      position: relative;
    }

    nav a:hover {
      color: #00f5ff;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 2px;
      background: #00f5ff;
      transition: 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* HERO */

    header {
      height: 90vh;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      text-align: center;
      position: relative;
    }

    header::before {
      content: "";
      position: absolute;
      background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
        url('https://i.pinimg.com/736x/83/c1/a4/83c1a4749fab5cac33c08cc9191fecab.jpg');
      background-size: cover;
      background-position: center;
      z-index: -1;
    }

    h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 900;
      letter-spacing: 8px;

      background: linear-gradient(90deg, #00f5ff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      animation: glow 2s infinite alternate;
    }

    header p {
      margin-top: 20px;
      font-size: 1.2rem;
      color: rgba(255,255,255,0.8);
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #00008B;
      }
      to {
        text-shadow:
          0 0 20px #00f5ff,
          0 0 40px #ff00ff;
      }
    }

    /* SECTION */

    .section {
      margin: auto;
      padding: 100px 0;
    }

    .day {
      margin-bottom: 100px;
    }

    .day h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3rem;
      margin-bottom: 40px;

      color: #00f5ff;

      border-left: 6px solid #ff00ff;
      padding-left: 20px;
    }

    /* CARDS */

    .card {
      display: grid;
      grid-template-columns: 1fr 1fr;

      background: rgba(255,255,255,0.05);

      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 25px;

      overflow: hidden;

      margin-bottom: 40px;

      transform: translateY(100px);
      opacity: 0;

      transition:
        transform 0.8s ease,
        opacity 0.8s ease,
        box-shadow 0.3s;
    }

    .card.show {
      transform: translateY(0);
      opacity: 1;
    }

    .card:hover {
      transform: scale(1.02);
      box-shadow:
        0 0 25px rgba(100,245,255,0.4),
        0 0 50px rgba(255,0,255,0.2);
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .info {
      padding: 40px;

      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stage {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;

      color: #ff00ff;
    }

    .event {
      margin: 12px 0;
      padding: 15px 20px;

      background: rgba(255,255,255,0.06);
      border-radius: 12px;

      transition: 0.3s;
    }

    .event:hover {
      background: rgba(0,245,255,0.2);
      transform: translateX(10px);
    }

    /* FOOTER */

    footer {
      text-align: center;
      padding: 40px;
      background: rgba(0,0,0,0.4);
      color: rgba(255,255,255,0.7);
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* MOBILE */

    @media (max-width: 900px) {

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

      nav {
        gap: 20px;
        flex-wrap: wrap;
      }

      .day h2 {
        font-size: 2rem;
      }

      .info {
        padding: 25px;
      }
    }

    
    h2 {
    font-family: 'Bradley Hand', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px white;
    text-shadow: -4px -4px  white;
    font-weight: 600;
    }
    
  
