:root {
  --primary: #334655; /* Blue-grey */
  --primary-transparent: #3346554d; /* Low opacity blue-grey */
  --primary-accent: #f1c40f; /* Yellow */
  --primary-accent-2: #b9931e; /* Dark Yellow */
  --primary-accent-3: #82cdff; /* Sky Blue */
  --hero-header-text: #d9b621;
  --secondary: #000; /* Black */
  --secondary-accent: #fff; /* White */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  color: var(--secondary);
  background: var(--secondary-accent);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary-transparent);
  color: var(--secondary-accent);
  position: relative;
  z-index: 1;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
}

.logo img.header-logo {
  height: 40px;
}

.main-action {
  background: linear-gradient(
    135deg,
    var(--primary-accent-2),
    var(--primary-accent)
  );
  color: var(--secondary-accent);
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  /*transition: background 0.3s ease;*/
}

.main-action:hover {
  background: #d4ac0d;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: -70px;
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--secondary-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-wrapper h1 {
  font-size: 3.25rem;
  /*font-family: "Dosis", sans-serif;*/
  font-family: "Delius", cursive;
  color: var(--hero-header-text);
}

.hero-wrapper h1 span {
  font-family: "Delius", cursive;
}

.hero-wrapper p {
  margin: 0.15rem 0 1.5rem 0;
  font-size: 1.4rem;
  font-style: italic;
  font-family: "Pacifico", cursive;
  color: #bbc1c6;
}

.hero-text-overlay {
  width: 100vw;
  padding: 2.5rem 0;
  background: rgba(0, 0, 0, 0.65);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 3; /* Maintain consistent ratio */
  object-fit: cover;
}

/* AMENITIES */
.amenities {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.amenities-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amenities-list button {
  padding: 10px;
  background: #f9f9f9;
  color: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.amenities-list button.active {
  background: var(--primary);
  color: var(--secondary-accent);
  font-weight: bold;
}

.amenities-list button.active:hover {
  background: #4a5b67;
  color: var(--secondary-accent);
}

.amenities-list button:hover {
  background: #ececec;
}

.amenity-details {
  flex: 2;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  min-height: 150px;
}

.amenity-details h3 {
  font-family: "Dosis", sans-serif;
  padding-bottom: 10px;
}

/* CONTENT CTA */
.content-cta {
  padding: 30px;
  text-align: center;
  background: var(--primary);
  color: var(--secondary-accent);
}

.content-cta .message {
  font-family: "Dosis", sans-serif;
  font-size: 1.3rem;
}

.content-cta .main-action {
  margin-top: 10px;
}

.content-cta p {
  margin-top: 10px;
  font-style: italic;
}

/* TESTIMONIAL */
.testimonial {
  padding: 30px;
  text-align: center;
  background: #f9f9f9;
  /*background: linear-gradient(
    135deg,
    var(--primary-accent-2),
    var(--primary-accent)
  );*/
  color: var(--secondary);
}

.testimonial h3 {
  font-family: "Dosis", sans-serif;
  font-size: 1.3rem;
}

.review-text {
  font-size: 1rem;
  margin-bottom: 5px;
  margin-top: 10px;
}

/* CONTACT */
.contact {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #f1f1f1;
  flex-wrap: wrap;
  gap: 20px;
}

.contact form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  flex: 1 1 200px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  background: var(--primary);
  color: var(--secondary-accent);
  display: flex;
  justify-content: space-between;
}

footer a {
  color: var(--secondary-accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-wrapper h1 {
    font-size: 1.8rem;
  }
  .hero-wrapper p {
    font-size: 1rem;
  }
  .logo img.header-logo {
    height: 35px;
  }
  footer {
    flex-direction: column;
    gap: 10px;
  }
  .contact {
    flex-direction: column;
    align-items: center;
  }
}
