/* Extracted from show.html.twig */
/* Auto-generated — do not edit inline styles in the template */

        /* Venue Profile Styling */
        .venue-profile-header {
            background: linear-gradient(10deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 3rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 24px 24px;
        }
        
        .venue-profile-image {
            width: 100%;
            max-width: 400px;
            height: 300px;
            border-radius: 16px;
            object-fit: cover;
            border: 6px solid white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            margin-bottom: 1.5rem;
        }
        
        .venue-profile-placeholder {
            width: 100%;
            max-width: 400px;
            height: 300px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.2);
            border: 6px solid white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .venue-profile-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .info-card h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-bg);
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(10deg, var(--primary-light), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .info-content {
            flex-grow: 1;
        }
        
        .info-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--gray-text);
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }
        
        .info-value {
            font-size: 1rem;
            color: var(--dark-text);
            font-weight: 500;
        }
        
        .room-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .room-item {
            background: var(--light-bg);
            padding: 1rem 1.25rem;
            border-radius: 12px;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
        }
        
        .room-item:hover {
            background: var(--primary-light);
            color: white;
            transform: translateX(4px);
        }
        
        .room-item i {
            margin-right: 1rem;
            color: var(--primary-color);
        }
        
        .room-item:hover i {
            color: white;
        }
        
        .gallery-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .gallery-card h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item-modal {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: block;
        }
        
        .gallery-item-modal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-back {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-back:hover {
            background: white;
            color: var(--primary-color);
        }
        
        .btn-map {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-map:hover {
            background: var(--primary-light);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(33, 80, 146, 0.3);
        }
        
        /* Gallery Item Hover Effect */
        .gallery-item-modal:hover {
            transform: scale(1.1);
        }
