* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 16px;
}

.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(
      to bottom,
      rgba(255, 210, 64, 0.096),
      rgba(64, 217, 255, 0.237)
    ),
    url(../images/t.webp) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
  border-bottom: 2px solid black;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
  border: 1px solid black;
  padding: 2px 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: lowercase;
}

nav ul li a {
  text-decoration: none;
  color: black;
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #f56b88;
}

.hero .centered-content {
  width: 300px;
  text-align: center;
  margin-top: 100px;
}

.booking-section {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: auto;
  min-width: 300px;
  box-sizing: border-box;
}

.form-container h1 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 0;
  width: 100%;
}

textarea {
  width: 100%;
  height: 100px;
  resize: vertical;
}

button[type="submit"] {
  padding: 12px 20px;
  background-color: #ffd43b;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  display: block;
  margin: 0 auto;
}

footer {
  background-color: #eeb843;
  color: white;
  padding: 40px;
  text-align: center;
}

.footer-logo {
  font-weight: bold;
  font-size: 20px;
  border: 1px solid #fff;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

address {
  margin: 10px 0;
  line-height: 1.5;
  font-style: normal;
}

.newsletter {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 2px;
  background: #f5d36b;
  color: #fff;
}

.newsletter button {
  background: white;
  border: none;
  padding: 10px 20px;
  color: #eed143;
  cursor: pointer;
}

.social-icons {
  font-size: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.copyright {
  font-size: 12px;
  margin-top: 20px;
  color: #ffd1da;
}
