/* CSS Variables for Theming */
:root {
    --primary-bg: #f0f4f8;
    --secondary-bg: #e8f4f1;
    --accent: #7AD1BF;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --card-bg: #ffffff;
    --shadow: rgba(0,0,0,0.08);
    --header-bg: rgba(122, 209, 191, 0.95);
    --lyrics-bg: linear-gradient(135deg, #7AD1BF 0%, #BFD1D7 100%);
    --footer-bg: #2d3748;
    --border: rgba(0,0,0,0.1);
}

[data-theme="dark"] {
    --primary-bg: #0f1419;
    --secondary-bg: #1a202c;
    --accent: #7AD1BF;
    --text-color: #f7fafc;
    --text-light: #a0aec0;
    --card-bg: #2d3748;
    --shadow: rgba(0,0,0,0.4);
    --header-bg: rgba(45, 55, 72, 0.95);
    --lyrics-bg: linear-gradient(135deg, #1a202c 0%, #0f1419 100%);
    --footer-bg: #1a202c;
    --border: rgba(255,255,255,0.1);
}

[data-theme="dark"] {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2d2d2d;
    --accent: #7AD1BF;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --card-bg: #2d2d2d;
    --shadow: rgba(0,0,0,0.3);
    --header-bg: rgba(45, 45, 45, 0.9);
    --lyrics-bg: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --footer-bg: #111;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-bg);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header */
header {
    background-color: var(--header-bg);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: white;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.theme-toggle {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: white;
    color: var(--accent);
    transform: scale(1.1);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-bg), var(--accent));
    color: white;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Media/pic2.png') no-repeat center center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn {
    background-color: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 209, 191, 0.3);
    display: inline-block;
    font-weight: 600;
}

.btn:hover {
    background-color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 209, 191, 0.4);
}

/* Featured photo */
.featured-photo {
    padding: 80px 0 20px;
    background: linear-gradient(180deg, rgba(122, 209, 191, 0.08), transparent);
}

.featured-photo-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 45px var(--shadow);
    overflow: hidden;
}

.featured-photo-copy h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.featured-photo-copy p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 42ch;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(122, 209, 191, 0.18);
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-photo-image img {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* About */
.about {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--primary-bg));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 8px solid var(--card-bg);
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Lyrics */
.lyrics {
    padding: 80px 0;
    background: var(--lyrics-bg);
    color: white;
    text-align: center;
}

.lyrics h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.lyrics blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.lyrics blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.lyrics cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 300;
}

.lyrics-preview {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.lyrics-preview h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lyrics-text {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-line;
}

/* Showcase */
.showcase {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.showcase p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.track {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border);
}

.track:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.track h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.track p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: var(--accent);
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact p {
    text-align: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    background-color: var(--primary-bg);
    transform: translateY(-2px);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    background: rgba(255,255,255,0.9);
    color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about, .showcase, .contact {
    animation: fadeInUp 1s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .featured-photo-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    header {
        padding: 0.65rem 0;
    }

    header .container {
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.25rem;
        line-height: 1.1;
        max-width: 100%;
    }

    .site-nav {
        grid-column: 1 / -1;
        width: 100%;
        margin-left: 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-top: 0.75rem;
        padding: 1rem;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 18px;
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    nav ul li a {
        display: block;
        padding: 0.7rem 0.9rem;
        border-radius: 20px;
    }

    .theme-toggle {
        margin-top: 0;
        width: 40px;
        height: 40px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .featured-photo {
        padding: 55px 0 10px;
    }

    .featured-photo-card {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .featured-photo-copy h2 {
        font-size: 1.6rem;
    }

    .featured-photo-copy p {
        font-size: 0.98rem;
    }

    .hero h2 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat {
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
    }

    .stat .number {
        font-size: 1.8rem;
    }

    .stat .label {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .about {
        padding: 60px 0;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .about-text p {
        font-size: 1rem;
    }

    .about-image img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .lyrics {
        padding: 50px 0;
    }

    .lyrics h2 {
        font-size: 1.8rem;
    }

    .lyrics blockquote {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .lyrics blockquote::before {
        display: none;
    }

    .lyrics-preview {
        padding: 1.5rem;
    }

    .lyrics-preview h3 {
        font-size: 1.3rem;
    }

    .lyrics-text {
        font-size: 1rem;
    }

    .showcase {
        padding: 50px 0;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .track {
        padding: 1.5rem;
    }

    .track iframe {
        width: 100%;
        height: 300px;
    }

    .contact {
        padding: 50px 0;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }

    .contact-form {
        padding: 0 1rem;
    }

    footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    header .container {
        grid-template-columns: 1fr auto auto;
        gap: 0.4rem;
    }

    .logo {
        font-size: 1.05rem;
        max-width: 155px;
    }

    .featured-photo-image img {
        max-height: 360px;
    }

    .menu-toggle,
    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .menu-toggle span {
        width: 18px;
    }

    .nav-menu {
        padding: 0.8rem;
        margin-top: 0.6rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        padding: 0.6rem 1rem;
    }

    .stat .number {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-image img {
        width: 180px;
        height: 180px;
    }

    .lyrics h2 {
        font-size: 1.6rem;
    }

    .lyrics blockquote {
        font-size: 0.9rem;
    }

    .track {
        padding: 1.2rem;
    }

    .social-link {
        width: 180px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
