:root {
    --primary-color: #FFB700;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --light-bg: #f5f5f5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero h1, .hero p, .hero .cta-buttons {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover, .cta-button:active {
    background: var(--primary-color);
    transform: scale(1.05);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

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

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

section {
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    text-align: left;
}

.highlight-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    color: white;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.highlight-card ul {
    list-style-type: none;
    padding-left: 1rem;
    text-align: center;
}

.highlight-card li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
}

.highlight-card li::before {
    display: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

blockquote {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    color: white;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

blockquote p {
    text-align: center;
}

cite {
    display: block;
    text-align: center;
    color: var(--primary-color);
}

.artist-quote {
    grid-column: 1 / -1;
    background: var(--secondary-color);
    color: white;
}

.artist-quote cite {
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact {
    text-align: center;
}

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

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem;
}

.press-shot {
    margin: 4rem auto;
    max-width: 800px;
    padding: 0 2rem;
}

.press-shot img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.press-shot img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .highlights, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    blockquote {
        padding: 2rem;
    }

    .video-background {
        width: 100%;
        height: 100%;
    }

    .video-background iframe {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

.top-banner {
    background: var(--secondary-color);
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.logo-top {
    display: inline-block;
}

.label-logo {
    max-width: 120px;
    height: auto;
}

.stream-cta {
    text-align: center;
    padding: 3rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    background: var(--secondary-color);
    color: white;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stream-cta p {
    margin: 0;
    padding: 2rem;
    max-width: 800px;
    text-align: center;
    width: 100%;
} 