/**
 * Etkinlik Detay Sayfası Stilleri
 * BÜYEM - Boğaziçi Üniversitesi Yaşamboyu Eğitim Merkezi
 */

/* Hero Section */
.etkinlik-hero {
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    margin-top: 0;
}

.etkinlik-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 1200px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.badge-category {
    background-color: #1565C0;
}

.badge-upcoming {
    background-color: #2E7D32;
}

.badge-past {
    background-color: #757575;
}

.hero-title {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px!important;
    line-height: 1.2!important;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Detail Section */
.etkinlik-detail-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.etkinlik-detail-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.etkinlik-layout {
    display: grid;
    gap: 40px;
}

/* Main Content */
.etkinlik-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Info Cards */
.etkinlik-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d458b 0%, #2c5aa0 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1d458b;
}

/* Etkinlik Image */
.etkinlik-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-height: 350px;
}

.etkinlik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content */
.etkinlik-content {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.etkinlik-content h2 {
    font-size: 24px;
    color: #1d458b;
    margin-bottom: 20px!important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.content-body p {
    margin-bottom: 16px;
}

.content-body ul, .content-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-body li {
    margin-bottom: 8px;
}

/* Location Section */
.etkinlik-location {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.etkinlik-location h2 {
    font-size: 24px;
    color: #1d458b;
    margin-bottom: 20px;
}

.location-address {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.location-address i {
    color: #1565C0;
    font-size: 20px;
    margin-top: 4px;
}

.location-address p {
    color: #444;
    line-height: 1.6;
}

.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1d458b 0%, #2c5aa0 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-map-link:hover {
    box-shadow: 0 4px 12px rgba(29, 69, 139, 0.3);
}

/* Sidebar */
.etkinlik-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-card h3 {
    font-size: 16px;
    color: #1d458b;
    margin-bottom: 16px!important;
    display: flex;
    align-items: center;
    gap: 10px;
}
    color: #757575;
    font-weight: 500;
}

/* Contact Card */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    background: #e3f2fd;
    color: #1565C0;
}

.contact-item i {
    width: 20px;
    color: #1565C0;
}

/* Share Card */
.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }

/* Other Events Card */
.other-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.other-event-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.other-event-item:hover {
    background: #e3f2fd;
}

.other-event-date {
    min-width: 50px;
    text-align: center;
    padding: 8px;
    background: linear-gradient(135deg, #1d458b 0%, #2c5aa0 100%);
    border-radius: 8px;
    color: #fff;
}

.other-event-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.other-event-date .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 2px;
}

.other-event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.other-event-info .title {
    font-size: 14px;
    font-weight: 600;
    color: #1d458b;
    line-height: 1.3;
}

.other-event-info .time {
    font-size: 12px;
    color: #6c757d;
}

.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #1d458b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px!important;
}

.view-all-link:hover {
    background: #1d458b;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .etkinlik-layout {
        grid-template-columns: 1fr;
    }
    
    .etkinlik-sidebar {
        order: -1;
    }
    
    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .etkinlik-hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .etkinlik-info-cards {
        grid-template-columns: 1fr;
    }
    
    .etkinlik-content,
    .etkinlik-location {
        padding: 24px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-value {
        font-size: 28px;
    }
}

