/* ==========================
   Garden State Entertainment - Full Style Sheet
   ========================== */

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

:root {
  --nav-height: 100px; /* dynamically updated by script.js */
}

/* ---------- BODY ---------- */
body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: white;
  line-height: 1.6;
}

/* spacer div controlled by script.js */
.nav-spacer {
  height: var(--nav-height);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FCF4E7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  transition: top 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo {
  height: 60px;
  width: auto;
}

/* ---------- NAV LINKS (DESKTOP DEFAULT) ---------- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav-links a {
  color: #000;
  background-color: rgba(255, 215, 0, 0.9);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.nav-links a:hover,
.nav-links .active {
  background-color: #FFD84D;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ---------- SECTION STYLING ---------- */
section {
  text-align: center;
  padding: 100px 20px;
  max-width: 1000px;
  margin: auto;
}

h1, h2, h3 {
  color: gold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

p {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  background-color: gold;
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  background-color: #e5b800;
  transform: translateY(-3px);
}

/* ---------- ABOUT PAGE ---------- */
.about-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0;
}

.highlight-box {
  background-color: #111;
  color: white;
  border-radius: 10px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* ---------- BOOKING FORM ---------- */
.booking-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
}

.booking-section label {
  align-self: flex-start;
  color: gold;
  margin: 10px 0 5px;
}

.booking-section input,
.booking-section textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #444;
  border-radius: 8px;
  background-color: #111;
  color: white;
  margin-bottom: 15px;
  font-size: 1rem;
}

.booking-section button {
  background-color: gold;
  color: #000;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.booking-section button:hover {
  background-color: #e5b800;
}

/* ---------- FOOTER ---------- */
footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 0.9rem;
  margin-top: 60px;
}

/* ---------- RESPONSIVE (MOBILE) ---------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  /* 2x2 grid ONLY on mobile */
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
    justify-items: center;
    margin-top: 12px;
  }

  .nav-links a {
    width: 90%;
    text-align: center;
    font-size: 1rem;
    padding: 13px 18px; /* more breathing room */
    border-radius: 32px; /* rounder pill */
  }

  .highlight-box {
    width: 90%;
  }

  section {
    padding: 80px 20px;
  }
}
