/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&family=Inter:wght@400;700&display=swap');

body {
  background: #fbf3df;
  color: #0D3B66;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h4 {
  font-family: 'Baloo 2', cursive, sans-serif;
  color: #0D3B66;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}

h4 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  margin: 1rem auto;
  max-width: 700px;
}

header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 2rem 1rem 2rem;
  background-color: #fbf3df;
  border-bottom: 2px solid #fbf3df;
}

.logo {
  grid-column: 1;
}

.logo img {
  height: 150px;
}

nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

nav a {
  text-decoration: none;
  color: #0D3B66;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #F95738;
}

/* Main image */
img[alt="Cruise Ship"] {
  display: block;
  margin: 1rem auto .5rem auto;
  max-width: 50%;
  border-radius: 8px;
  border: 2px solid #fbf3df;
}

/* Button */
#closeBtn {
  display: block;
  margin: 2rem auto 2rem auto;
  background: #0D3B66;
  color: #fff;
  font-family: 'Baloo 2', cursive, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13,59,102,0.08);
  transition: background 0.2s;
}

#closeBtn:hover {
  background: #F95738;
}

a:link {
  text-decoration: none;
}

/* Features section */
.features {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 2.5rem auto 2rem auto;
  max-width: 800px;
  border-top: 2px solid #e0d6c3;
  border-bottom: 2px solid #e0d6c3;
  padding: 1.5rem 0;
  gap: 1rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  color: #0D3B66;
}

.feature i {
  font-size: 2.2rem;
  color: #3FA7D6;
  margin-bottom: 0.5rem;
}

.feature div {
  text-align: center;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  margin-top: 0.2rem;
}

/* Membership offers */
ul {
  list-style: disc inside;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #0D3B66;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  padding-left: 1.5rem;
}

ol {
  list-style: disc inside;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #0D3B66;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  padding-left: 1.5rem;
}

@media (max-width: 700px) {
  header {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem;
  }
  nav {
    gap: 1.5rem;
  }
  .features {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
  }
}

/* book page */
/* Booking form clean vertical layout */
.booking-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  gap: 1rem;
}

.booking-form label {
  font-size: 1rem;
  font-weight: 600;
}

.booking-form input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
}

.booking-form button {
  width: fit-content;
  align-self: center;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-family: 'Baloo 2', cursive;
  background-color: #0D3B66;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background-color: #F95738;
}
