:root {
    --bg-color: #f6f6f6;
    --text-color: #1a1a1a;
    --text-muted: #777777;
    --accent-blue: #0ea5e9;
    /* Light blue from screenshot */
    --accent-blue-hover: #0284c7;
    --card-bg: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --hero-bg: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    z-index: 1000;
    background: rgba(246, 246, 246, 0.95);
    backdrop-filter: blur(10px);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links li a:hover {
    color: var(--accent-blue);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections */
section {
    padding: 6rem 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 6rem 10%;
    background-color: var(--bg-color);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

/* Hero Section */
.hero {
    background-color: var(--hero-bg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 6vw;
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    margin: 0;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    color: var(--accent-blue);
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn i {
    margin-right: 5px;
}

.btn-blue {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    width: 100%;
    /* For cards */
}

.btn-blue:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-blue-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-blue-outline:hover {
    background: var(--accent-blue);
    color: white;
}

.btn-disabled {
    background: #e0e0e0;
    color: #999;
    border: none;
    cursor: not-allowed;
}

/* Listen Now */
.embed-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.embed-card {
    text-align: center;
}

.embed-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Music Section (Cards) */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    width: 100%;
    max-width: 280px;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.card-content .year {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Singles List */
.singles-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.single-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.single-item:last-child {
    border-bottom: none;
}

.single-item img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 1.5rem;
}

.single-details {
    flex-grow: 1;
}

.single-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.single-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.single-item .btn {
    width: auto;
    padding: 0.6rem 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Store Section */
.store-section {
    background-color: var(--bg-color);
}

.store-cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.store-cta-card .section-header p {
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-store-merch {
    background-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-store-merch:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
    color: #ffffff;
}

.btn-store-albums {
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-store-albums:hover {
    background-color: #333333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

/* Tour */
.tour-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.tour-item:last-child {
    border-bottom: none;
}

.tour-date {
    font-weight: 700;
    font-size: 1.1rem;
    width: 100px;
    color: var(--text-muted);
}

.tour-details {
    flex-grow: 1;
}

.tour-details h4 {
    font-size: 1.2rem;
}

.tour-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Links Section */
.links-section {
    background-color: #f0f0f0;
    /* Slightly darker than main bg for contrast */
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.links-block {
    margin-bottom: 4rem;
}

.links-block:last-child {
    margin-bottom: 0;
}

.links-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
}

.icon.spotify {
    background-color: #1DB954;
}

.icon.apple {
    background-color: #fa243c;
}

.icon.youtube {
    background-color: #FF0000;
}

.icon.soundcloud {
    background-color: #ff5500;
}

.icon.amazon {
    background-color: #FF9900;
}

.icon.link {
    background-color: #333333;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.text-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.text-links a {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-links a.follow-instagram {
    background-color: #E1306C;
}

.text-links a.follow-facebook {
    background-color: #1877F2;
}

.text-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: var(--font-primary);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.subscribe-form .btn {
    width: auto;
}

.form-message {
    margin-top: 1rem;
    color: #10b981;
    font-weight: 600;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #e5e5e5;
    color: var(--text-muted);
}

/* Animations */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(246, 246, 246, 0.98);
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 12vw;
        color: white;
    }

    .embed-container {
        grid-template-columns: 1fr;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tour-date {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}