:root {
  --primary-red: #F6042E;
  --deep-black: #020005;
  --accent-yellow: #FFAE2E;
}

/* GENERAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(180deg, #020005 0%, #1a0900 40%, #FFAE2E15 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: var(--deep-black);
  border-bottom: 1px solid var(--accent-yellow);
  position: relative;
}

.brand-logo {
  height: 50px;
  position: absolute;
  left: 1rem;
}

.header-center h1 {
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 1.6rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h2 {
  color: var(--accent-yellow);
  font-size: 2rem;
}

.hero p {
  color: #ddd;
  max-width: 500px;
  margin: 1rem auto;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  transition: 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-primary {
  background-color: var(--primary-red);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-yellow);
  color: var(--deep-black);
}

.btn-secondary {
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
}

.btn-secondary:hover {
  background-color: var(--accent-yellow);
  color: var(--deep-black);
}

/* BOOKING SECTION */
.booking {
  text-align: center;
  padding: 2rem;
}

/* FOOTER CONTACT */
.footer-contact {
  text-align: center;
  margin-top: 2rem;
  color: #d8d8d8;
}

.footer-qr {
  width: 130px;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(246, 4, 46, 0.4);
}

/* FOOTER */
footer {
  margin-top: auto;
  background-color: #080808;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--accent-yellow);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-center h1 {
    font-size: 1.2rem;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
}
