/* =========================================
   TEMPLATE 2 - EVENT SHOWCASE
========================================= */

/* Hero */
.v2-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.v2-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v2-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.v2-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.v2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 28px;
}

.v2-hero__title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.v2-hero__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 40px;
}

.v2-hero__location i {
    color: var(--primary-color);
}

.v2-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Hero Stats Bar */
.v2-hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 48px;
    margin-top: 50px;
}

.v2-stat {
    text-align: center;
    padding: 0 40px;
}

.v2-stat__number {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.v2-stat__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.v2-stat__divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
}

/* Buttons */
.v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v2-btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.v2-btn--primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.v2-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.v2-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.v2-btn--ghost {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 16px;
}

.v2-btn--ghost:hover {
    background: rgba(var(--primary-color-rgb), 0.08);
}

.v2-btn--sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* Hotels Section */
.v2-hotels {
    padding: 60px 0 100px;
    background: #f8f9fb;
}

/* Filters */
.v2-filters {
    margin-bottom: 32px;
}

.v2-filters__form {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.v2-filters__chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.v2-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.v2-chip__label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v2-chip__select,
.v2-chip__input {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    color: #1a1a2e;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s;
}

.v2-chip__select:focus,
.v2-chip__input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.v2-chip--checkbox {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    align-self: flex-end;
    min-width: auto;
}

.v2-chip--checkbox input {
    width: 16px;
    height: 16px;
}

.v2-filters__actions {
    display: flex;
    gap: 8px;
    align-self: flex-end;
}

/* Results Bar */
.v2-results-bar {
    margin-bottom: 24px;
}

.v2-results-bar h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Hotels Grid */
.v2-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Hotel Card V2 */
.v2-hotel-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v2-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.v2-hotel-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.v2-hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.v2-hotel-card:hover .v2-hotel-card__image img {
    transform: scale(1.06);
}

.v2-hotel-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f3f4f6;
}

.v2-hotel-card__badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.v2-badge--parking {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.v2-badge--rating {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

.v2-badge--google { background: rgba(251, 188, 4, 0.9); }
.v2-badge--tripadvisor { background: rgba(0, 175, 135, 0.9); }
.v2-badge--booking { background: rgba(0, 53, 128, 0.9); }

.v2-hotel-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.v2-hotel-card__top {
    margin-bottom: 12px;
}

.v2-hotel-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
    color: #fbbf24;
    font-size: 12px;
}

.v2-hotel-card__stars .fa-regular {
    color: #d1d5db;
}

.v2-hotel-card__unrated {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.v2-hotel-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.v2-hotel-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Distances V2 */
.v2-hotel-card__distances {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    padding: 10px 14px;
    background: #f8f9fb;
    border-radius: 10px;
}

.v2-distance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.v2-distance i {
    color: var(--primary-color);
    font-size: 14px;
}

.v2-distance strong {
    color: #374151;
    font-weight: 700;
}

.v2-hotel-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.v2-hotel-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.v2-price__label {
    font-size: 11px;
    color: #9ca3af;
}

.v2-price__amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Ubuntu', sans-serif;
}

.v2-price__unit {
    font-size: 12px;
    color: #9ca3af;
}

.v2-hotel-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.v2-hotel-card:hover .v2-hotel-card__cta {
    gap: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .v2-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .v2-hero__title {
        font-size: 36px;
    }

    .v2-hero__stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .v2-stat__divider {
        width: 60px;
        height: 1px;
    }

    .v2-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .v2-btn {
        justify-content: center;
    }

    .v2-hotels-grid {
        grid-template-columns: 1fr;
    }

    .v2-filters__form {
        flex-direction: column;
    }

    .v2-filters__chips {
        flex-direction: column;
    }

    .v2-hero {
        min-height: 70vh;
    }
}
