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

:root {
    --primary-color: #e63946;
    --dark-bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --border-color: #1a1a1a;
    --spacing: 2rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 0;
    height: clamp(28rem, 62vh, 36rem);
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.05);
    animation: hero-zoom 18s ease-out forwards;
}

@keyframes hero-zoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.hero-content {
    max-width: 640px;
    animation: hero-fade-up 0.9s ease-out 0.15s both;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.cta-button-solid {
    background: var(--primary-color);
    color: var(--text-primary);
}

.cta-button-solid:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* About Section */
.about-section {
    background: #f5f5f5;
    background-image: url('pictures/bowling/pin.png');
    background-repeat: repeat;
    background-size: 150px 150px;
    background-attachment: fixed;
    padding: 3rem 0 6rem 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.about-section .section-title {
    color: #000000;
}

.about-section .section-title::before {
    content: 'Meet ';
    font-weight: 400;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.85);
    z-index: -1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #000000;
}

.content-text p {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.content-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Music Section */
.music-section {
    background: var(--dark-bg);
    text-align: center;
}

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

.music-section .section-subtitle {
    color: var(--text-secondary);
}

.platform-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    min-width: 120px;
}

.platform-card:hover {
    border-color: var(--primary-color);
    background: rgba(230, 57, 70, 0.05);
}

.platform-card i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.platform-card:hover i {
    color: var(--primary-color);
}

.platform-card span {
    font-weight: 500;
    font-size: 0.9rem;
}

.embeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.embed-item {
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.embed-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.embed-item iframe {
    width: 100%;
    display: block;
}

/* Shows Section */
.shows-section {
    background: #f5f5f5;
    background-image: url('pictures/bowling/pin.png');
    background-repeat: repeat;
    background-size: 150px 150px;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    text-align: center;
}

.shows-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.85);
    z-index: -1;
}

.shows-section .container {
    position: relative;
    z-index: 1;
}

.shows-section .section-title {
    color: #000000;
}

.shows-section .section-subtitle {
    color: #666666;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.show-card {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.show-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d0d0d0;
}

.date-day {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
    letter-spacing: 1px;
}

.date-month {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0.25rem 0;
}

.show-time {
    font-size: 0.875rem;
    color: #000000;
}

.show-details {
    flex: 1;
}

.show-venue {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.show-location {
    color: #666666;
    font-size: 0.875rem;
}

.show-note {
    color: #666666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

.show-actions {
    display: flex;
    gap: 1rem;
}

.btn-tickets {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--primary-color);
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-tickets:hover {
    background: transparent;
    color: #000000;
}

.request-show {
    text-align: center;
    padding-top: 2rem;
}

.btn-request {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Gallery Section */
.gallery-section {
    background: #f5f5f5;
    padding: 4rem 0;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
    padding-right: 1.5rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .carousel-slide {
        width: 280px;
        height: 280px;
    }
}

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

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

.contact-section .section-subtitle {
    color: var(--text-secondary);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-color);
    background: rgba(230, 57, 70, 0.05);
    color: var(--primary-color);
}

.social-link i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.social-name {
    font-weight: 600;
    font-size: 1rem;
}

.social-desc {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero {
        height: clamp(24rem, 55vh, 32rem);
    }

    .hero-inner {
        padding-top: 5.5rem;
        padding-bottom: 2.25rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-media img {
        object-position: center center;
    }

    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .content-text {
        text-align: center;
    }

    .content-image {
        height: 300px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing: 1rem;
    }

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