/* Event Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #bdc3c7;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb span {
    color: #fff;
}

/* Event Hero */
.event-hero {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.event-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Content Layout */
.event-content {
    padding: 60px 0;
    background: transparent;
}

.event-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Event Details */
.event-details {
    padding-right: 20px;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-venue-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.event-title {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.event-intro {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.event-meta {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.event-meta p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.event-meta a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

.event-meta a:hover {
    text-decoration: underline;
}

.event-description {
    margin-bottom: 30px;
}

.event-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.event-faq {
    margin-bottom: 40px;
}

.faq-link {
    color: #d4af37;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Gallery */
.event-gallery {
    margin-bottom: 40px;
}

.event-gallery h4 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.event-highlight {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-highlight h4 {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-widget {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-widget h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.price-display {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 25px;
}

.from-text {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price {
    font-size: 36px;
    color: #d4af37;
    font-weight: 700;
}

/* Booking Form */
.booking-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input[type="date"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background-color: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

.quantity-selector input {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
}

/* Ticket Types */
.ticket-types {
    margin-bottom: 20px;
}

.ticket-type {
    margin-bottom: 12px;
}

.ticket-type input[type="radio"] {
    display: none;
}

.ticket-type label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticket-type input[type="radio"]:checked + label {
    border-color: #d4af37;
    background-color: #fffbf0;
}

.ticket-type label:hover {
    border-color: #d4af37;
}

.ticket-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.ticket-price {
    font-size: 16px;
    color: #d4af37;
    font-weight: 700;
}

/* Total Price */
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.total-amount {
    color: #d4af37;
    font-size: 24px;
}

/* Book Button */
.book-btn {
    width: 100%;
    padding: 16px;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Booking Info */
.booking-info {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.booking-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-info i {
    color: #4caf50;
    font-size: 16px;
}

/* Logo Link */
.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-sidebar {
        position: static;
    }
    
    .event-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
