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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Inter Variable — Local */

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #000000;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Hero Section */
.hero-section {
    padding-top: 200px;
    padding-bottom: 150px;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.3px;
    color: #000000;
    max-width: 700px;
}

.hero-line {
    width: 100px;
    height: 1px;
    background-color: #000000;
    margin-top: 60px;
}

/* Introduction Section */
.intro-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-block {
    max-width: 800px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #000000;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.body-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #000000;
}

.body-text:last-child {
    margin-bottom: 0;
}

.testimonial {
    border: 1px solid #000000;
    padding: 40px;
    margin-bottom: 30px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.stars {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000000;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-align: right;
}

.subsection-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #000000;
}

/* Venues Section */
.venues-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 1px;
    background-color: #000000;
    margin-bottom: 80px;
}

.venue-item {
    margin-bottom: 100px;
}

.venue-item:last-child {
    margin-bottom: 0;
}

.venue-header {
    margin-bottom: 30px;
}

.venue-name {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.venue-location {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.venue-content {
    max-width: 800px;
}

.venue-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000000;
}

.venue-atmosphere {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

.venue-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin-top: 60px;
}

.venue-item:last-child .venue-line {
    display: none;
}

/* Responsible Play Section */
.responsible-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.responsible-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #000000;
}

.responsible-text:last-child {
    margin-bottom: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.disclaimer-box {
    max-width: 800px;
    border: 1px solid #000000;
    padding: 60px;
}

.disclaimer-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.disclaimer-line {
    width: 60px;
    height: 1px;
    background-color: #000000;
    margin-bottom: 40px;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000000;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 80px 0 60px;
    background-color: #ffffff;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin-bottom: 50px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #000000;
    max-width: 800px;
}

.footer-content {
    max-width: 1200px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.2s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 12px;
    color: #000000;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
        height: 60px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-link {
        font-size: 12px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-section {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .venue-name {
        font-size: 28px;
    }

    .intro-text,
    .venue-description,
    .responsible-text {
        font-size: 16px;
    }

    .disclaimer-box {
        padding: 40px 30px;
    }

    .disclaimer-title {
        font-size: 28px;
    }
}

/* Venues Overview */
.venues-overview-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.venues-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.venue-card {
    padding: 60px 0;
    border-bottom: 1px solid #000000;
}

.venue-card:last-child {
    border-bottom: none;
}

.venue-card-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #000000;
}

.venue-card-location {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.venue-card-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #000000;
    max-width: 800px;
}

.venue-link {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
}

.venue-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.2s ease;
}

.venue-link:hover::after {
    width: 100%;
}

.venue-card-line {
    display: none;
}

/* Back Link */
.back-link {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
}

.back-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.2s ease;
}

.back-link:hover::after {
    width: 100%;
}

/* Contact Form */
.form-container {
    max-width: 600px;
}

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

.form-group {
    margin-bottom: 40px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #000000;
    outline: none;
    transition: none;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-width: 2px;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-button {
    padding: 15px 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: none;
}

.form-button:hover {
    border-width: 2px;
}

.form-button:active {
    border-width: 1px;
}

.form-message {
    margin-top: 30px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    border: 1px solid #000000;
}

/* Images */
.image-container {
    margin: 40px 0;
    width: 100%;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #000000;
}

.image-container + .body-text {
    margin-top: 40px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .nav-menu {
        margin-top: 15px;
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .venue-name {
        font-size: 24px;
    }

    .venue-card-title {
        font-size: 28px;
    }

    .subsection-title {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}
