:root {
    --yellow: #F2E85E;
    --black: #101010;
    --gray: #8E8E8E;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.1;
}

.bubble-text {
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--black);
    -webkit-text-stroke: 1px var(--black);
    paint-order: stroke fill;
    filter: drop-shadow(4px 4px 0px var(--black));
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
}

.hero {
    min-height: 100vh;
    background-color: var(--yellow);
    color: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding: 40px;
    border-bottom: 1px solid var(--black);
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    mix-blend-mode: difference;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.nav-links li a.active {
    border-bottom: 2px solid var(--white);
    padding-bottom: 2px;
}

.hero-image-container {
    position: relative;
    height: 80vh;
    margin-top: 40px;
    border-radius: 32px;
    overflow: hidden;
    background: var(--gray);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.content-section {
    background-color: var(--white);
    color: var(--black);
    padding: 80px 40px;
    min-height: 100vh;
    line-height: 1.6;
}

.content-section h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1;
}

.content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.content-section ul, .content-section ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    max-width: 800px;
    font-size: 1.1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.sticker {
    position: absolute;
    background: var(--black);
    color: var(--yellow);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-12deg);
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-10px); }
}

.venues-section {
    background-color: var(--white);
    color: var(--black);
    padding: 80px 40px;
    min-height: 100vh;
}

.venues-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.venues-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.venue-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.venue-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.venue-card:hover .venue-image img {
    filter: grayscale(0%);
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.venue-tag {
    background-color: var(--yellow);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 20px;
}

.venue-capacity {
    color: var(--gray);
}

.venue-name {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
}

.venue-address {
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 700;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.venue-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.venue-cta {
    align-self: flex-start;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}

.venue-cta:hover {
    background-color: var(--white);
    color: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-box {
    background-color: var(--black);
    color: var(--white);
    padding: 40px;
    border-radius: 24px;
}

.contact-info-box h3 {
    color: var(--yellow);
    margin-top: 0;
}

.contact-info-box p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info-box strong {
    color: var(--white);
}

footer {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gray);
}

@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; height: auto; padding-top: 100px; }
    .hero-content { padding-left: 0; margin-top: 40px; }
    .bubble-text { font-size: 5rem; }
    .nav-links { display: none; }
    .venues-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}