/* 
   EVENT DETAIL PAGE - PURE HTML/CSS
   MAINTAINING DESIGN CONSISTENCY FROM PREVIOUS PAGES
*/

:root {
  /* Primary Brand Colors */
  --primary: #ca20fd;
  --secondary: #f27839;
  --accent-pink: #eb4f74;
  --accent-purple: #a86689;
  
  /* Requirement Colors */
  --primary-color: #ff4a17;
  --secondary-color: #912b93;
  --accent-color-1: #f3516a;
  --accent-color-2: #e16911;

  --white: #ffffff;
  --black: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #fdf8ff;
  
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  --container-width: 1200px;
  --border-radius: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
    background-color: var(--bg-light);
    background-image:
        radial-gradient(900px 400px at 5% 10%, rgba(202, 32, 253, 0.12), transparent 60%),
        radial-gradient(800px 360px at 95% 15%, rgba(242, 120, 57, 0.12), transparent 60%),
        radial-gradient(900px 500px at 50% 90%, rgba(235, 79, 116, 0.1), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(253, 248, 255, 0.95)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, rgba(255, 255, 255, 0) 2px 6px);
    background-attachment: fixed;
}

h1, h2, h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.container-custom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

#event-detail-main .container-custom {
    padding-left: 0;
    padding-right: 0;
}

.hero-section,
.highlights-section,
.banner-section,
.bottom-banner-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.highlights-section::before,
.banner-section::before,
.bottom-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.12;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    background-image: linear-gradient(135deg, rgba(202, 32, 253, 0.35), rgba(242, 120, 57, 0.25)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
}

.highlights-section::before {
    background-image: linear-gradient(135deg, rgba(242, 120, 57, 0.25), rgba(235, 79, 116, 0.2)),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80');
}

.bottom-banner-section::before {
    opacity: 0;
    background-image: none;
}

.banner-section::before {
    opacity: 0;
    background-image: none;
}


.hero-section .container-custom,
.highlights-section .container-custom,
.banner-section .container-custom,
.bottom-banner-section .container-custom {
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    padding: 30px 0 10px;
    background: #fcfcfc;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: #ddd;
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: #faf8ff;
}

.hero-section .container-custom {
    padding: 0 20px;
}

#event-detail-main .hero-section .container-custom {
    padding-left: 20px;
    padding-right: 20px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

.hero-content-row {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.event-details-column {
    flex: 1 1 60%;
}

.event-title {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    text-align: left;
}

.event-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.event-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.info-text {
    font-size: 1rem;
    color: var(--text-dark);
}

.info-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.info-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.pricing-card-column {
    flex: 1 1 40%;
}

.hero-image-placeholder {
    width: 100%;
    /* height: 400px; */
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: var(--spacing-lg);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    padding: 56px 40px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
    backdrop-filter: none;
}

.save-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-pink);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
}

.final-price {
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-text {
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}

.pricing-card .btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.pricing-card .btn-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(202, 32, 253, 0.1);
}

.pricing-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(202, 32, 253, 0.4);
}

.pricing-cta {
    width: 100%;
    margin: 20px 0;
}

.card-features {
    margin: 25px 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.card-features li {
    list-style: none;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.validity-info {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 10px;
    border-radius: 10px;
}

.validity-info .icon {
    margin-right: 6px;
}

/* Experience Highlights */
.highlights-section {
    padding: 50px 0;
    background: #fbfbfc;
}

/* About Event Inline */
.about-event-inline {
    margin-top: var(--spacing-md);
}

.about-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: left;
}

.about-label {
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 6px;
}

.about-ellipsis {
    display: inline;
}

.about-more {
    display: none;
}

.about-text.is-expanded .about-more {
    display: inline;
}

.about-text.is-expanded .about-ellipsis {
    display: none;
}

.about-toggle {
    margin-left: 8px;
    background: none;
    border: none;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
}

.about-toggle:hover {
    color: var(--secondary-color);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-header h2 {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.highlights-section .section-header h2 {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(202, 32, 253, 0.15);
    border-color: var(--primary);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS ICONS */
.css-icon-healing {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    position: relative;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.css-icon-convo {
    width: 40px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    position: relative;
}

.css-icon-convo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent-pink);
}

.css-icon-growth {
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    position: relative;
}

.css-icon-growth::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

.highlight-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--text-light);
}

.highlight-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Banners */
.banner-section {
    padding: 20px 0;
}

.pass-cta {
    background: rgba(255, 248, 249, 0.9);
    border: 2px dashed var(--accent-pink);
    padding: 16px 24px;
    border-radius: 20px;
    text-align: center;
    font-size: 2.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.pass-cta p {
    margin: 0;
}

.bottom-banner-section {
    padding-bottom: 0;
}

.bottom-cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: var(--spacing-lg);
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin: 16px 0 0;
    box-shadow: 0 20px 50px rgba(202, 32, 253, 0.2);
}

.banner-left h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
}

.banner-left p {
    opacity: 0.9;
    font-weight: 500;
    color: #ffffff;
}

.btn-get-pass {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-get-pass:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-image-placeholder { height: 300px; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    #event-detail-main .container-custom { padding-left: 18px; padding-right: 18px; }
    #event-detail-main .hero-section .container-custom { padding-left: 18px; padding-right: 18px; }
    .pricing-card { position: relative; top: auto; }
}

@media (max-width: 767px) {
    .hero-content-row { flex-direction: column; }
    .event-details-column,
    .pricing-card-column { flex: 1 1 100%; }
    .pricing-card { position: relative; top: auto; margin-top: 32px; }
    .event-title { font-size: 2.2rem; }
    .highlight-grid { grid-template-columns: 1fr; }
    .bottom-cta-banner { flex-direction: column; text-align: center; gap: 32px; }
    .hero-image-placeholder { height: 250px; }
    #event-detail-main .container-custom { padding-left: 14px; padding-right: 14px; }
    #event-detail-main .hero-section .container-custom { padding-left: 14px; padding-right: 14px; }
}
