:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #222222;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}
header {
    background: linear-gradient(to right, var(--black), var(--gray), var(--black));
    color: var(--gold);
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23D4AF37" opacity="0.1" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 0;
}
header h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    animation: fadeIn 1.5s ease-in-out;
}
header p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
nav {
    display: flex;
    justify-content: center;
    background: var(--black);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
nav a {
    color: var(--gold);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}
nav a:hover::after {
    width: 100%;
    left: 0;
}
nav a:hover {
    color: var(--dark-gold);
}
.main-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    color: var(--dark-gold);
    margin-bottom: 0.5rem;
}
.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.service-card {
    background-color: #f9f9f9;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}
.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.service-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}
.repertoire {
    background: linear-gradient(135deg, var(--black), var(--gray));
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.repertoire h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.artists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.artist-tag {
    background-color: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.artist-tag:hover {
    background-color: var(--dark-gold);
    color: var(--white);
}
.swiper-container {
    width: 100%;
    height: 350px;
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #888;
    background-color: #e0e0e0;
}
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
}
.social-links {
    margin-top: 1.5rem;
}
.social-links a {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 0 0.8rem;
    display: inline-block;
}
.social-links a:hover {
    color: var(--white);
    transform: scale(1.1);
}
.about-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 2rem;
}
.about-text {
    flex: 2;
}
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}
.experience-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}
.experience-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.experience-card h3 {
    font-size: 1.8rem;
    color: var(--dark-gold);
}
.music-genres {
    margin-top: 3rem;
    text-align: center;
}
.music-genres h3 {
    color: var(--dark-gold);
    margin-bottom: 1.5rem;
}
.genre-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.genre-tag {
    background-color: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}
.contact-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.contact-card {
    background-color: #f9f9f9;
    padding: 2.5rem 1rem;
    border-radius: 10px;
    border: 1px solid #eee;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.contact-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.contact-card h3 {
    margin-bottom: 0.8rem;
}
.contact-link {
    color: var(--dark-gold);
    text-decoration: none;
    font-weight: bold;
}
.contact-link:hover {
    text-decoration: underline;
}
