/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* COMMON */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
}

/* HEADER */
.header {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../assets/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-content h2 {
  font-size: 48px;
}

.hero-content button {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
}

/* SECTIONS */
.about, .booking {
  padding: 100px 0;
}

/* BOOKING */
.booking form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
}

.booking input,
.booking button {
  padding: 10px;
  font-size: 16px;
}

.booking button {
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}
