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

/* General Styling */
body {
  font-family: 'Anton', sans-serif;
  background-color: white;
  overflow-x: hidden;
  color: #fff;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 648px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Main Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
}

.hero-text h1 {
  font-size: 6vw;
  line-height: 0.9;
  color: white;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
  letter-spacing: 1px;
}

/* Collage of Smaller Images */ 
.collage {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 21px;
}

.collage div img {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  display: block;
}

/* Image Specific Sizes and Offsets */
.flip {
  position: absolute;
  top: 10px;
  right: 340px;
  z-index: 1;
}

.flip img {
  width: 226px;
  height: 206px;
}

.dora {
  position: relative;
  top: 150px;
  right: 174px;
  z-index: 2;
}

.dora img {
  width: 244px;
  height: 296px;
}

.thor {
  position: relative;
  right: 390px;
  z-index: 3;
}

.thor img {
  width: 277px;
  height: 225px;
}
/* ===== Ticket Card ===== */
.ticket-card {
  width: 548px;
  height: 233px;
  flex-shrink: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  left: 650px;
  bottom: 30px;
}

.card-content {
  display: flex;
  height: 100%;
}

.swing {
  width: 223px;
  height: 233px;
  flex-shrink: 0;
  aspect-ratio: 223/233;
}

.swing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: transparent;
}

/* ===== Slider Controls ===== */
.slider {
  width: 48px;
  height: 23px;
  flex-shrink: 0;
  display: flex;
  gap: 0;
}

.slider-btn {
  width: 24px;
  height: 23px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: white;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.slider-btn:hover {
  opacity: 0.8;
}

.slider-btn.prev {
  background-color: #1a237e;
}

.slider-btn.next {
  background-color: #d32f2f;
}

/* ===== Ticket Info ===== */
.ticket-info {
  width: 325px;
  height: 212px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #F3DFE0;
}

.ticket-card h2 {
  color: #090037;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: left;
}

.order-btn {
  background-color: transparent;
  border: 1.5px solid #A94C4C;
  color: #C18191;
  padding: 10px 25px;
  font-weight: bold;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  width: auto;
}

.order-btn:hover {
  background-color: #e91e63;
  color: white;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .bottom {
    flex-direction: column;
    align-items: center;
  }
  
  .ticket-card {
    width: 100%;
    max-width: 548px;
    height: auto;
  }
  
  .card-content {
    flex-direction: column;
  }
  
  .swing {
    width: 100%;
    height: auto;
    aspect-ratio: 223/233;
  }
  
  .swing img {
    width: 100%;
    height: auto;
  }
  
  .right-section {
    width: 100%;
    align-items: center;
  }
  
  .ticket-info {
    width: 100%;
    height: auto;
    padding: 25px 20px;
  }
  
  .ticket-card h2 {
    font-size: 1.6rem;
  }
  
  .order-btn {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}