/* ============================================
   MODERN CLUBS PAGE STYLES
   ============================================ */

/* Clubs Hero Section */
.clubs-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    margin-top: 150px;
    padding: 4rem 0;
}

.clubs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.clubs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge i {
    color: var(--primary-color);
    animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.clubs-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.clubs-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.hero-stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Modern Clubs Section */
.clubs-modern-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Modern Club Card */
.club-modern-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    position: relative;
}

.club-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.club-modern-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-1);
    color: var(--secondary-color);
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Club Image */
.club-modern-image {
    position: relative;
    height: 300px;
    background: var(--gradient-2);
    overflow: hidden;
}

.club-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.club-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.club-modern-card:hover .club-image-placeholder {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    opacity: 0.5;
}

.club-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.club-status-badge.open {
    background: rgba(46, 213, 115, 0.95);
    color: white;
}

.club-status-badge.open i {
    animation: statusPulse 2s ease-in-out infinite;
}

.club-vip-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--gradient-1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Club Content */
.club-modern-content {
    padding: 2.5rem;
}

.club-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.club-title-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.club-emoji {
    font-size: 3rem;
    line-height: 1;
}

.club-title-section h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.club-location {
    font-size: 0.9rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.club-location i {
    color: var(--primary-color);
}

.club-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
}

.club-rating i {
    color: #ffb800;
}

.club-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Feature Tags */
.club-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.feature-tag {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--primary-color);
}

/* Stats Row */
.club-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-box span {
    display: block;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reserve Button */
.club-reserve-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.club-reserve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.club-reserve-btn i:first-child {
    font-size: 1.5rem;
}

.club-reserve-btn i:last-child {
    transition: transform 0.3s ease;
}

.club-reserve-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Info Section */
.clubs-info-section {
    padding: 4rem 0;
    background: var(--gradient-2);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item-modern {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-item-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.info-item-modern i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item-modern h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-item-modern p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 968px) {
    .clubs-hero {
        min-height: 50vh;
        margin-top: 120px;
    }

    .clubs-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-item {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .club-modern-image {
        height: 250px;
    }

    .club-image-placeholder {
        font-size: 5rem;
    }

    .club-modern-content {
        padding: 1.5rem;
    }

    .club-header-row {
        flex-direction: column;
        gap: 15px;
    }

    .club-stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .featured-ribbon {
        font-size: 0.65rem;
        padding: 6px 35px;
    }
}

@media (max-width: 480px) {
    .clubs-hero-content h1 {
        font-size: 2rem;
    }

    .clubs-hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .club-emoji {
        font-size: 2rem;
    }

    .club-title-section h3 {
        font-size: 1.4rem;
    }

    .club-features-tags {
        gap: 8px;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ============================================
   CLUB DETAIL PAGE STYLES
   ============================================ */

/* Club Detail Hero */
.club-detail-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    margin-top: 150px;
    padding: 4rem 0;
    overflow: hidden;
}

.club-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

.club-detail-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.club-detail-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: emojiFloat 3s ease-in-out infinite;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.club-detail-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.club-detail-location {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.club-detail-location i {
    color: var(--primary-color);
}

.club-detail-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-badge {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.detail-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.detail-badge i {
    color: var(--primary-color);
}

/* Club Info Section */
.club-info-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.info-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Article Content */
.club-article {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.club-article h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.club-article h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.club-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Gallery Grid */
.gallery-grid-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item-detail {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gradient-2);
}

.gallery-placeholder-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.gallery-item-detail:hover .gallery-placeholder-detail {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
}

/* Sidebar */
.club-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.info-item-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item-detail:last-child {
    border-bottom: none;
}

.info-item-detail i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.info-item-detail span {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .club-detail-hero {
        min-height: 40vh;
        margin-top: 120px;
        padding: 3rem 0;
    }

    .club-detail-emoji {
        font-size: 3.5rem;
    }

    .club-detail-content h1 {
        font-size: 2.5rem;
    }

    .club-detail-location {
        font-size: 1rem;
    }

    .info-grid-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .club-article {
        padding: 2rem;
    }

    .club-article h2 {
        font-size: 2rem;
    }

    .club-article h3 {
        font-size: 1.5rem;
    }

    .club-article p {
        font-size: 1rem;
    }

    .gallery-grid-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .club-detail-hero {
        padding: 2rem 0;
    }

    .club-detail-emoji {
        font-size: 2.5rem;
    }

    .club-detail-content h1 {
        font-size: 1.8rem;
    }

    .club-detail-badges {
        flex-direction: column;
        align-items: center;
    }

    .detail-badge {
        width: 100%;
        justify-content: center;
    }

    .club-article {
        padding: 1.5rem;
    }

    .club-article h2 {
        font-size: 1.6rem;
    }

    .club-article h3 {
        font-size: 1.3rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }
}
