* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Aclonica", sans-serif;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  background-color: #000;
}

.section {
  height: 28vh;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
}

.one {
  background: rgba(0, 0, 0, 0.7) url('img/header2.jpg') center center fixed;
  background-size: cover;
  background-blend-mode: darken;
  color: white;
  position: relative;
}

.site-header {
  display: flex;
  justify-content: flex-end; /* Push nav to the right */
  align-items: center;
  height: 100%; /* make sure it fills the section */
  padding-right: 40px; /* Only right padding now */
  position: relative;
  z-index: 1000;
}

.site-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: auto;
  z-index: 1001;
  cursor: pointer;
}

.navbar ul {
 list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar ul li a:hover {
  box-shadow: 0 3px 50px #FFDD00 inset;
}

.navbar .reservation {
  background-color: #FFDD00;
  color: #000;
  border-radius: 4px;
}

.navbar .social-icon {
  background-color: transparent;
  border-radius: 50%;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .social-icon svg {
  background-color: transparent;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-top: 4px;
  fill: #FFDD00;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background-color: #000;
  color: white;
  padding: 300px 20px 20px 20px;
  z-index: 999;
  font-size: 25px;
  
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 15px;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: #FFDD00;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  
}

.chili-warning {
  text-align: center;
  color: white;
  
}

.chili-warning .title {
margin-top: 5%;
  color: #ffe600; /* yellow */
  font-weight: bold;
  font-size: 20px;

}

.chili-warning .content {
  font-size: 20px;
  line-height: 1.6;
  width: 20%;
top: 95%;
}


/* === SEARCH POSITIONING UNDER HEADER === */
.search-container {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
}

/* Optional max-width to prevent stretching */
.search-form {
  max-width: 300px;
  width: 100%;
}

/* Keep existing .search styles */
.search {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 28px;
  background: #FFDD00;
  gap: 8px;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
 
  display: flex;
  align-items: center;
}


