@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&display=swap');

:root {
    --bg-color: #1a1a1a;
    --primary-accent: #00ffcc;
    --secondary-accent: #ff0099;
    --text-main: #e0e0e0;
    --text-dim: #888888;
    --card-bg: #242424;
    --input-bg: #333333;
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
.brand {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--bg-color);
}

.btn-primary:hover {
    box-shadow: 0 0 15px var(--primary-accent);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-accent);
    color: var(--bg-color);
}

.btn-secondary {
    background-color: var(--secondary-accent);
    color: white;
}

.btn-secondary:hover {
    box-shadow: 0 0 15px var(--secondary-accent);
}

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

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

    .hero h1 {
        font-size: 2.2rem !important;
    }

    .featured-carousel {
        grid-template-columns: 1fr !important;
    }

    .mobile-stack {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .sidebar-logo {
        display: none;
    }

    .mobile-text-left {
        text-align: left !important;
    }

    nav .container {
        gap: 8px;
    }

    .nav-links {
        gap: 6px !important;
    }

    .nav-links .btn {
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    body {
        font-size: 0.8rem !important;
        /* ~12.8px */
    }

    body h1 {
        font-size: 1.0rem !important;
    }

    body h2 {
        font-size: 0.9rem !important;
    }

    body h3 {
        font-size: 0.85rem !important;
    }

    body h4 {
        font-size: 0.8rem !important;
    }

    body div.hero h1 {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
    }

    .brand {
        font-size: 0.9rem !important;
        white-space: nowrap;
    }

    .section-padding {
        padding: 32px 0;
    }

    /* Add top padding to sections to prevent navbar overlap */
    .hero.section-padding,
    main.container.section-padding,
    .header-image+main.container {
        padding-top: 100px !important;
    }

    .container {
        padding: 0 16px;
        overflow-x: hidden;
    }

    .btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Navbar adjustment */
    nav .brand {
        font-size: 0.85rem !important;
    }

    .nav-links {
        gap: 4px !important;
    }

    /* Prevent any element from pushing width */
    * {
        max-width: 100%;
        word-wrap: break-word;
    }
}

.section-padding {
    padding: 80px 16px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.mb-24 {
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .mobile-stack {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

/* Navigation */
nav {
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-accent);
}

/* Glassmorphism Card */
.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.musician-card-img {
    width: 100%;
    height: 200px;
    background: #333;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* Input Fields */
input,
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    outline: none;
}

input:focus {
    border-color: var(--primary-accent);
}

/* Footer */
footer {
    background: #111;
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: var(--text-dim);
    font-size: 0.9rem;
}