html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: Poppins, sans-serif;
}

/* HEADER */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* desktop layout */
  gap: 20px;
  padding: 12px 20px;
  background: white;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  width: clamp(70px, 18vw, 140px);
  height: auto;
}

h1 {
  margin: 0;
  font-size: clamp(20px, 4vw, 32px);
  color: #fd9c83;
  white-space: nowrap; /* desktop */
}

/* NAV */
.nav {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  font-weight: bold;
  
}

.nav a {
  text-decoration: none;
  color: #fd9c83;
  font-size: clamp(14px, 3vw, 22px);
  white-space: nowrap;
}

/* HAMBURGER */
.hamburger {
  font-size: 32px;
  color: #fd9c83;
  cursor: pointer;
  display: none; /* hidden on desktop */
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu a {
  text-decoration: none;
  color: #fd9c83;
  font-size: 24px;
  font-weight: bold;
}

.close-btn {
  font-size: 32px;
  align-self: flex-end;
  cursor: pointer;
  color: #fd9c83;
}

/* WARNING BAR */
.warning h2 {
  margin: 0;
  padding: 10px;
  width: 100%;
  background: #044ae8;
  color: white;
  text-align: center;
  font-size: clamp(12px, 3vw, 18px);
}

/* MOBILE FIXES */
@media (max-width: 600px) {

  .header {
    justify-content: space-between; /* brand left, hamburger right */
  }

  .nav {
    display: none; /* hide desktop nav */
  }

  .hamburger {
  font-size: 32px;
   color: #fd9c83;
   cursor: pointer;
   position: absolute;
   top: 15px;
   right: 15px;
  display: block;
  }

  h1 {
    white-space: normal; /* allow wrapping */
  }
}
  .warning {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

* {
  outline: 1px solid red;
}

.banner {
  position: relative;
  height: clamp(25%, 50%, 100%); /* pick a size that fits your vibe */
}

.banner-pic {
  width: 100%;
  height: clamp(25%, 50%, 100%);
  object-fit: cover;
  display: block;
}
.banner-btn {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 2;

  background: black;
  color: white;

  /* FIX: smaller button */
  padding: 6px 14px;

  /* FIX: center text */
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px; /* adjust if you want */
}
