/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 393:0 Unexpected "<"

**/

<style>
  
  body {
    background: #000;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    margin: 0;
  }

  .slideshow-container {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

  .slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slideshow-image.active {
    opacity: 1;
  }

.slideshow-title h1 {
  font-size: 3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 0;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

  .slideshow-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
  }

  .convention-page {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  /* Upcoming Events Section */
  .upcoming-events {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Past Events Section */
  .past-events {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Event Card Style */
  .event-card {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .event-banner {
    width: 220px;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    border-radius: 16px;
  }

 .event-info {
  padding: 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 12px;
}

.event-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.event-meta {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ccc;
}

.event-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.event-description p {
  margin: 0 0 10px;
}

.event-website-link {
  align-self: flex-start;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff4444;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.event-website-link:hover {
  border-bottom: 2px solid #ff4444;
  color: #ff7777;
}


  .section-heading {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0px;
    color:white;
  }

  .past-event-card {
    background-color: #222;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 0px;
    color:white;
  }

  .gallery-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .gallery-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .gallery-preview img:hover {
    transform: scale(1.05);
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .slideshow-title h1 {
      font-size: 2.5rem;
      padding: 1rem;
    }

    .convention-page {
      flex-direction: column;
    }

    .upcoming-events, .past-events {
      flex: 1;
      margin-bottom: 30px;
    }

    .event-card {
      flex-direction: column;
      align-items: flex-start;
    }

    .event-banner {
      width: 100%;
      height: auto;
    }

    .event-info {
      padding-left: 0;
      padding-right: 0;
    }

    .section-heading {
      font-size: 1.6rem;
      color:white;
    }

    .gallery-preview img {
      width: 50px;
      height: 50px;
    }
  }

  /* Tablet responsiveness */
  @media (max-width: 1024px) {
    .slideshow-title h1 {
      font-size: 2.8rem;
      padding: 1rem 2rem;
    }

    .event-card {
      gap: 16px;
    }

    .event-banner {
      width: 200px;
    }

    .event-info {
      padding: 15px 0;
    }

    .gallery-preview img {
      width: 55px;
      height: 55px;
    }
  }

  /* Large mobile or small tablet devices (landscape) */
  @media (max-width: 1200px) {
    .slideshow-title h1 {
      font-size: 1.9rem;
    }

    .event-banner {
      width: 100%;
    }

    .section-heading {
      font-size: 1.8rem;
    }
  }

  .enhanced-card {
  background-color: #111;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enhanced-card:hover {
  transform: scale(1.015);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
}

/* Left red accent strip */
.event-accent {
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ff0000, #800000);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Badge */
.event-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.event-badge {
  background-color: #ff4444;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography and spacing */
.event-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.event-meta {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ccc;
}

.event-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.event-description p {
  margin: 0 0 10px;
}

.event-website-link {
  align-self: flex-start;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff4444;
  text-decoration: none;
  position: relative;
}

.event-website-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff4444;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.event-website-link:hover::after {
  transform: scaleX(1);
}

  .view-gallery-button {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff4444, #800000);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease-in-out;
  margin-bottom:30px;
}

.view-gallery-button:hover {
  background: linear-gradient(135deg, #ff6666, #a00000);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 0, 0, 0.3);
}

</style>