/* GLOBAL */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
  color: #E6D8B9; /* beige / gold */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #111111;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #c9bfa3;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.5rem;
}

.center-text {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  color: #c9bfa3;
}

/* HEADER */

.site-header {
  background: #000000;
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E6D8B9;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #C9A86A;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #F2E1BD;
}

/* HERO */

.hero {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.7)),
    url("images/venue-hero.jpg"); /* put your main hero image here */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
}

.hero-content {
  text-align: center;
  max-width: 650px;
  padding: 4rem 0;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #F2E1BD;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.hero-subtitle {
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-contact {
  font-size: 0.95rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: #C9A86A;
  color: #111111;
}

.btn-primary:hover {
  background: #dbbc7e;
}

.btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* CARDS / GENERAL */

.card {
  background: #111111;
  border-radius: 0.9rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #2b2b2b;
}

.card h3 {
  margin-top: 0;
  font-family: "Georgia", "Times New Roman", serif;
}

/* RENTAL INFO */

.info-note {
  background: #111111;
  border-left: 4px solid #C9A86A;
  padding: 1rem 1.2rem;
  border-radius: 0.7rem;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #111111;
  border-radius: 0.9rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #2b2b2b;
}

.pricing-card h3 {
  margin-top: 0;
  font-family: "Georgia", "Times New Roman", serif;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.pricing-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #2b2b2b;
}

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

.pricing-card span {
  display: block;
}

.pricing-card strong {
  display: block;
  margin-top: 0.2rem;
}

.pricing-card small {
  font-size: 0.8rem;
  color: #b8ae93;
}

.capacity {
  font-size: 0.9rem;
  color: #c9bfa3;
}

.details-grid {
  margin-top: 2rem;
}

/* PLAN YOUR EVENT */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.step-card {
  background: #111111;
  border-radius: 0.9rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid #2b2b2b;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(201,168,106,0.3);
}

/* FAQ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 0.7rem;
  background: #111111;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid #2b2b2b;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.5rem;
  border: 1px solid #2b2b2b;
  padding: 0.6rem 0.8rem;
  background: #111111;
  color: #E6D8B9;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid #C9A86A;
}

.text-links a {
  text-decoration: underline;
}

/* FOOTER */

.footer {
  background: #000000;
  border-top: 1px solid #1f1f1f;
  padding: 1.3rem 0;
  text-align: center;
}

.footer-inner {
  font-size: 0.9rem;
  color: #b8ae93;
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* THANK YOU PAGE */

.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column,
  .details-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
  }
}
