/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #252525;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --accent-gold: #d4a574;
    --accent-orange: #e67e22;
    --border-color: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.6); */
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.hero-overlay .tagline {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Navigation */
.nav {
    background-color: var(--bg-secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent-gold);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.lang-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.music-styles {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.style {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}

.style:last-child {
    margin-bottom: 0;
}

.style .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.style strong {
    color: var(--text-primary);
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    padding: 15px;
    background-color: var(--bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
}

/* Songs Section */
.songs {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.songs h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-style: italic;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.song-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-orange);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.social-links a {
    color: var(--accent-gold);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 3rem;
    }

    .hero-overlay .tagline {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .songs-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .lang-switcher {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
        min-height: 300px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay .tagline {
        font-size: 1rem;
    }

    .about-text h2,
    .songs h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}