/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Modern Event Detail Styles */
.event-detail {
    background: white;
    color: #ffffff;
    min-height: 100vh;
    padding: 80px 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.event-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Location, Event Type, Date & Time Meta Section */
.event-meta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;    
}

.event-location,
.event-type,
.event-datetime {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.event-location:hover,
.event-type:hover,
.event-datetime:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.location-icon,
.type-icon,
.datetime-icon {
    width: 16px;
    height: 16px;
    opacity: 0.9;
    color: #67e8f9;
}

.datetime-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.event-date-text {
    font-weight: 700;
    font-size: 14px;
}

.event-time {
    font-size: 11px;
    font-weight: 500;
    color: #d1d5db;
    letter-spacing: 0.8px;
}

/* Title Section */
.event-title-section {
    margin-bottom: 40px;
}

.event-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px 0;
    color: #ffffff;
    letter-spacing: -0.02em;

}

.event-date-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.event-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #e5e7eb;
    letter-spacing: -0.01em;
}

/* Date */
.event-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}

.event-time {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 8px;
}

/* About Section */
.event-about-section {
    margin-bottom: 60px;
    text-align: center;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #d1d5db;
    max-width: 100% !important;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 16px;
}

/* Organizer Section */
.event-organizer-section {
    margin: 40px 0 60px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.organizer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 0.025em;
    font-style: italic;
}

/* Speakers Section */
.event-speakers-section {
    margin-bottom: 60px;
}

.speakers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.speaker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.speaker-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.speaker-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
}

/* Actions */
.event-actions {
    margin-top: 40px;
}

.register-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .event-detail {
        padding: 60px 0;
    }

    .event-detail-container {
        padding: 0 16px;
    }

    .event-meta-section {
        flex-direction: column;
        gap: 12px;
    }

    .event-location,
    .event-type,
    .event-datetime {
        font-size: 12px;
        padding: 10px 20px;
    }

    .event-date-text {
        font-size: 13px;
    }

    .event-time {
        font-size: 10px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-content {
        font-size: 1rem;
    }

    .organizer-text {
        font-size: 0.9rem;
        padding: 0 8px;
    }
}

/* Hide default theme elements if needed */
.event-detail .site-header,
.event-detail .site-footer {
    display: none;
}
