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

:root {
    --primary-color: #000000;
    --secondary-color: #FF6B00;
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --accent-warm: #FF8C00;
    --border-color: #e0e0e0;
    --subtle-bg: #f8f8f8;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

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

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-brand {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-light);
    font-family: 'Concert One';
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-brand:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-menu a:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, hsl(315, 100%, 72%) 0%, hsl(227, 100%, 50%) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px;
}


.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
    align-items: start;
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
}

.hero-about {
    background: var(--subtle-bg);
    padding: 60px;
    border-radius: 0;
    border: none;
}

.about-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: 'Concert One';
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-family: 'Concert One';
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-style: normal;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.event-details {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    color: var(--text-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.date-label {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Concert One';
}

.date-num {
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Concert One';
}

.event-time {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Concert One';
}

.event-location {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.event-entry {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Concert One';
}


.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.95);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 120px 60px;
}

.section-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: 'Concert One';
    letter-spacing: -1px;
    padding: 0 60px;
}

.section-description {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 60px;
    color: #666;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    line-height: 1.8;
}


/* Artists Section */
.artists-section {
    background: var(--subtle-bg);
    padding: 120px 0;
}

.artists-section .container {
    max-width: 100%;
    padding: 0;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.artist-card {
    background: var(--light-bg);
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.artist-card:last-child {
    border-right: none;
}

.artist-card:hover {
    background: var(--subtle-bg);
}

.artist-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.artist-card:hover .artist-image {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--subtle-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    font-family: 'Concert One';
}

.artist-info {
    padding: 40px;
}

.artist-name {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: 'Concert One';
    letter-spacing: -0.5px;
}

.artist-instrument {
    font-size: 14px;
    font-style: normal;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.artist-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
}

/* Media Section */
/* Links & Press Section */
.links-section {
    background: var(--subtle-bg);
    padding: 100px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.artist-links-card {
    background: var(--light-bg);
    padding: 50px;
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.artist-links-card:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.links-artist-name {
    font-family: 'Concert One', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.links-group {
    margin-bottom: 35px;
}

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

.links-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 12px;
}

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

.links-list a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    position: relative;
}

.links-list a::after {
    content: '→';
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.links-list a:hover {
    color: var(--primary-color);
}

.links-list a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.media-section {
    background: var(--light-bg);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.media-item {
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.media-item video {
    width: 100%;
    display: block;
}

.photo-gallery {
    margin-top: 80px;
}

.gallery-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Concert One';
}

.poster-section {
    max-width: 600px;
    margin: 0 auto 50px;
}

.poster-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.poster-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    filter: grayscale(20%);
}

.gallery-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    background: var(--subtle-bg);
    color: var(--text-dark);
    text-align: center;
}

.contact-section .section-title {
    color: var(--primary-color);
}

.contact-section .section-description {
    color: #666;
}

.contact-info {
    margin-top: 40px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 60px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero {
        padding-top: 140px;
    }

    .nav {
        padding: 20px 30px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-about {
        padding: 40px 30px;
    }

    .section {
        padding: 80px 30px;
    }

    .event-details {
        padding: 20px;
    }

    .date-num {
        font-size: 48px;
    }

    .event-time {
        font-size: 28px;
    }

    .event-entry {
        font-size: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
    }

    .artist-card {
        margin: 0 auto;
    }

    .links-section {
        padding: 60px 0;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .artist-links-card {
        padding: 30px;
    }

    .links-artist-name {
        font-size: 24px;
    }

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

    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-image {
        max-width: 100%;
        max-height: 400px;
    }

    .event-info-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 15px;
    }

    .artist-info {
        padding: 20px;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }

    .artist-image-wrapper {
        height: 350px;
    }

    .hero-wrapper {
        padding: 0 15px;
    }

    .hero-about {
        padding: 20px;
    }

    .event-details {
        padding: 15px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

