/* <--- Event Detail Page ---> */
.event-detail {
    padding: 60px 20px;
    background-color: #fafafa;
    margin-top: 100px;
}

.event-header {
    text-align: center;
    margin-bottom: 40px;
}

.event-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #3e2723; 
}

.event-header .event-date,
.event-header .event-time,
.event-header .event-location {
    font-size: 18px;
    color: #6d4c41;
    margin: 5px 0;
}

.event-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.event-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #d4a373;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.event-info {
    max-width: 800px;
    text-align: center;
}

.event-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3e2723; 
}

.event-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.event-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.event-info ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.buy-tickets {
    display: inline-block;
    background-color: #d4a373;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.buy-tickets:hover {
    background-color: #a17b5d;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    margin: auto;
    margin-top: 50px;
    background-color: #d4a373;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.contact-info p {
    font-size: 18px;
    color: #fff; 
}

.contact-info a {
    color: #fff; 
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}
