/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.legal-page {
  padding: 60px 0;
  line-height: 1.6;
}
.legal-page h1 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.legal-page h2 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}
.legal-page p {
  margin-bottom: 15px;
  color: var(--color-text-light);
}
.legal-page ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}
.legal-page ul li {
  margin-bottom: 10px;
  color: var(--color-text-light);
}

:root {
  --color-primary: #D97A54;
  /* Terra cotta/Orange */
  --color-primary-dark: #C0603B;
  --color-secondary: #F3EFE6;
  --color-second: #efe6d2;
  /* Beige background */
  --color-secondary-dark: #E6DCC6;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --font-primary: 'Futura PT', sans-serif;
  --font-script: 'Laqula', cursive;
  --spacing-unit: 8px;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

@font-face {
  font-family: "Futura PT";
  src: url("/fonts/FuturaPT-BookObl.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/fonts/FuturaPT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Laqula";
  src: url("/fonts/Laqula-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: var(--font-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  color: var(--color-white);
}
.header__logo-img {
  height: 40px;
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 110;
}
.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
.header__nav-link {
  color: var(--color-second);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-script);
  font-size: 2rem;
}
.header__nav-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    z-index: 1000;
  }
  .header__burger {
    display: block;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .header__nav-link {
    color: var(--color-white);
    font-size: 1.8rem;
  }
  .header--open .header__burger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .header--open .header__burger span:nth-child(2) {
    opacity: 0;
  }
  .header--open .header__burger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .header--open .header__nav {
    opacity: 1;
    visibility: visible;
  }
}
.header-alt {
  background-color: #F3EFE4;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}
.header-alt__side {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-alt__side--right {
  justify-content: flex-end;
}
.header-alt__center {
  flex: 0 0 auto;
  padding: 0 20px;
}
.header-alt__center img {
  height: 40px;
}
.header-alt__nav-desktop {
  display: flex;
  gap: 30px;
}
.header-alt__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 160;
}
.header-alt__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-alt__mobile-nav {
  display: none;
}
.header-alt__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-alt__link i {
  font-size: 1.1rem;
}
.header-alt__link:hover {
  opacity: 0.7;
}
.header-alt__nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.header-alt__nav-link:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .header-alt {
    padding: 15px 20px;
    z-index: 1000;
    justify-content: space-between;
  }
  .header-alt__side {
    display: none;
  }
  .header-alt__center {
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .header-alt__burger {
    display: block;
  }
  .header-alt__mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F3EFE4;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    z-index: 150;
  }
  .header-alt__mobile-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .header-alt__mobile-group-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 60%;
  }
  .header-alt--open .header-alt__burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .header-alt--open .header-alt__burger span:nth-child(2) {
    opacity: 0;
  }
  .header-alt--open .header-alt__burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .header-alt--open .header-alt__mobile-nav {
    display: flex;
  }
}
.hero {
  position: relative;
  height: 80vh;
  /* Adjust height as needed */
  background-image: url("/img/hero-bg.jpg");
  /* Placeholder */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  padding-top: 80px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Overlay */
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 4rem;
  color: var(--color-second);
  font-family: var(--font-script);
  /* Added per user request */
}
.hero__title-sub {
  /* font-family: var(--font-script); Removed as parent has it now */
  font-size: 2rem;
  line-height: 1;
  color: var(--color-second);
}
.hero__title-main {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--font-primary);
}
.hero__subtitle {
  color: var(--color-second);
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 300;
}
.hero {
  /* __tabs and search-bar replaced by booking-panel component */
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 15px 40px;
  }
  .hero__content {
    margin-bottom: 30px;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__title-sub {
    font-size: 1.4rem;
  }
  .hero__title-main {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: var(--color-primary-dark);
}
.button--outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.button--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 50px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background-color: var(--color-secondary);
  border: 1px solid #ccc;
  text-align: left;
  transition: transform 0.3s;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card__image-container {
  height: 200px;
  overflow: hidden;
}
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card__image {
  transform: scale(1.05);
}
.card__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  color: var(--color-primary);
  font-family: var(--font-script);
  font-size: 2rem;
  margin-bottom: 5px;
}
.card__subtitle {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-text);
}
.card__rating {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 20px;
  flex: 1;
}
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.card__price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.filter {
  text-align: center;
  padding: 40px 0;
  background-color: var(--color-secondary);
}
.filter__title {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 30px;
}
.filter__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.filter__btn {
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  padding: 10px 20px;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-radius: 20px;
}
.filter__btn:hover, .filter__btn--active {
  background-color: #D3D3D3;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .filter {
    padding: 25px 15px;
  }
  .filter__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .filter__buttons {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .filter__btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}
