html {
  scroll-behavior: smooth;
}

:root {
  --primary-gold: #d4af37;
  --deep-burgundy: #8b1538;
  --rich-navy: #1a1a2e;
  --warm-cream: #f8f6f0;
}

body {
  padding-top: 0;
}

.hero-section {
  min-height: 35vh;
  background: linear-gradient(
    135deg,
    var(--rich-navy) 0%,
    var(--deep-burgundy) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="theater-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23theater-pattern)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--warm-cream);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--warm-cream);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  margin-top: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  border: none;
  color: var(--rich-navy);
  font-weight: 600;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--rich-navy);
}

.decorative-elements {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 20 L120 60 L160 60 L130 90 L140 130 L100 110 L60 130 L70 90 L40 60 L80 60 Z" fill="%23d4af37"/><circle cx="100" cy="100" r="80" fill="none" stroke="%23d4af37" stroke-width="2"/></svg>');
  background-size: 300px 300px;
  background-repeat: no-repeat;
  background-position: center;
}

.floating-notes {
  position: absolute;
  top: 20%;
  left: 10%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-notes i {
  color: var(--primary-gold);
  font-size: 2rem;
  margin: 0 10px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.theater-icon {
  color: var(--primary-gold);
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

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

/* Subscriptions Section Styles */
.subscriptions-section {
  padding: 30px 0;
  background: var(--warm-cream);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--rich-navy);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--deep-burgundy);
  opacity: 0.8;
}

.subscription-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.subscription-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gold), var(--deep-burgundy));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.subscription-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.subscription-card:hover::before {
  transform: scaleX(1);
}

.subscription-card.selected {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, #fff9e6, #ffffff);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.subscription-card.selected::before {
  transform: scaleX(1);
}

.subscription-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
  text-align: center;
}

.subscription-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rich-navy);
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.3;
}

.subscription-description {
  font-size: 1rem;
  color: var(--deep-burgundy);
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.8;
  flex-grow: 1;
}

.subscription-discount {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  color: var(--rich-navy);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-top: auto;
}

.selection-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.subscription-card.selected .selection-indicator {
  opacity: 1;
  transform: scale(1);
}

/* Events Selection Section */
.events-selection {
  background: var(--rich-navy);
  padding: 60px 0;
  margin-top: 50px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.events-selection.show {
  opacity: 1;
  transform: translateY(0);
}

.events-title {
  color: var(--primary-gold);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.text-gold {
  color: var(--primary-gold);
}

.events-subtitle {
  color: var(--warm-cream);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.9;
}

.event-group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.event-group-title {
  color: var(--primary-gold);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.event-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 2px solid;
}

.event-item:hover {
  background: rgba(212, 175, 55, 0.1);
  /* transform: translateX(10px); */
}

.event-item.selected {
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--primary-gold);
  /* transform: translateX(15px); */
}

.event-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.event-checkmark {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  height: 25px;
  width: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.event-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-gold);
}

.event-item.selected .event-checkmark {
  background-color: var(--primary-gold);
}

.event-item.selected .event-checkmark:after {
  display: block;
  background: var(--rich-navy);
}

.event-details {
  color: var(--warm-cream);
  padding-right: 50px;
}

.event-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-date {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.event-time {
  font-size: 0.9rem;
  opacity: 0.7;
}

.selected-subscription-display {
  background: var(--rich-navy);
  color: var(--warm-cream);
  padding: 30px;
  border-radius: 15px;
  margin-top: 50px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.selected-subscription-display.show {
  opacity: 1;
  transform: translateY(0);
}

.summary-section {
  background: var(--deep-burgundy);
  color: var(--warm-cream);
  padding: 40px;
  border-radius: 15px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.summary-section.show {
  opacity: 1;
  transform: translateY(0);
}

.summary-title {
  color: var(--primary-gold);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.selected-events-list {
  list-style: none;
  padding: 0;
}

.selected-events-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-gold);
}

.proceed-btn {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  border: none;
  color: var(--rich-navy);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  width: 100%;
}

.proceed-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .btn-primary-custom {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .subscription-card {
    padding: 30px 20px;
  }

  .subscription-title {
    font-size: 1.3rem;
  }

  .events-title {
    font-size: 2rem;
  }

  .event-item {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .subscriptions-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .events-selection {
    padding: 40px 0;
  }
}

#buySubscription {
  background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
  border: none;
  color: var(--rich-navy);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  width: 100%;
}

#buySubscription:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--rich-navy);
}

#buySubscription:focus {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  outline: none;
}

.event-items {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* --- Subscription Summary Styles --- */
.summaryContainer {
  padding: 10px;
}
.cofsummary {
  display: flex;
  flex-direction: column;
  background: #fff9e6;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.08);
  margin-bottom: 18px;
  padding: 18px 22px;
  border-left: 5px solid var(--primary-gold);
}

.cofsummaryitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.cofsummaryitemtitle {
  color: var(--rich-navy);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
.cofsummaryitemtitle2 {
  color: var(--deep-burgundy);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.cofsummaryitemvalue {
  color: var(--rich-navy);
  font-weight: 700;
  font-size: 1.13rem;
  background: linear-gradient(90deg, var(--primary-gold), #f4d03f);
  padding: 4px 14px;
  border-radius: 18px;
  margin-left: 12px;
  min-width: 90px;
  text-align: right;
}

@media (max-width: 600px) {
  .cofsummary,
  .cofsummaryitem {
    flex-direction: column;
    align-items: flex-start;
  }
  .cofsummaryitemvalue {
    margin-left: 0;
    margin-top: 6px;
    min-width: unset;
    width: 100%;
    text-align: left;
  }
}

.opereta-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: auto;
  object-fit: contain;
  margin-top: 20px;
  margin-left: 20px;
}

@media (max-width: 600px) {
  .opereta-img {
    width: 250px;
  }
}

.exclusiv-text {
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
