/* Etkinlik Detay Sayfaları CSS */

/* Breadcrumb */
.breadcrumb {
    background: #000;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #000;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #64748b;
    margin: 0 0.5rem;
}

/* Event Hero */
.event-hero {
    
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.event-hero-image img {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover; /* Bu satır eklendi - resmi kırpmadan kapsayacak şekilde boyutlandırır */
    object-position: center; /* Resmin hangi kısmının görüneceğini belirler */
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.event-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.event-badge-large {
    background: #22c55e;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.event-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Quick Info */
.event-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.info-item .icon {
    font-size: 2rem;
}

.info-item strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary-large {
    background: white;
    color: #000;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: white;
    color: #000;
}

/* Event Details Section */
.event-details-section {
    padding: 6rem 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.section-card h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-card h3 {
    color: #000;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.section-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #64748b;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.feature-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Program Timeline */
.program-timeline {
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 71px;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #3b82f6;
}

.time {
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
    height: fit-content;
}

.timeline-item .content h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-item .content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.location-details h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.location-details li {
    color: #64748b;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.location-details li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.map-placeholder {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Sidebar */
.ticket-card {
    background: linear-gradient(135deg, #000, #000);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 100px;
}

.ticket-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.ticket-types {
    margin-bottom: 2rem;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ticket-type:last-child {
    border-bottom: none;
}

.ticket-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.ticket-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

.ticket-price {
    font-size: 1.2rem;
    font-weight: bold;
}

.ticket-card .btn-primary {
    width: 100%;
    background: white;
    color: #000;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ticket-note {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

/* Event Info Card */
.event-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.event-info-card h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item-small {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
}

.info-item-small:last-child {
    border-bottom: none;
}

.info-item-small strong {
    color: #000;
}

/* Social Share */
.social-share {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.social-share h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Similar Events */
.similar-events {
    padding: 4rem 0;
    background: #f8fafc;
}

.similar-events h2 {
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.similar-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.similar-event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.similar-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.similar-event-image {
    height: 150px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-event-content {
    padding: 1.5rem;
    text-align: center;
}

.similar-event-content h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.similar-event-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-small {
    background: #000;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ticket-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .event-hero h1 {
        font-size: 2.5rem;
    }
    
    .event-tagline {
        font-size: 1.1rem;
    }
    
    .event-quick-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-card {
        padding: 2rem 1.5rem;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 200px;
    }
    
    .program-timeline::before {
        left: 60px;
    }
    
    .timeline-item::before {
        left: 51px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .time {
        min-width: 50px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 0.5rem 0;
    }
    
    .breadcrumb span,
    .breadcrumb a {
        font-size: 0.8rem;
    }
    
    .event-hero {
        min-height: 60vh;
    }
    
    .event-hero h1 {
        font-size: 2rem;
    }
    
    .info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-item .icon {
        font-size: 1.5rem;
    }
    
    .section-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .ticket-card,
    .event-info-card,
    .social-share {
        padding: 1.5rem;
    }
    
    .program-timeline::before {
        display: none;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .time {
        align-self: flex-start;
        min-width: auto;
    }
    
    .similar-events-grid {
        grid-template-columns: 1fr;
    }
}