/* venue-style.css */

/* 1. Main Section Background */
/* venue-style.css - Updated Spacing */

.venue-section {
    background-color: #0a1f44 !important;
    min-height: 100vh;
    /* Increased from 100px to 160px for a better gap from navbar */
    padding-top: 160px !important; 
    padding-bottom: 80px;
}

.header-spacing {
    /* Extra margin to push the title further down if needed */
    margin-bottom: 60px !important;
}

.venue-title {
    color: #ffffff !important;
    font-size: 2.2rem; /* Slightly larger */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.venue-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 10px;
}

/* ... keep the rest of your venue-card and img-container CSS exactly the same ... */

.venue-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3498db;
    border-radius: 10px;
}

/* 2. Venue Card Design */
.venue-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* 3. Image Area (Left Side) with Custom Background */
.venue-img-container {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); /* Light blue contrast */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.venue-img-container img {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 4px solid #ffffff;
}

/* 4. Details Area (Right Side) */
.venue-name {
    color: #0a1f44;
    font-weight: 800;
    font-size: 1.6rem;
}

.venue-address {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.venue-location-tag {
    color: #3498db;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}