/* Контейнер */
.custom-events-page {
    max-width: 1100px;
}

/* Картки */
.custom-event-card {
    background-color: #ffffff;
    border-radius: 25px !important;
    transition: transform 0.3s ease;
}

.custom-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

/* Зображення */
.event-main-img {
    width: 100%;
    min-height: 300px;
    max-height: 450px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Тексти */
.event-title {
    color: #6a410d;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.event-description {
    color: #4a3c2c;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Блоки з деталями */
.detail-box {
    background-color: #f2f2e3;
    border: 1px solid #dad9ab;
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #758144;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Кнопки */
.custom-btn-book {
    background-color: #758144;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.custom-btn-book:hover {
    background-color: #5d6835;
    color: white;
    transform: scale(1.03);
}

.custom-btn-outline {
    border: 2px solid #758144;
    color: #758144;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.custom-btn-outline:hover {
    background-color: #758144;
    color: white;
}