﻿/* Yu Bodrum - Landing Page Styles */

/* Header */
.auth-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Section - Complete Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
   
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: relative;
    z-index: 1;
}

.hero-video-background video.loaded {
    opacity: 1;
}

/* Split Layout Container */
.hero-split-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(20px);
}

/* Left Side - Content Area */
.hero-content-left {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 600px;
}

.hero-text-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Title Container with Line-by-Line Animation */
.hero-title-container {
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ff0040 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }
.title-line:nth-child(4) { animation-delay: 1.1s; }

/* Subtitle with Typewriter Effect */
.hero-subtitle-container {
    margin-bottom: 30px;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff0040;
    margin: 0;
    opacity: 0;
    animation: typewriter 2s ease-out 1.5s forwards;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #ff0040;
}

/* Description Container */
.hero-description-container {
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

/* Actions Container */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 2.3s forwards;
}

/* Modern Button Styles */
.btn-primary-glow {
    position: relative;
    background: linear-gradient(135deg, #ff0040 0%, #ff1a53 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 64, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 64, 0.4);
}

.btn-primary-glow .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-glow:hover .btn-glow {
    left: 100%;
}

.btn-outline-modern {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 16px 32px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
    border-color: #ff0040;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 64, 0.2);
}

.btn-outline-modern .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0040 0%, #ff1a53 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-outline-modern:hover .btn-border {
    opacity: 0.1;
}

/* CTA Container */
.hero-cta-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 2.6s forwards;
}

.hero-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cta-highlight {
    color: #ff0040;
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-text {
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #ff0040;
}

.cta-separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Right Side - Video Visibility Area */
.hero-content-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Elements */
.hero-visual-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.1) 0%, rgba(255, 0, 64, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 64, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.floating-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
    width: 120px;
    height: 120px;
}

