* {
  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;
}



.booking-container {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  background-color: black;
}

.booking-form {
  background-color: black;
  color: white;
  padding: 24px;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  
  box-shadow: 0 4px 12px rgba(255, 221, 0, 0.1);
}

.booking-form h2 {
  margin-top: 0;
  color: #ffdd00;
  font-size: 24px;
  font-weight: bold;
}

.booking-form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background-color: #ffdd00;
  color: black;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  box-sizing: border-box;
}

.booking-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.booking-form button {
  margin-top: 20px;
  background-color: #ffdd00;
  color: black;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
  
}

.booking-form button:hover {
  background-color: #e6c800;
}


.order-info {
  background-color: black;
  padding: 40px 50px;
  color: white;
  font-family: "Noto Sans", sans-serif;
}

.order-block {
  margin-bottom: 40px;
}

.order-block h2 {
  color: #ffdd00;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: "Aclonica", sans-serif; 
}

.order-block p {
  font-size: 16px;
  line-height: 1.6;
}


.bolt-button {
  display: inline-block;

  color: #FFDD00;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  
}


