/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Raleway:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #ff0000;
    --accent-color: #ff3333;
    --text-color: #ffffff;
    --dark-bg: #000000;
    --card-bg: #111111;
    --overlay-color: rgba(0, 0, 0, 0.7);
    --silver-color: #c0c0c0;
    --silver-gradient: linear-gradient(135deg, #808080, #c0c0c0, #ffffff, #c0c0c0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 1000;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 100px 7%;
    position: relative;
}

.highlight {
    color: var(--primary-color);
}

/* Header Styles */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 7%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.5s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.logo:hover {
    transform: scale(1.05);
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    animation: pulse 5s infinite alternate;
    z-index: -1;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--silver-gradient);
    background-size: 200% 200%;
    animation: shimmer 6s ease infinite;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3), 0 0 20px rgba(192, 192, 192, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.3);
    transform: skewX(-30deg);
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
    transition: all 0.5s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* About Section */
.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    min-width: 300px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                      linear-gradient(135deg, rgba(192, 192, 192, 0.3), transparent);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
}

/* Events Section */
.events {
    background-color: #050505;
    position: relative;
}

.events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.event-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.event-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1), transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.event-card:hover::after {
    opacity: 1;
    animation: silverRipple 2s ease;
}

@keyframes silverRipple {
    0% {transform: scale(0); opacity: 0.5;}
    100% {transform: scale(1); opacity: 0;}
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 10px;
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-card p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.event-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.event-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Gallery Section */
.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.gallery-item {
    height: 250px;
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), transparent);
    z-index: 1;
}

/* Contact Section */
.contact {
    background-color: #050505;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Music Section Styles */
.music {
    background-color: #050505;
    position: relative;
}

.music h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.music-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.music-text {
    flex: 1;
    min-width: 300px;
}

.music-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.music-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.music-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.music-category {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                      linear-gradient(135deg, rgba(192, 192, 192, 0.3), transparent);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.music-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.music-category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.music-category h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.music-category p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.music-atmosphere {
    margin-top: 50px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding-top: 40px;
}

.music-atmosphere h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.music-atmosphere p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.qr-code-container p {
    color: var(--dark-bg);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Action Banner Styles */
.action-banner {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.action-banner p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.action-banner a {
    color: white;
    margin-left: 15px;
    font-weight: 700;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}

.action-banner a:hover {
    color: var(--dark-bg);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Silver Animated Elements */
.silver-accent {
    background: var(--silver-gradient);
    background-size: 400% 400%;
    animation: shimmer 8s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.silver-border {
    position: relative;
    overflow: hidden;
}

.silver-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--silver-gradient);
    animation: silverBorderSlide 4s ease infinite;
}

@keyframes silverBorderSlide {
    0% {left: -100%;}
    50% {left: 100%;}
    100% {left: -100%;}
}

.silver-glow {
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
    transition: box-shadow 0.5s ease;
}

.silver-glow:hover {
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.6);
}

/* Silver particles animation */
.silver-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--silver-color);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Footer */
footer {
    background-color: #050505;
    padding: 50px 7%;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.logo-small {
    height: 70px;
    width: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #111;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-links i {
    font-size: 1.2rem;
}

footer p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 10px 5%;
    }
    
    .logo {
        height: 60px;
    }
    
    nav ul {
        margin-top: 15px;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    section {
        padding: 100px 5% 60px;
    }
    
    .hero {
        margin-top: 120px;
        height: auto;
        min-height: 70vh;
        padding: 60px 5%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .music-categories {
        grid-template-columns: 1fr;
    }
    
    .music-text h3, .music-atmosphere h3 {
        font-size: 1.5rem;
    }
    
    .music-text p, .music-atmosphere p {
        font-size: 1rem;
    }
    
    .action-banner p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem !important;
    }
    
    .music-category {
        padding: 20px;
    }
    
    .music-category h3 {
        font-size: 1.2rem;
    }
}