/* VIP Mekanlar Page Styles */

/* Hero Section */
.vip-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.vip-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 30%, #0f3460 70%, #1a1a2e 100%);
    z-index: 0;
}

.vip-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 179, 71, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.vip-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 70%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.9; }
}

.vip-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 800px;
}

.vip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.08em;
}

.vip-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.vip-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.vip-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.vip-stat-item {
    text-align: center;
}

.vip-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(255, 215, 0, 0.5);
}

.vip-stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vip-stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.5), transparent);
}

/* Main Container */
.vip-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Empty State */
.vip-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.05) 0%, rgba(15, 52, 96, 0.05) 100%);
    border-radius: 24px;
    border: 2px dashed rgba(255, 215, 0, 0.3);
}

.vip-empty-icon {
    color: #ffd700;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.vip-empty-state h2 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.vip-empty-state p {
    color: #666;
    margin-bottom: 1.5rem;
}

.vip-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a1a;
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
}

.vip-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

/* Venues Grid */
.vip-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Venue Card */
.vip-venue-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vip-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.vip-venue-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vip-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vip-venue-card:hover .vip-venue-image img {
    transform: scale(1.1);
}

.vip-venue-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: rgba(255, 255, 255, 0.4);
}

.vip-venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    pointer-events: none;
}

.vip-venue-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.vip-badge-star {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.vip-badge-vip {
    background: #e53935;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.1em;
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.4);
}

.vip-venue-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.vip-venue-content {
    padding: 1.5rem;
}

.vip-venue-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.vip-venue-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.vip-venue-location svg {
    color: #ffd700;
    flex-shrink: 0;
}

.vip-venue-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 179, 71, 0.15) 100%);
    color: #b38600;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.vip-venue-description {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vip-venue-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.vip-venue-stats {
    display: flex;
    gap: 1rem;
}

.vip-venue-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #888;
}

.vip-venue-stat svg {
    color: #999;
}

.vip-venue-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffd700;
    transition: gap 0.3s;
}

.vip-venue-card:hover .vip-venue-cta {
    gap: 8px;
}

/* Map Section */
.vip-map-section {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.vip-map-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vip-map-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.vip-map-header h2 svg {
    color: #ffd700;
}

.vip-map-header p {
    font-size: 0.875rem;
    color: #888;
}

.vip-map {
    height: 400px;
    width: 100%;
}

/* Custom Map Marker */
.vip-map-marker {
    background: none;
    border: none;
}

.vip-marker-inner {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border: 3px solid #ffd700;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vip-marker-inner svg {
    transform: rotate(45deg);
}

.vip-popup {
    text-align: center;
    padding: 0.5rem;
}

.vip-popup strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.vip-popup small {
    color: #888;
}

.vip-popup-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
}

.vip-popup-link:hover {
    text-decoration: underline;
}

/* Back Section */
.vip-back-section {
    text-align: center;
    padding: 2rem 0;
}

.vip-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.3);
}

.vip-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 26, 46, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .vip-hero {
        min-height: 350px;
    }

    .vip-hero-title {
        font-size: 1.75rem;
    }

    .vip-hero-subtitle {
        font-size: 1rem;
    }

    .vip-stat-number {
        font-size: 1.75rem;
    }

    .vip-hero-stats {
        gap: 1.5rem;
    }

    .vip-venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vip-venue-image {
        height: 180px;
    }

    .vip-map {
        height: 300px;
    }

    .vip-map-header {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .vip-hero {
        min-height: 300px;
    }

    .vip-hero-content {
        padding: 2rem 1rem;
    }

    .vip-hero-title {
        font-size: 1.5rem;
    }

    .vip-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .vip-main-container {
        padding: 0 1rem 2rem;
    }

    .vip-venue-content {
        padding: 1.25rem;
    }

    .vip-venue-title {
        font-size: 1.1rem;
    }
}