.footer {
  background-color: #93B2D6;
  /* Matching the blue from the image */
  padding: 80px 0;
  margin-top: 100px;
  font-family: var(--font-primary);
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__brand {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__logo img {
  max-width: 150px;
  filter: brightness(0) invert(1);
  /* Make logo white if it's not already */
}
.footer__socials {
  display: flex;
  gap: 15px;
}
.footer__socials .social-icon {
  color: var(--color-text);
  /* Icons are dark in the image */
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
  opacity: 0.6;
}
.footer__socials .social-icon:hover {
  opacity: 1;
}
.footer__socials .social-icon svg {
  width: 100%;
  height: 100%;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
  justify-content: flex-end;
  /* Align columns to the right */
}
.footer__column {
  min-width: 150px;
}
.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__column li {
  margin-bottom: 12px;
}
.footer__column a {
  text-decoration: none;
  color: var(--color-text);
  /* Dark text */
  font-size: 0.9rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.footer__column a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__heading {
  font-family: var(--font-script);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-text);
  /* Header is dark */
  font-weight: normal;
}

@media (max-width: 900px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
  }
  .footer__brand {
    align-items: center;
  }
}
.destinations {
  padding: 60px 0;
}
.destinations__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.destinations__title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-text);
}
.destinations__subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
}
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.destination-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  /* Changed to vertical layout */
  padding: 0;
  /* Remove padding to let image fill width */
  transition: transform 0.3s;
  cursor: pointer;
  height: 100%;
}
.destination-card:hover {
  transform: translateY(-5px);
}
.destination-card__image-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
}
.destination-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 0;
}
.destination-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.destination-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.destination-card__location {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-text);
  line-height: 1.3;
}
.destination-card__info {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 15px;
}
.destination-card__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.destination-card__price-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}
.destination-card__price-unit {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.booking-section {
  padding: 60px 0;
}
.booking-section .container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.booking-card {
  flex: 1;
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--color-white);
  text-align: center;
}
.booking-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s;
}
.booking-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
}
.booking-card__content {
  position: relative;
  z-index: 3;
}
.booking-card__title {
  font-family: var(--font-script);
  font-size: 3rem;
  margin-bottom: 15px;
}
.booking-card__text {
  margin-bottom: 25px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.booking-card__btn {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s;
}
.booking-card__btn:hover {
  background-color: var(--color-white);
}
.booking-card:hover .booking-card__bg {
  transform: scale(1.05);
}

.reviews {
  padding: 60px 0;
}
.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.reviews__title {
  font-size: 2.5rem;
  color: var(--color-text);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--color-secondary);
  /* Or distinct background */
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card__quote {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.3;
}
.review-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}
.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.review-card__author-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.review-card__author-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.review-card__rating {
  color: #FFD700;
  margin-bottom: 10px;
}
.review-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}
.review-card--highlight {
  border: 2px solid #5C9CE6;
  /* Blue highlight from design */
  background-color: #F8FBFF;
}

.newsletter {
  background-color: #f7e6d4;
  /* Light beige/orange tint */
  padding: 60px 20px;
  margin-top: 50px;
}
.newsletter .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E6DCC6;
  /* Darker beige container */
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.newsletter__content {
  flex: 1;
  max-width: 50%;
}
.newsletter__title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.newsletter__text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 20px;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.newsletter__input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: var(--font-primary);
}
.newsletter__img {
  position: absolute;
  right: -50px;
  bottom: -50px;
  height: 300px;
}

