/* ============================================
   Ticket Page — Curug Song
   ============================================ */

/* --- Navbar --- */
.t-navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.t-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.t-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF6B35;
  text-decoration: none;
  letter-spacing: 1px;
}
.t-nav-links {
  display: flex;
  gap: 24px;
}
.t-nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.t-nav-link:hover,
.t-nav-link--active {
  color: #FF6B35;
}

/* --- Banner --- */
.t-banner {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.t-banner-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* --- Section --- */
.t-section {
  padding: 80px 20px;
  background: #f9f9f9;
}
.t-container {
  max-width: 800px;
  margin: 0 auto;
}
.t-header {
  text-align: center;
  margin-bottom: 50px;
}
.t-header__title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}
.t-header__subtitle {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 15px;
}
.t-header__line {
  width: 60px;
  height: 3px;
  background: #FF6B35;
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Price Card --- */
.t-price-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  max-width: 400px;
  margin: 0 auto;
}
.t-price-icon {
  font-size: 2.5rem;
  color: #FF6B35;
  margin-bottom: 15px;
}
.t-price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
}
.t-price-label {
  font-size: 1rem;
  color: #888;
  margin-bottom: 20px;
}
.t-price-desc {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Terms --- */
.t-terms {
  padding: 60px 20px;
  background: #fff;
}
.t-terms-title {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}
.t-terms-text {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}
.t-terms-text ul {
  list-style: disc;
  padding-left: 20px;
}
.t-terms-text li {
  margin-bottom: 8px;
}

/* --- Contact --- */
.t-contact {
  padding: 50px 20px;
  background: #FF6B35;
  text-align: center;
}
.t-contact-text {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.t-contact-btn {
  display: inline-block;
  background: #fff;
  color: #FF6B35;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s;
}
.t-contact-btn:hover {
  transform: translateY(-2px);
}

/* --- Footer --- */
.t-footer {
  background: #1a1a2e;
  padding: 60px 20px 30px;
}
.t-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.t-footer-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.t-footer-text {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
}
.t-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.t-social-link {
  color: #999;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.t-social-link:hover {
  color: #FF6B35;
}
.t-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.t-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}
.t-footer-bar {
  background: #0f0f1f;
  text-align: center;
  padding: 18px 20px;
}
.t-footer-bar p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .t-nav-links {
    gap: 12px;
    flex-wrap: wrap;
  }
  .t-banner-title {
    font-size: 1.8rem;
  }
  .t-price-amount {
    font-size: 2.2rem;
  }
  .t-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
