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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-mid: #CCCCCC;
    --gray-dark: #666666;
    --accent: #FF4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--black);
    z-index: 1000;
}

.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.tickets-btn {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white) !important;
    border-radius: 0;
}

.tickets-btn:hover {
    opacity: 0.8 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 120px 3rem 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
}

.title-top {
    display: block;
}

.title-mid {
    display: block;
    margin-left: 8rem;
}

.title-bottom {
    display: block;
    margin-left: 16rem;
}

.hero-meta {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.meta-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-img {
    aspect-ratio: 4/5;
    background: var(--gray-light);
    border: 2px solid var(--black);
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder gradients */
.placeholder-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.placeholder-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* About Section */
.about {
    padding: 120px 3rem;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 2px solid var(--black);
    position: relative;
}

.section-number {
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 3rem;
}

.section-heading {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.collaborators {
    font-size: 1.1rem;
    line-height: 1.6;
}

.fusion-section,
.what-to-expect {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--black);
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.feature-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.closing-statement {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    font-style: italic;
}

/* Event Spaces Section */
.event-spaces {
    padding: 120px 3rem;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 2px solid var(--black);
    position: relative;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.space-card {
    border: 2px solid var(--black);
    padding: 2.5rem;
    background: var(--white);
    position: relative;
}

.space-card.space-featured {
    background: var(--gray-light);
}

.space-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-mid);
    line-height: 1;
}

.space-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.space-floor {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.space-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.space-features {
    list-style: none;
    padding: 0;
}

.space-features li {
    margin-bottom: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.space-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* Artists Section */
.artists {
    padding: 120px 3rem;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 2px solid var(--black);
    position: relative;
}

/* Hero Artists - When artists section is the hero */
.hero-artists {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    border-top: none;
}

.hero-artists .artists-header {
    margin-bottom: 4rem;
}

.hero-artists .hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
}

.hero-artists .title-top {
    display: block;
}

.hero-artists .title-mid {
    display: block;
    margin-left: 8rem;
}

.artists-header {
    margin-bottom: 4rem;
}

.artists-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.artist-feature {
    position: relative;
    aspect-ratio: 4/5;
    border: 2px solid var(--black);
    overflow: hidden;
}

.artist-feature-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    overflow: hidden;
}

.artist-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-top: 2px solid var(--black);
}

.artist-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.artist-medium {
    font-size: 1rem;
    color: var(--gray-dark);
}

.artists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.artist-card {
    border: 2px solid var(--black);
}

.artist-card-img {
    aspect-ratio: 1;
    background: var(--gray-light);
    overflow: hidden;
}

.artist-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-artist-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.placeholder-artist-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.placeholder-artist-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.placeholder-artist-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.placeholder-artist-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.placeholder-artist-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.placeholder-artist-7 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

.artist-card-info {
    padding: 1.25rem;
    border-top: 2px solid var(--black);
}

.artist-card-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.artist-card-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Gallery Strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--gray-light);
    border: 2px solid var(--black);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-gallery-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.placeholder-gallery-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.placeholder-gallery-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.placeholder-gallery-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.placeholder-gallery-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.placeholder-gallery-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

/* Schedule Section */
.schedule {
    padding: 120px 3rem;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 2px solid var(--black);
    position: relative;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.day-header {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--black);
    margin-bottom: 2rem;
}

.day-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.day-date {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-mid);
}

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

.time {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: monospace;
}

.schedule-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.schedule-details p {
    color: var(--gray-dark);
}

/* Tickets Section */
.tickets {
    padding: 120px 3rem;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 2px solid var(--black);
    position: relative;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.ticket {
    border: 2px solid var(--black);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ticket-featured {
    background: var(--black);
    color: var(--white);
}

.ticket-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    padding: 0.5rem;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.ticket-header {
    padding-bottom: 2rem;
    border-bottom: 2px solid currentColor;
    margin-bottom: 2rem;
}

.ticket-featured .ticket-header {
    margin-top: 2rem;
}

.ticket-name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ticket-price {
    font-size: 3rem;
    font-weight: 700;
    font-family: monospace;
}

.ticket-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid currentColor;
    opacity: 0.8;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid currentColor;
    color: currentColor;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif;
}

.ticket-btn:hover {
    background: currentColor;
    color: var(--white);
}

.ticket-featured .ticket-btn:hover {
    background: var(--white);
    color: var(--black);
}

.btn-rsvp {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-rsvp:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
}

/* Footer */
.footer {
    border-top: 2px solid var(--black);
    padding: 4rem 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--gray-dark);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--black);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-mid);
    text-align: center;
    color: var(--gray-dark);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title,
    .hero-artists .hero-title {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    
    .title-mid,
    .hero-artists .title-mid {
        margin-left: 4rem;
    }
    
    .title-bottom {
        margin-left: 8rem;
    }
    
    .about-content,
    .artists-layout,
    .schedule-grid,
    .tickets-grid,
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .space-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-inner {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
        position: relative;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-mid);
        margin-top: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .tickets-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero,
    .hero-artists {
        padding: 100px 1.5rem 40px;
        min-height: auto;
    }
    
    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-title,
    .hero-artists .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
        margin-bottom: 2rem;
    }
    
    .title-mid,
    .hero-artists .title-mid {
        margin-left: 2rem;
    }
    
    .title-bottom {
        margin-left: 4rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .meta-label {
        font-size: 0.7rem;
    }
    
    .meta-value {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .about,
    .artists,
    .event-spaces,
    .schedule,
    .tickets {
        padding: 80px 1.5rem;
    }
    
    .section-number {
        left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .large-text {
        font-size: 1.25rem;
    }
    
    .collaborators,
    .feature-list li {
        font-size: 1rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .closing-statement {
        font-size: 1.1rem;
    }
    
    .fusion-section,
    .what-to-expect {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .space-card {
        padding: 2rem 1.5rem;
    }
    
    .space-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
    
    .space-title {
        font-size: 1.5rem;
        padding-right: 3rem;
    }
    
    .space-subtitle {
        font-size: 1rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-feature {
        aspect-ratio: 3/4;
    }
    
    .artist-name {
        font-size: 1.75rem;
    }
    
    .artist-medium {
        font-size: 0.9rem;
    }
    
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid {
        gap: 3rem;
    }
    
    .day-title {
        font-size: 2rem;
    }
    
    .time {
        font-size: 1.25rem;
    }
    
    .schedule-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .tickets-grid {
        gap: 1.5rem;
    }
    
    .ticket {
        padding: 2rem 1.5rem;
    }
    
    .ticket-name {
        font-size: 1.75rem;
    }
    
    .ticket-price {
        font-size: 2.5rem;
    }
    
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }
    
    .hero-title,
    .hero-artists .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .title-mid,
    .hero-artists .title-mid {
        margin-left: 1rem;
    }
    
    .title-bottom {
        margin-left: 2rem;
    }
    
    .section-heading {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .large-text {
        font-size: 1.1rem;
    }
    
    .about,
    .artists,
    .event-spaces,
    .schedule,
    .tickets {
        padding: 60px 1rem;
    }
    
    .space-features li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
    
    .schedule-item {
        grid-template-columns: 70px 1fr;
        gap: 0.75rem;
        padding-bottom: 1.5rem;
    }
    
    .time {
        font-size: 1.1rem;
    }
    
    .schedule-details h4 {
        font-size: 1.1rem;
    }
    
    .ticket-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .gallery-strip {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}
