/* Style2.css - Once Upon a Beat Design 2 */

/* Base Styles */
:root {
    --primary: #9333ea;
    --primary-dark: #7e22ce;
    --primary-light: #a855f7;
    --dark: #0f0f0f;
    --darker: #050505;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-dark: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--darker);
    color: var(--light);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, #c026d3 50%, #db2777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Section Headers */
.section-header {
    position: relative;
    text-align: center;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #c026d3 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Navigation */
nav {
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary) 0%, #c026d3 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(147, 51, 234, 0.5);
}

.nav-link.active::after {
    width: 100%;
    height: 3px;
    background: var(--primary);
    bottom: -3px;
    box-shadow: 0 0 10px var(--primary);
}

/* Mobile Menu Button */
.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    padding: 0;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-button:hover .bar {
    background-color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.98);
    z-index: 40;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.mobile-menu.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: var(--darker);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.2) 0%, rgba(5, 5, 5, 0.9) 70%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://source.unsplash.com/random/1920x1080/?nightclub,dark');
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) brightness(0.4);
    z-index: -1;
}

/* Glitch Text Effect */
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 0.8s forwards;
}

.title-line:nth-child(1) .word {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) .word {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) .word {
    animation-delay: 0.5s;
}

.word.accent {
    color: var(--primary);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Buttons */
.neon-button {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #c026d3 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.7);
}

.neon-button:hover::before {
    opacity: 1;
}

.outline-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: var(--light);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background-color: rgba(147, 51, 234, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--light);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--light);
    border-right: 2px solid var(--light);
    transform: rotate(45deg);
    margin: -6px;
    animation: arrows 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* About Section */
.about-image-container {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.about-image img {
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 2;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    top: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: #c026d3;
    bottom: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Stats */
.stats-container {
    margin-top: 2rem;
}

.stat-box {
    background-color: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 10px 25px -5px rgba(147, 51, 234, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Aftermovie Section */
.aftermovie-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9) 0%, rgba(15, 15, 15, 0.8) 100%);
    z-index: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.5);
    z-index: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: var(--light);
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background-color: var(--primary-light);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.7);
}

.video-text {
    margin-top: 20px;
    color: var(--light);
    font-weight: 500;
    z-index: 2;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.tall {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item.wide {
    grid-column: span 3;
}

.gallery-item img {
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--light);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Artists Section */
.artists-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    z-index: 0;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.artist-card {
    flex: 0 0 300px;
    background-color: rgba(15, 15, 15, 0.6);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.4);
}

.artist-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
}

.artist-info {
    padding: 20px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.artist-genre {
    color: var(--primary-light);
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.artist-bio {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.artist-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}


/* Signup Form */
.signup-form {
    background-color: rgba(15, 15, 15, 0.6);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 4px;
    color: var(--light);
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

.submit-button:hover svg {
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(15, 15, 15, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.3);
}

/* Footer */
.footer-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
}

/* Media Queries */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-item.tall, .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .neon-button, .outline-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}