/* 
 * Event Details CSS
 * Specific styles for event detail pages
 */

/* Event Hero Section */
.event-hero {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.event-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.event-meta-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.event-meta-item i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.event-hero-buttons {
    margin-top: 2rem;
}

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

.event-description {
    line-height: 1.8;
}

.event-description p {
    margin-bottom: 1.5rem;
}

.event-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0.25rem;
    margin: 2rem 0;
}

.event-sidebar {
    position: sticky;
    top: 100px;
}

.event-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 2rem;
    overflow: hidden;
}

.event-card .card-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border-bottom: none;
}

.event-card .card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.event-card .card-body {
    padding: 1.5rem;
}

.event-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-info-list li {
    display: flex;
    margin-bottom: 1.25rem;
}

.event-info-list li:last-child {
    margin-bottom: 0;
}

.event-info-list li i {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.event-info-list li div {
    display: flex;
    flex-direction: column;
}

.event-info-list li strong {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.social-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-share-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-list li i {
    margin-right: 0.75rem;
    min-width: 1rem;
}

.contact-list li a {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.location-card .card-body {
    padding-bottom: 1rem;
}

.location-map {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.transportation-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.artist-card {
    margin-bottom: 1.5rem;
}

.artist-image img {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    object-fit: cover;
}

.donation-progress {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Related Events Section */
.related-events-section {
    padding: 4rem 0;
}

/* Call to Action Section */
.cta-section {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: #fff;
}

/* Ticket Modal Styles */
.ticket-form .form-control,
.ticket-form .form-select {
    padding: 0.75rem 1rem;
}

.secure-notice {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .event-title {
        font-size: 2.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .event-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .event-hero {
        padding: 5rem 0;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .event-hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .event-meta-item {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .event-hero {
        padding: 4rem 0;
    }
    
    .event-title {
        font-size: 1.75rem;
    }
    
    .event-hero-content {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}