.hamburger {
    display: none; /* hidden on large screens */
}
/* Removed invalid <meta> tag */
.full-screen-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: calc(100vh - 80px); /* subtract estimated nav height */
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #D4AF37;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.4;
}
.hero {
    position: relative;
    min-height: 60vh;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}
.hero-text {
    text-align: center;
    padding: 40px 10px;
    margin: 0 auto;
    max-width: 800px;
}
.section,
section {
    padding: 25px 10px;
}

h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.hero-text h1 {
    margin-bottom: 10px;
}
.cta-button {
    background-color: #D4AF37;
    color: #000;
    padding: 4px 10px;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
}
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    background: #111;
}
.main-nav li {
    margin: 0 15px;
}
.main-nav a {
    color: #D4AF37;
    text-decoration: none;
    padding: 15px 0;
    display: block;
}
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #D4AF37;
    margin-top: auto;
}

.hero-text form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-text input,
.hero-text select,
.hero-text textarea {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #D4AF37;
}

.hero-text input::placeholder,
.hero-text textarea::placeholder {
    color: #888;
}

.hero-text select {
    background-color: #1a1a1a;
}

.hero-text input[type="submit"] {
    background-color: #D4AF37;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.hero-text input[type="submit"]:hover {
    background-color: #b38e2c;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 10px;
}

.social-icons a:hover {
    text-decoration: underline;
}


.bottle-service, .vip-membership, .newsletter-signup {
    text-align: center;
    padding: 25px 10px;
    background-color: #0a0a0a;
    color: #D4AF37;
}

.newsletter-signup form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-signup input[type="email"] {
    padding: 10px;
    font-size: 16px;
    background-color: #1a1a1a;
    border: none;
    border-radius: 5px;
    color: #D4AF37;
}

.image-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    justify-content: center;
}

.image-strip img {
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.form-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .hamburger {
        display: block;
        cursor: pointer;
        padding: 10px;
        background: #111;
        color: #D4AF37;
        font-size: 20px;
        text-align: center;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #111;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .main-nav ul.show {
        display: flex;
    }
    .main-nav li {
        margin: 10px 0;
    }
    .form-wrapper {
        padding: 20px;
        margin: 10px;
    }
    .hero-text form {
        width: 100%;
    }
    .hero-text input,
    .hero-text select,
    .hero-text textarea {
        font-size: 14px;
    }
    .cta-button {
        padding: 10px;
        font-size: 16px;
    }
    .how-to-apply {
        padding: 14px 4px !important;
        font-size: 14px;
    }
    .how-to-apply ol, .how-to-apply ul {
        padding-left: 12px !important;
    }
    .hero-text label {
        display: block;
        margin-bottom: 8px;
    }
    #other-position-input {
        display: block !important;
        width: 100% !important;
        margin-top: 4px !important;
        margin-left: 0 !important;
    }
    .hero-text input[type="file"], .hero-text button[type="button"] {
        width: 100%;
        margin-top: 4px;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px;
    background-color: #000;
}

.event-card {
    background-color: #111;
    border-radius: 6px;
    padding: 4px;
    color: #D4AF37;
    text-align: center;
    font-size: 12px;
}

.event-card img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 6px;
    background-color: #000;
}

.event-card h2 {
    margin: 6px 0;
    font-size: 14px;
}

.about-section {
    padding: 25px 10px;
    background-color: #0a0a0a;
    color: #D4AF37;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
}
.about-section h2 {
    margin-bottom: 10px;
}
.form-wrapper.responsive-form {
  max-width: 500px;
  margin: 32px auto;
  padding: 24px 32px;
  background: rgba(0,0,0,0.55);
  border-radius: 12px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .form-wrapper.responsive-form {
    width: 95%;
    max-width: 400px;
    margin: 0 auto;
    padding: 16px 8px;
    box-sizing: border-box;
  }
  #reservationForm input,
  #reservationForm select,
  #reservationForm textarea {
    width: 100% !important;
    font-size: 1em;
    margin-bottom: 12px;
    box-sizing: border-box;
  }
  .hero-text.full-screen-center {
    padding: 12px 0;
  }
}