/* Стили для страницы мероприятия */

.event-page {
    min-height: 100vh;
}

/* Hero секция */
.event-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #fff;
}

.event-hero__content {
    max-width: 800px;
}

.event-hero__date {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.event-hero__type {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 4px;
}

.event-hero__title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.event-hero__info {
    font-size: 15px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.event-hero__info span {
    display: block;
    margin-bottom: 8px;
}

.event-hero__ticket {
    margin-top: 40px;
}

.btn-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 18px 24px;
    background: #8b4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-ticket:hover:not(:disabled) {
    background: #6b3410;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

.btn-ticket:disabled {
    background: #8b7d6b;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-ticket__text {
    flex: 1;
    text-align: left;
}

.btn-ticket__price {
    font-size: 20px;
    font-weight: 600;
    margin-left: 20px;
}

.event-hero__payment {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.85;
    max-width: 400px;
}

/* Контент мероприятия */
.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.event-section {
    margin-bottom: 50px;
}

.event-section__title {
    font-size: 28px;
    font-weight: 400;
    color: #5c3a21;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(139, 69, 19, 0.2);
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.event-section__content {
    line-height: 1.8;
    color: #2c1810;
}

/* Место проведения */
.event-location__name {
    font-size: 22px;
    font-weight: 400;
    color: #5c3a21;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
}

.event-location__address {
    font-size: 15px;
    color: #8b7d6b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-location__features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.event-location__features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #5c3a21;
    font-size: 15px;
}

.event-location__features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-size: 20px;
    line-height: 1;
}

.event-location__phone {
    font-size: 15px;
    color: #8b4513;
    margin-top: 16px;
    font-weight: 500;
}

/* О мероприятии */
.event-category {
    margin-bottom: 20px;
}

.event-category__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 69, 19, 0.1);
    color: #8b4513;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.event-description {
    font-size: 16px;
    line-height: 1.8;
    color: #2c1810;
}

/* Список вин */
.event-wines {
    margin: 80px 0;
}

.wines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.wine-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.wine-card__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f0eb;
}

.wine-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wine-card__content {
    padding: 20px;
}

.wine-card__id {
    font-size: 11px;
    color: #a08d7a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.wine-card__rating {
    font-size: 14px;
    color: #8b4513;
    margin-bottom: 12px;
    font-weight: 500;
}

.wine-card__name {
    font-size: 18px;
    font-weight: 400;
    color: #5c3a21;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.wine-card__details {
    font-size: 13px;
    color: #8b7d6b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.wine-card__price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wine-card__price-old {
    font-size: 14px;
    color: #a08d7a;
    text-decoration: line-through;
}

.wine-card__discount {
    font-size: 12px;
    padding: 4px 8px;
    background: #dc3545;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

.wine-card__price-current {
    font-size: 20px;
    font-weight: 600;
    color: #8b4513;
    font-family: 'Georgia', serif;
}

/* Примечание */
.event-note {
    margin: 60px 0;
    padding: 20px;
    background: rgba(139, 69, 19, 0.05);
    border-left: 3px solid #8b4513;
    border-radius: 4px;
}

.event-note__text {
    font-size: 14px;
    color: #5c3a21;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Адаптивность */
@media (max-width: 968px) {
    .event-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-hero__title {
        font-size: 36px;
    }

    .wines-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .event-hero {
        min-height: 400px;
        padding: 60px 0;
    }

    .event-hero__title {
        font-size: 28px;
    }

    .event-section__title {
        font-size: 24px;
    }

    .wines-grid {
        grid-template-columns: 1fr;
    }
}

