:root {
  --bg: #0f0d0a;
  --bg-soft: #1a1611;
  --panel: #17130f;
  --text: #f1e5cc;
  --muted: #b8a98d;
  --accent: #c6974f;
  --accent-2: #8a5a2b;
  --line: #2a231b;
  --ok: #6f8a55;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 500px at 80% -20%, rgba(198, 151, 79, 0.15), transparent 70%),
    linear-gradient(180deg, #120f0b 0%, var(--bg) 45%, #0b0907 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar a,
.contact-details a,
footer a {
  color: #f0c878;
  text-decoration: none;
}

.top-bar a:hover,
.contact-details a:hover,
footer a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(198, 151, 79, 0.25);
  backdrop-filter: blur(8px);
  background: rgba(12, 10, 7, 0.8);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand span {
  color: var(--accent);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

nav a:hover,
nav a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a140b;
  box-shadow: 0 8px 20px rgba(198, 151, 79, 0.3);
}

.btn-outline {
  border-color: rgba(198, 151, 79, 0.6);
  color: var(--text);
  background: rgba(198, 151, 79, 0.08);
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 900px;
  background-image: url("../images/hero-banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #080604;
  position: relative;
}

.hero-fade {
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 4, 0) 0%,
    rgba(8, 6, 4, 0.55) 30%,
    #080604 100%
  );
  margin-top: -180px;
  position: relative;
  z-index: 2;
}

.hero-buttons {
  position: absolute;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 0 20px;
}

.hero-btn {
  min-width: 180px;
  padding: 17px 34px;
  text-align: center;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}

.hero-btn-gold {
  background: linear-gradient(135deg, #c99b55, #f0c878);
  color: #160d07;
}

.hero-btn-outline {
  border: 1px solid #c99b55;
  color: #f0c878;
  background: rgba(0, 0, 0, 0.25);
}

/* remove duplicate hero text/buttons */
.hero-content,
.hero-overlay,
.hero-subtitle,
.hero-description,
.hero h1,
.hero .btn,
.hero-actions {
  display: none !important;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--accent);
}

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.7rem);
  margin: 0.6rem 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
}

.hero p,
.section-intro p {
  color: var(--muted);
  max-width: 62ch;
}



.section {
  padding: 4rem 0;
}

.section + .section {
  border-top: 1px solid rgba(198, 151, 79, 0.12);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}

.card p {
  color: var(--muted);
}

.events-row {
  display: grid;
  gap: 1rem;
}

.home-events {
  padding: 80px 6%;
  background: #080604;
}

.home-events .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.see-more-btn {
  color: #160d07;
  background: linear-gradient(135deg,#c99b55,#f0c878);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  width: fit-content;
}

.event-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
}

.event-carousel::-webkit-scrollbar {
  height: 8px;
}

.event-carousel::-webkit-scrollbar-thumb {
  background: #c99b55;
  border-radius: 999px;
}

.home-event-card {
  min-width: 320px;
  max-width: 320px;
  background: #120d09;
  border: 1px solid rgba(201,155,85,.25);
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-event-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 45px rgba(201,155,85,0.22);
  border-color: rgba(240,200,120,0.65);
}

.home-event-card:active {
  transform: scale(0.98);
}

.home-event-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.home-event-card-content {
  padding: 18px;
}

.home-event-card h3 {
  color: #f0c878;
  margin-bottom: 8px;
}

.home-event-card p {
  color: #cfc1ad;
  font-size: 14px;
}

.view-event-link {
  display: inline-block;
  margin-top: 14px;
  color: #f0c878;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(240,200,120,0.55);
}

.view-event-link:hover {
  color: #ffffff;
}

.event {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.featured-event {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid rgba(198, 151, 79, 0.35);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.featured-event img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.featured-event-content {
  display: grid;
  gap: 0.6rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.event-meta span {
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid rgba(198, 151, 79, 0.28);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.status-badge {
  color: #f0c878 !important;
  border-color: rgba(198, 151, 79, 0.55) !important;
}

.date-box {
  min-width: 84px;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(198, 151, 79, 0.45);
  background: rgba(198, 151, 79, 0.08);
  padding: 0.5rem;
}

.date-box span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 860px) {
  .featured-event {
    grid-template-columns: 1fr;
  }
}

.membership {
  background: linear-gradient(180deg, rgba(198, 151, 79, 0.08), rgba(198, 151, 79, 0.02));
}

.membership-form-section {
  padding: 90px 20px;
  background: #080604;
}

.membership-form-box {
  max-width: 720px;
  margin: auto;
  background: #120d09;
  border: 1px solid rgba(201,155,85,0.25);
  border-radius: 28px;
  padding: 40px;
  color: #f5ead8;
}

.membership-form-box h2 {
  color: #f0c878;
  margin-bottom: 10px;
}

.membership-form-box p {
  color: #cfc1ad;
  margin-bottom: 22px;
}

.membership-form-box input,
.membership-form-box select,
.membership-form-box textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid rgba(201,155,85,0.35);
  background: #080604;
  color: #fff;
}

.membership-form-box textarea {
  min-height: 130px;
}

.membership-form-box button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg,#c99b55,#f0c878);
  color: #160d07;
  font-weight: 900;
  cursor: pointer;
}

#membershipStatus {
  margin-top: 15px;
  font-weight: bold;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.contact-details {
  margin-top: 1rem;
  color: var(--muted);
}

.hours-box {
  margin-top: 30px;
  background: #120d09;
  border: 1px solid rgba(201,155,85,0.25);
  border-radius: 18px;
  padding: 25px;
}

.hours-box h3 {
  color: #f0c878;
  margin-bottom: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #f5ead8;
}

.hours-row:last-child {
  border-bottom: none;
}

form {
  display: grid;
  gap: 0.65rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #3a3126;
  background: #100d09;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  border-top: 1px solid rgba(198, 151, 79, 0.2);
  margin-top: 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-box,
  .event {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-row {
    flex-direction: column;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .hero {
    height: 700px;
    background-position: center center;
  }

  .hero-buttons {
    bottom: 85px;
  }

  .hero-fade {
    height: 140px;
    margin-top: -140px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 500px;
    background-size: cover;
    background-position: center center;
  }

  .hero-buttons {
    bottom: 55px;
    flex-direction: column;
    gap: 12px;
    padding: 0 28px;
  }

  .hero-btn {
    width: 100%;
    max-width: 330px;
    padding: 15px 22px;
    font-size: 13px;
  }

  .hero-fade {
    height: 100px;
    margin-top: -100px;
  }

  .hours-row {
    font-size: 14px;
  }

  .membership-form-box {
    padding: 28px 20px;
  }

  .home-events .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-event-card {
    min-width: 82%;
    max-width: 82%;
  }

  .home-event-card:hover {
    transform: none;
  }

  .home-event-card:active {
    transform: scale(0.97);
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero {
    height: 420px;
    background-size: cover;
    background-position: center center;
  }

  .hero-buttons {
    bottom: 35px;
  }

  .hero-btn {
    max-width: 300px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .hero-fade {
    height: 80px;
    margin-top: -80px;
  }
}