/* style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #ff4de5;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff4de5;
    border: 2px solid #ff4de5;
}

.btn-secondary:hover {
    background: rgba(255, 77, 229, 0.1);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #ff4de5;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff4de5;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff4de5;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: white;
}



/* About Section */
.about {
    padding: 100px 0;
    background-color: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 77, 229, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 77, 229, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff4de5;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 229, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 77, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 229, 0);
    }
}

.image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4de5;
    font-size: 8rem;
}

/* Music Styles Section */
.music-styles {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-card {
    background-color: #111;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 77, 229, 0.1);
}

.style-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 229, 0.3);
    box-shadow: 0 15px 30px rgba(255, 77, 229, 0.1);
}

.style-icon {
    font-size: 3rem;
    color: #ff4de5;
    margin-bottom: 20px;
}

.style-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.style-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Events Section */
.events {
    padding: 100px 0;
    background-color: #111;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.event-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.event-type {
    background-color: rgba(255, 77, 229, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff4de5;
}

.event-type h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.event-type h3 i {
    margin-right: 10px;
    color: #ff4de5;
}

.event-type p {
    color: #aaa;
}

.location-highlight {
    background-color: rgba(138, 43, 226, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.location-highlight h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.location-highlight h3 i {
    margin-right: 10px;
    color: #8a2be2;
}

.location-highlight p {
    color: #aaa;
    margin-bottom: 15px;
}

.location-highlight ul {
    color: #aaa;
    margin-left: 20px;
    margin-bottom: 20px;
}

.location-highlight li {
    margin-bottom: 8px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.social-links {
    margin-bottom: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 77, 229, 0.1);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.youtube i {
    color: #ff0000;
}

.instagram i {
    color: #e4405f;
}

.email i {
    color: #ff4de5;
}

.location i {
    color: #8a2be2;
}

.booking-info h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.booking-info ol {
    color: #aaa;
    margin-left: 20px;
}

.booking-info li {
    margin-bottom: 10px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff4de5;
    box-shadow: 0 0 0 2px rgba(255, 77, 229, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #050505;
    border-top: 1px solid rgba(255, 77, 229, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4de5;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #aaa;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #ff4de5;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #777;
    margin-bottom: 10px;
}

.seo-text {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff4de5;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #8a2be2;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .events-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}