/* Themes Page Specific Styles */

/* Hero Section */
.hero-themes {
    position: relative;
    padding: 120px 0 80px;
    background-image: url('../images/80s-hen-party-dance-class.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-themes__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 2;
}

.hero-themes__gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -10px) rotate(-1deg); }
}

.hero-themes__content {
    position: relative;
    z-index: 3;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.hero-themes__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-themes__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

/* Search Box */
.search-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
}

.search-input:focus {
    outline: none;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: white;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Filter Bar */
.filter-bar {
    background: #f8f9fa;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: #333;
    color: #333;
    background: #f8f9fa;
}

.filter-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.filter-count {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 400;
}

.results-info {
    font-size: 0.95rem;
    color: #666;
}

/* Introduction Content */
.intro-content {
    padding: 4rem 0 2rem;
}

.intro-content__text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-content__text a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.intro-content__text a:hover {
    color: #000;
    border-bottom-color: #333;
}

/* Themes Grid */
.themes-section {
    padding: 2rem 0 4rem;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Theme Card */
.theme-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #e0e0e0;
    overflow: hidden;
}

.theme-card[data-category="pop-artists"] {
    border-left-color: #FF1493;
}

.theme-card[data-category="dance-styles"] {
    border-left-color: #8B4513;
}

.theme-card[data-category="movies-musicals"] {
    border-left-color: #DAA520;
}

.theme-card[data-category="decades"] {
    border-left-color: #2F4F4F;
}

.theme-card[data-category="special"] {
    border-left-color: #8B0000;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.theme-card__content {
    padding: 1.75rem;
}

.theme-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

/* Category Badges */
.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.category-badge--pop {
    background: #FF1493;
    color: white;
}

.category-badge--dance {
    background: #8B4513;
    color: white;
}

.category-badge--movies {
    background: #DAA520;
    color: white;
}

.category-badge--decades {
    background: #2F4F4F;
    color: white;
}

.category-badge--special {
    background: #8B0000;
    color: white;
}

/* Theme Rating */
.theme-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

/* Theme Description */
.theme-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Theme Info */
.theme-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: #666;
}

.theme-info i {
    color: #666;
    margin-right: 0.5rem;
    width: 16px;
}

/* Theme Link */
.theme-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.theme-link:hover {
    gap: 0.75rem;
    background: #333;
    color: white;
}

/* Category Content Section */
.category-content {
    background: #f8f9fa;
    padding: 4rem 0;
}

.category-content__wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 3rem;
}

.category-descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.category-block p {
    color: #555;
    line-height: 1.6;
}

.category-block a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.category-block a:hover {
    text-decoration: underline;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 3rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box__icon i {
    font-size: 2rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 3rem;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item__question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.faq-item__answer {
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta__button--primary {
    background: white;
    color: #333;
}

.cta__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta__button--secondary:hover {
    background: white;
    color: #333;
}

/* Cities Section */
.cities-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.cities-content {
    text-align: center;
}

.cities-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
}

.cities-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.cities-bubbles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.city-bubble {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.city-bubble:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
}

.cities-note {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

/* Animations */
.theme-card {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-themes {
        padding: 100px 0 60px;
    }
    
    .quick-stats {
        gap: 2rem;
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .filter-bar__content {
        justify-content: center;
    }
    
    .filter-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .results-info {
        width: 100%;
        text-align: center;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq__grid {
        grid-template-columns: 1fr;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-themes__title {
        font-size: 2rem;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .theme-name {
        font-size: 1.3rem;
    }
    
    .category-badge {
        font-size: 0.7rem;
    }
}