/* Venue Page Styles */
:root {
    --sobie-dark: #1e293b;
    --sobie-blue: #2563eb;
    --sobie-gradient: linear-gradient(135deg, var(--sobie-blue) 0%, #1d4ed8 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.hero-section {
    background: var(--sobie-gradient);
    color: white;
    padding: 4rem 0 2rem 0;
    margin-bottom: 3rem;
}

.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.resort-link {
    color: var(--sobie-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

.resort-link:hover {
    color: var(--sobie-blue);
    transform: translateY(-2px);
}