/* Venue Section Styles */
.venue-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.venue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="venue-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,0 L30,15 L15,30 L0,15 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23venue-pattern)"/></svg>');
    opacity: 0.4;
    animation: slidePattern 30s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30px) translateY(30px); }
}

.venue-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.venue-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fff, transparent, #fff);
    border-radius: 2px;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.venue-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.venue-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.venue-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.venue-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.venue-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.venue-features li {
    padding: 10px 0;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.venue-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.venue-visual {
    position: relative;
}

.venue-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-image:hover img {
    transform: scale(1.05);
}

.venue-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.3), rgba(41, 128, 185, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-image:hover::after {
    opacity: 1;
}

/* Venue Stats */
.venue-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3498db;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Elements */
.venue-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: floatVenue 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatVenue {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-25px) translateX(15px) rotate(120deg); }
    66% { transform: translateY(15px) translateX(-20px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .venue-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .venue-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .venue-section {
        padding: 60px 0;
    }
    
    .venue-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .venue-info {
        padding: 30px;
    }
    
    .venue-image {
        height: 300px;
    }
    
    .venue-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .venue-section h2 {
        font-size: 2rem;
    }
    
    .venue-info {
        padding: 25px;
    }
    
    .venue-info h3 {
        font-size: 1.5rem;
    }
    
    .venue-image {
        height: 250px;
    }
    
    .venue-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

 