.element-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite alternate;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typewriter {
    0% {
        opacity: 0;
        width: 0;
        border-right-color: transparent;
    }
    50% {
        opacity: 1;
        width: 0;
        border-right-color: #ff0040;
    }
    100% {
        opacity: 1;
        width: 100%;
        border-right-color: transparent;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes glow {
    from {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .hero-content-left {
        padding: 60px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-content-right {
        height: 200px;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content-left {
        padding: 40px 20px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary-glow,
    .btn-outline-modern {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-content-left {
        padding: 30px 15px;
    }
    
    .title-line {
        animation-duration: 0.6s;
    }
    
    .title-line:nth-child(1) { animation-delay: 0.3s; }
    .title-line:nth-child(2) { animation-delay: 0.5s; }
    .title-line:nth-child(3) { animation-delay: 0.7s; }
    .title-line:nth-child(4) { animation-delay: 0.9s; }
}

/* Light Theme Adjustments */
[data-theme="light"] .hero-content-left {
    background: linear-gradient(
        135deg,
        rgba(245, 242, 232, 0.95) 0%,
        rgba(245, 242, 232, 0.85) 50%,
        rgba(245, 242, 232, 0.7) 100%
    );
    border-right: 1px solid rgba(139, 105, 20, 0.2);
}

[data-theme="light"] .hero-main-title .title-line {
    background: linear-gradient(135deg, #2C1810 0%, #B8722C 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-description {
    color: rgba(44, 24, 16, 0.8);
}

[data-theme="light"] .hero-cta-text {
    color: rgba(44, 24, 16, 0.6);
}

[data-theme="light"] .btn-outline-modern {
    border-color: rgba(139, 105, 20, 0.3);
    color: #2C1810;
}

[data-theme="light"] .btn-outline-modern:hover {
    border-color: #B8722C;
}

[data-theme="light"] .floating-element {
    background: linear-gradient(135deg, rgba(184, 114, 44, 0.1) 0%, rgba(184, 114, 44, 0.05) 100%);
    border: 1px solid rgba(184, 114, 44, 0.2);
}

[data-theme="light"] .element-glow {
    background: radial-gradient(circle, rgba(184, 114, 44, 0.3) 0%, transparent 70%);
}

/* Fallback background for when video doesn't load */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

/* Mobile optimization for video background */
@media (max-width: 768px) {
    .hero-video-background video {
        object-position: center center;
    }
}

/* Ensure video doesn't interfere with content on very small screens */
@media (max-width: 480px) {
    .hero-video-background {
        opacity: 0.8;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgb(0 0 0) 0%, #0000009e 50%), radial-gradient(circle at 20% 80%, rgb(0 0 0) 0%, #310f0f00 50%);
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 600px;
    text-align: center;
}

.hero-text {
    z-index: 4;
    max-width: 800px;
    text-align: center;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0040 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-cta-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Light Theme Hero */
[data-theme="light"] .hero {
    background: 
        radial-gradient(ellipse at top left, rgba(184, 114, 44, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(184, 114, 44, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #F5F2E8 0%, #E8E2D4 50%, #F0EDE4 100%);
}

[data-theme="light"] .hero::before {
    background: 
        radial-gradient(circle at 80% 20%, rgba(184, 114, 44, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 105, 20, 0.05) 0%, transparent 50%);
}

[data-theme="light"] .hero-main-title {
    background: linear-gradient(135deg, #2C1810 0%, #B8722C 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tabs Section */
.tabs-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.tabs-header::-webkit-scrollbar {
    display: none;
}

[data-theme="light"] .tabs-header {
    border-bottom: 1px solid rgba(139, 105, 20, 0.2);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 16px 32px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: var(--border-radius);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.tab-btn.active::after {
    width: 60px;
}

/* Simplified tab button states */

.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

/* Swiper Styles */
.tab-swiper {
    padding: 20px 0 60px;
    position: relative;
}

.swiper-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-red) !important;
    transform: scale(1.2) !important;
}



.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.8) !important;
    top: 50% !important;
    width: 52px !important;
    height: 52px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    margin-top: -26px !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 0, 64, 0.2) !important;
    border-color: var(--accent-red) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 0, 64, 0.3) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.event-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 350px;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-red);
}

/* Light Theme Event Cards */
[data-theme="light"] .event-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .event-item {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .card-artist {
    border-top: 1px solid rgba(139, 105, 20, 0.2);
}

[data-theme="light"] .tab-footer {
    border-top: 1px solid rgba(139, 105, 20, 0.2);
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-artist {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-artist img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-red);
}

.card-artist span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Tab Footer */
.tab-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Events Section - Updated */
.events-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    height: 100%;
    overflow: hidden;
}

/* Event Image */
.event-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-item:hover .event-image img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.event-date-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .event-date-overlay {
    background: rgba(245, 242, 232, 0.9);
    border: 1px solid rgba(139, 105, 20, 0.3);
}

.event-date-overlay .day {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.event-date-overlay .month {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}

.event-category {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.event-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
    padding: 20px 24px 0;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-red);
}

/* Event date now in overlay - legacy styles removed */

.artist-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    width: 100%;
}

/* Multiple Artists Support */
.artists-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    width: 100%;
}

.artist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 8px;
}



.artist-item .artist-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.artist-item .artist-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.artist-item .artist-genre {
    font-size: 0.75rem;
    color: var(--accent-red);
    font-weight: 500;
}

/* Expand/Collapse Functionality */
.artists-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    backdrop-filter: blur(10px);
    width: auto;
    align-self: center;
}

.artists-expand-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.artists-expand-btn .expand-icon {
    transition: var(--transition);
    width: 16px;
    height: 16px;
}

.artists-info.expanded .artists-expand-btn .expand-icon {
    transform: rotate(180deg);
}

.artist-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.artists-info.expanded .artist-hidden {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
}

.artist-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.artist-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.artist-genre {
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 500;
}

.artist-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

/* Icon Buttons */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-icon.btn-spotify {
    background: #1db954;
    border-color: #1db954;
}

.btn-icon.btn-spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.btn-icon.btn-artist {
    border-color: var(--accent-red);
}

.btn-icon.btn-artist:hover {
    border-color: var(--accent-red);
}

.btn-icon i {
    width: 20px;
    height: 20px;
}

.btn-spotify {
    background: #1db954;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-1px);
}

.btn-artist {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-artist:hover {
    background: var(--glass-bg);
    border-color: var(--accent-red);
    transform: translateY(-1px);
}

.event-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.event-info .event-time {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-red);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-info .event-time::before {
    content: "🕐";
    font-size: 0.9rem;
}

.event-info .event-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Event Details */
.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.event-venue,
.event-capacity,
.event-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-venue i,
.event-capacity i,
.event-price i {
    width: 14px;
    height: 14px;
    color: var(--accent-red);
}

.event-info {
    padding: 0 24px 20px;
}

.event-actions {
    padding: 0 24px 24px;
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* Modal styles removed - using auth-modals.css */

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Simple animations for event cards */
.event-card,
.event-item {
    opacity: 1;
    transform: translateY(0);
}

.partial-image {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Loading Animation */
.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .tabs-header {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .tab-btn {
        font-size: 1.125rem;
        padding: 12px 24px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .tabs-header {
        gap: 45px !important;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .tab-btn {
        font-size: 1rem;
        padding: 10px 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .event-card {
        height: 320px;
    }

    .header-content {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .header-nav {
        gap: 20px;
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .auth-buttons {
        order: 0;
        display: none;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    /* Swiper Mobile Styles */
    .swiper-button-next,
    .swiper-button-prev {
        width: 44px !important;
        height: 44px !important;
        margin-top: -22px !important;
    }
    
    .swiper-button-next {
        right: 15px !important;
    }
    
    .swiper-button-prev {
        left: 15px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: none;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .tabs-header {
        gap: 12px;
    }
    
    .tab-btn {
        padding: 12px;
    }
    
    .event-item {
        padding: 0;
    }

    .event-image {
        height: 180px;
    }

    .event-card {
        height: 350px;
    }

    .card-image {
        height: 150px;
    }

    .event-header {
        padding: 16px 20px 0;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .artist-info,
    .artists-info {
        width: 100%;
    }

    .event-date-overlay {
        top: 12px;
        right: 12px;
        padding: 8px 12px;
        min-width: 60px;
    }

    .artist-item {
        margin-bottom: 12px;
    }

    .btn-icon {
        width: 36px;
        height: 36px;
    }

    .btn-icon i {
        width: 18px;
        height: 18px;
    }

    .artists-expand-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .artists-expand-btn .expand-icon {
        width: 14px;
        height: 14px;
    }

    .event-info {
        padding: 0 20px 16px;
    }

    .event-actions {
        padding: 0 20px 20px;
        display: flex;
        justify-content: center;
    }

    .event-details {
        gap: 8px;
    }

    .event-venue,
    .event-capacity,
    .event-price {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .section-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-outline {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
    
    .btn-secondary-red {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
   

    .card-image {
        height: 160px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .artist-info img {
        width: 45px;
        height: 45px;
    }
    
    .artist-name {
        font-size: 0.9rem;
    }
    
    .artist-genre {
        font-size: 0.75rem;
    }
}

/* Light Theme Modal Styles */
[data-theme="light"] .modal-overlay {
    background: rgba(245, 242, 232, 0.9);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .form-group input {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

[data-theme="light"] .form-group input:focus {
    border-color: var(--accent-red);
    background: var(--card-bg);
}

[data-theme="light"] .form-group input::placeholder {
    color: var(--text-muted);
}

[data-theme="light"] .auth-divider::before {
    background: var(--glass-border);
}


[data-theme="light"] .social-btn {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: transparent;
}

[data-theme="light"] .social-btn:hover {
    background: var(--glass-bg);
    transform: translateY(-1px);
}

[data-theme="light"] .social-btn.google:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.1);
}

[data-theme="light"] .social-btn.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

[data-theme="light"] .social-btn.apple:hover {
    border-color: var(--accent-secondary);
    background: var(--accent-secondary-glow);
}

[data-theme="light"] .modal-close:hover {
    color: var(--accent-red);
}

/* Light Theme Hover Improvements */
[data-theme="light"] .btn-icon:hover {
    background: var(--accent-secondary-glow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-secondary-glow);
}

[data-theme="light"] .btn-icon.btn-spotify:hover {
    background: rgba(29, 185, 84, 0.2);
    border-color: #1DB954;
}

[data-theme="light"] .btn-icon.btn-artist:hover {
    background: var(--accent-secondary-glow);
    border-color: var(--accent-secondary);
}

[data-theme="light"] .btn-spotify:hover {
    background: rgba(29, 185, 84, 0.2);
    border-color: #1DB954;
    color: #1DB954;
}

[data-theme="light"] .btn-artist:hover {
    background: var(--gradient-secondary);
    border-color: var(--accent-secondary);
    color: var(--accent-white);
}

[data-theme="light"] .artists-expand-btn:hover {
    background: var(--gradient-secondary);
    border-color: var(--accent-secondary);
}

[data-theme="light"] .nav-link:hover {
    color: var(--accent-red);
}

[data-theme="light"] .nav-link::after {
    background: var(--gradient-secondary);
}

[data-theme="light"] .event-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--accent-secondary-glow);
    border-color: var(--accent-secondary);
}

[data-theme="light"] .swiper-button-next:hover,
[data-theme="light"] .swiper-button-prev:hover {
    background: var(--gradient-secondary) !important;
    border-color: var(--accent-secondary) !important;
    color: white !important;
}