@media (max-width: 768px) {
  .newsletter {
    padding: 40px 15px;
  }
  .newsletter .container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
  }
  .newsletter__content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .newsletter__title {
    font-size: 2rem;
  }
  .newsletter__text {
    font-size: 1.5rem;
  }
  .newsletter__form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter__img {
    position: relative;
    right: 0;
    bottom: 0;
    height: 150px;
    margin-top: 20px;
    object-fit: contain;
  }
}
.booking-panel {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  z-index: 10;
  margin-top: 20px;
}
.booking-panel__tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}
.booking-panel__tab {
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s;
}
.booking-panel__tab--active {
  color: var(--color-primary);
}
.booking-panel__tab--active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  /* Adjust to sit on the border */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}
.booking-panel__tab:hover {
  color: var(--color-primary);
}
.booking-panel__form {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  /* Align inputs and button */
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .booking-panel__form {
    flex-direction: column;
    align-items: stretch;
  }
}
.booking-panel__group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 150px;
}
.booking-panel__label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
.booking-panel__input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.3s;
}
.booking-panel__input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.booking-panel__input::placeholder {
  color: #aaa;
}
.booking-panel__submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  height: 45px;
  /* Match input height roughly */
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-panel__submit:hover {
  background-color: var(--color-primary-dark);
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.page-section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .page-section {
    padding: 40px 0;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal--open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.modal__content {
  position: relative;
  background-color: #F3EFE4;
  /* Beige background from design */
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
}
.modal__title {
  font-family: var(--font-script);
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: left;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal__group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.modal__group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.modal__row {
  display: flex;
  gap: 15px;
}
.modal__row .modal__group {
  flex: 1;
}
.modal__label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 5px;
  background: #F3EFE4;
  width: fit-content;
  padding: 0 5px;
  margin-left: 10px;
  transform: translateY(10px);
  z-index: 1;
}
.modal__input {
  background-color: var(--color-white);
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
}
.modal__input[type=number] {
  width: 194px;
}
.modal__input:focus {
  border-color: var(--color-primary);
}
.modal__submit {
  background-color: #8dacdb;
  /* Light blue/purple from design */
  color: var(--color-white);
  font-weight: 700;
  padding: 15px;
  border: 2px dashed #6b90c9;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.modal__submit:hover {
  background-color: #7a9bc9;
}
.modal__terms {
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}

.tour-page {
  padding: 20px 0;
}
.tour-page .breadcrumbs {
  font-size: 0.9rem;
  color: var(--color-highlight);
  margin-bottom: 20px;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.tour-title {
  font-family: var(--font-script);
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  color: var(--color-text);
  font-size: 0.9rem;
}

.tour-rating {
  color: #FF8C00;
}

.tour-address {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.tour-reviews-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}
.tour-reviews-badge .badge {
  border: 1px solid var(--color-primary);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-primary);
}

.tour-actions {
  text-align: right;
}

.tour-price {
  color: var(--color-highlight);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.tour-price .amount {
  font-size: 2rem;
}

.button--booking {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 1.1rem;
  background-color: var(--color-highlight);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}
.button--booking:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}
.button--booking i {
  font-size: 1.2rem;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}

.tour-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 500px;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tour-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.tour-gallery .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.tour-gallery .gallery-grid .gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.tour-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-all-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.tour-overview h2 {
  font-family: var(--font-script);
  font-size: 2rem;
  margin-bottom: 20px;
}
.tour-overview p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 40px;
}

.amenities-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.amenity-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
.amenity-card--highlight {
  background-color: #A3C1DA;
  border: none;
  color: #333;
}
.amenity-card--highlight .score {
  font-size: 3rem;
  font-family: var(--font-script);
  margin-bottom: auto;
}
.amenity-card i {
  font-size: 1.5rem;
}
.amenity-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-location .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tour-location .map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 10px;
}
.tour-location .map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-location .map-address {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.tour-amenities {
  margin-top: 40px;
}
.tour-amenities .amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.tour-amenities .amenities-list .amenities-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.tour-amenities .more-amenities {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

/*# sourceMappingURL=main.css.map */
