/* Event Detail Desktop Styles (>=1200px) */
:root {
    --bg-light: #fdfcfb;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-gold: #cba174;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: 'Noto Sans SC', sans-serif;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* Hero Section */
.detail-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: calc(160px * var(--hero-ratio, 1)) 0 calc(80px * var(--hero-ratio, 1));
    color: white;
    position: relative;
}

.detail-hero .container {
    margin: 0 250px !important;
    width: auto !important;
    max-width: none !important;
}

.back-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    /* Pill shape */
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    text-decoration: none;
    pointer-events: auto;
    /* Clickable */
}

.sticky-nav-container {
    position: sticky;
    top: 110px;
    /* Offset for Navbar */
    z-index: 100;
    pointer-events: none;
    /* Let clicks pass through empty space */
    margin-bottom: 40px;
    /* Space between button and content */

    /* Align with content-grid */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.back-link-btn:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    box-shadow: var(--card-shadow-hover);
    transform: translateX(-5px);
}

.main-column {
    /* Reset Grid Props */
    grid-column: 1;
    grid-row: auto;
}

.sidebar-column {
    position: sticky;
    top: 110px;
    /* Align with back button if desired, or keep independent */
    align-self: start;
    grid-column: 2;
    grid-row: auto;
}

/* Duplicate rule removed */

.back-link:hover {
    color: white;
    transform: translateX(-3px);
}

.event-type-badge {
    display: inline-block;
    background: rgba(203, 161, 116, 0.2);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1.5px solid rgba(203, 161, 116, 0.5);
    color: #f0e6d8;
    font-weight: 600;
}

.detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-meta {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    font-size: 1.15rem;
    color: #e2e8f0;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.hero-meta-item .icon {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Main Content Area */
.detail-content {
    background: white;
    margin: 0 250px;
    padding: 60px 0 100px;
    position: relative;
    z-index: 10;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
}

/* Overview Stats */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 5px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

/* Agenda Timeline */
.session-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.speaker-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s;
}

.speaker-card:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.speaker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Sidebar Column */
.sidebar-column {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 5px;
    color: var(--text-primary);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list .icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    margin-top: 2px;
}

.info-list .text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.info-list .label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    margin-top: 20px;
    background: linear-gradient(135deg, #cba174 0%, #aa845a 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 161, 116, 0.4);
}

/* Extra Large Screens */
@media (max-width: 1400px) {

    .detail-hero .container,
    .detail-content {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }
}