/* VENUES SECTION */
.venues-section {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 50%, #3d3d3d 100%);
    padding: 6rem 0;
    position: relative;
}

.venues-header {
    text-align: center;
    margin-bottom: 4rem;
}

.venues-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.venues-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    max-width: 600px;
}

/* FLEXBOX LAYOUT */
.venues-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* VENUE CARDS */
.venue-card {
    width: 300px;
    height: 200px;
    background: #1a2332;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.venue-card:hover {
    transform: translateY(-4px);
}

/* CARD OVERLAY */
.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* CONTENT */
.venue-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.venue-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    align-self: flex-start;
}

.venue-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.venue-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.venue-location .location-icon {
    width: 16px;
    height: 16px;
    fill: #ffd700;
}

/* BUTTONS */
.venue-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.venue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.venue-btn-primary {
    background: #ffd700;
    color: #1a1a1a;
}

.venue-btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-1px);
    text-decoration: none;
    color: #1a1a1a;
}

.venue-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.venue-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.venue-btn .icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .venues-section {
        padding: 4rem 0;
    }
    
    .venues-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .venue-card {
        width: 300px;
        height: 200px;
        margin: 0 auto;
    }
    
    .venue-content {
        padding: 0.75rem;
    }
    
    .venue-name {
        font-size: 1.3rem;
    }
    
    .venue-bottom {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .venue-location {
        align-self: flex-end;
    }
    
    .venue-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .venue-btn {
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Progressive loading - initially hide venue cards */
.venue-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.venue-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* EXPANDED VENUE CARD */
.venue-expanded {
    display: none;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    border-radius: 12px;
    margin: 1rem 0;
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
    flex-basis: 100%;
}

.venue-expanded.show {
    display: block;
    opacity: 1;
    padding: 2rem;
}

.venue-expanded-container {
    width: 100%;
    height: 100%;
}

.venue-expanded-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.venue-expanded-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #ffd700;
}

.venue-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.venue-close-btn .close-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.venue-expanded-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.venue-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.venue-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.venue-info-item .info-icon {
    width: 20px;
    height: 20px;
    fill: #ffd700;
    flex-shrink: 0;
}

.venue-info-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 100px;
    font-size: 1.1rem;
}

.venue-info-value {
    color: white;
    font-size: 1.1rem;
}

.venue-expanded-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    background: #1a2332;
}

.venue-expanded-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.venue-expanded-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.venue-expanded-btn-primary {
    background: #ffd700;
    color: #1a1a1a;
}

.venue-expanded-btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    text-decoration: none;
    color: #1a1a1a;
}

.venue-expanded-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.venue-expanded-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.venue-expanded-btn .expanded-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* RESPONSIVE EXPANDED CARD */
@media (max-width: 768px) {
    .venue-expanded.show {
        padding: 1.5rem;
    }
    
    .venue-expanded-title {
        font-size: 1.5rem;
    }
    
    .venue-expanded-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-expanded-image {
        height: 200px;
    }
    
    .venue-expanded-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .venue-expanded-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
