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

body {
  margin: 0;
  font-family: "Italiana", "Raleway", "Quattrocento Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Standalone Book Now Section Styles */
.standalone-book-now-section {
  text-align: center; /* Or adjust as needed for layout */
  padding: 1rem 0; /* Add some padding around the button section */
}

.standalone-book-now-button {
  display: inline-block;
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1rem; /* Adjust size as needed */
  color: #fff; /* White text */
  background-color: #2e5e4e; /* Your site's primary green */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 2rem; /* Adjust padding as needed */
  border-radius: 2rem; /* Rounded corners */
  text-transform: uppercase;
  text-decoration: none; /* Remove underline from link */
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none; /* Ensure no default border */
  cursor: pointer; /* Indicate it's clickable */
}

.standalone-book-now-button:hover {
  background-color: #234a3d; /* Darker green on hover, consistent with your hero button hover */
  text-decoration: none; /* Ensure no underline on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}

.standalone-book-now-button:active {
  transform: translateY(0); /* Reset lift on click */
}

/* Optional: Media Queries for responsive adjustments if needed */
@media (min-width: 768px) {
  .standalone-book-now-button {
    font-size: 1.125rem; /* Slightly larger on tablets and up */
    padding: 1rem 3rem; /* More padding on larger screens */
  }
}

/* Header Top Bar */
.site-top-bar {
  background-color: #2e5e4e; /* Your brand's primary dark green color */
  color: #fff; /* White text */
  padding: 0.75rem 1rem; /* Padding for mobile */
  position: sticky; /* Makes the bar sticky */
  top: 0; /* Sticks to the top */
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensures it's above other content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

.top-bar__container {
  display: flex;
  flex-direction: column; /* Stack items vertically on mobile */
  align-items: center; /* Center items when stacked */
  gap: 0.5rem; /* Space between stacked items */
  max-width: 1200px; /* Consistent with your site's max-width */
  margin: 0 auto; /* Centers the container */
  text-align: center; /* Ensure text is centered if elements don't fill width */
}

.top-bar__villa-name a {
  font-family: "Italiana", serif; /* Matches hero title font */
  font-size: 1.25rem; /* Prominent villa name */
  color: #fff;
  text-decoration: none;
  font-weight: 400; /* As per hero title */
}

.top-bar__contact {
  font-family: "Raleway", sans-serif; /* Consistent with body text */
  font-size: 0.85rem;
  color: #fff;
}

.top-bar__contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600; /* Make phone number slightly bolder */
}

.top-bar__contact a:hover,
.top-bar__villa-name a:hover {
  text-decoration: underline; /* Underline on hover for links */
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .site-top-bar {
    padding: 1rem 2rem; /* Increased padding for larger screens */
  }

  .top-bar__container {
    flex-direction: row; /* Revert to horizontal layout */
    justify-content: space-between; /* Space items out horizontally */
    align-items: center; /* Align items vertically in the center */
    gap: 1rem; /* Adjust gap for horizontal layout if needed */
    text-align: left; /* Reset text alignment */
  }

  .top-bar__villa-name a {
    font-size: 1.5rem; /* Larger font for villa name */
  }

  .top-bar__contact {
    font-size: 0.95rem; /* Larger font for contact info */
  }
}

/* Desktop screens (optional further adjustments) */
@media (min-width: 1024px) {
  .top-bar__villa-name a {
    font-size: 1.75rem;
  }

  .top-bar__contact {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  width: 100%;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;

  /* Explicit background properties from original shorthand */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* Fallback: Gradient + JPG image */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    url("../assets/jpg/hero_small.jpg");

  /* Enhancement: Gradient + Webkit Image Set */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    -webkit-image-set(
                        url("../assets/webp/hero_small.webp") type("image/webp"),
                        url("../assets/png/hero_small.png") type("image/png"),
                        url("../assets/jpg/hero_small.jpg") type("image/jpeg")
                    );

  /* Enhancement: Gradient + Standard Image Set */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    image-set(
                        url("../assets/webp/hero_small.webp") type("image/webp"),
                        url("../assets/png/hero_small.png") type("image/png"),
                        url("../assets/jpg/hero_small.jpg") type("image/jpeg")
                    );
}

.hero__content {
  color: #fff;
  z-index: 1;
}

.hero__title {
  font-family: "Italiana", serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.hero__tagline {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero__btn {
  display: inline-block;
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1rem;
  color: #fff;
  background-color: #2e5e4e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.hero__btn:hover {
  background-color: rgba(0, 128, 128, 1);
  text-decoration: none;
}

/* Media Queries */
@media (min-width: 768px) {
  /* Inside @media (min-width: 768px) { ... } */
.hero {
  /* Explicit background properties from original shorthand */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* Fallback: Gradient + JPG image */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    url("../assets/jpg/hero_large.jpg");

  /* Enhancement: Gradient + Webkit Image Set */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    -webkit-image-set(
                        url("../assets/webp/hero_large.webp") type("image/webp"),
                        url("../assets/png/hero_large.png") type("image/png"),
                        url("../assets/jpg/hero_large.jpg") type("image/jpeg")
                    );

  /* Enhancement: Gradient + Standard Image Set */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    image-set(
                        url("../assets/webp/hero_large.webp") type("image/webp"),
                        url("../assets/png/hero_large.png") type("image/png"),
                        url("../assets/jpg/hero_large.jpg") type("image/jpeg")
                    );
}
/* Make sure to only replace the .hero { ... } block and keep other rules
   like .hero__title, .hero__tagline, etc., within the media query as they are. */

  .hero__title {
    font-size: 4rem;
  }

  .hero__tagline {
    font-size: 1.25rem;
  }

  .hero__btn {
    font-size: 1.125rem;
    padding: 1rem 3rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    height: 80vh;
  }

  .hero__title {
    font-size: 5rem;
  }

  .hero__tagline {
    font-size: 1.5rem;
  }
}

/* Welcome Section */
.welcome-section {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #f5f5f0;
  text-align: center;
  padding: 2rem 1rem;
}

.welcome-section__title {
  font-family: "Italiana", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2e5e4e;
  text-transform: uppercase;
}

.welcome-section__text {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.welcome-section__signature {
  display: block;
  margin: 1rem auto;
  width: 150px; /* Matches the placeholder width */
  height: auto; /* Preserves the image’s natural aspect ratio */
}

.welcome-section__button {
  display: inline-block;
  background-color: #2e5e4e;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.welcome-section__button:hover {
  background-color: #234a3d;
  text-decoration: none;
}

/* Media Queries */
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }

  .hero__tagline {
    font-size: 1.25rem;
  }

  .hero__btn {
    font-size: 1.125rem;
    padding: 1rem 3rem;
  }

  .welcome-section {
    padding: 4rem 2rem;
  }

  .welcome-section__title {
    font-size: 2rem;
  }

  .welcome-section__text {
    font-size: 1.2rem;
    max-width: 800px;
  }

  .welcome-section__button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    height: 80vh;
  }

  .hero__title {
    font-size: 5rem;
  }

  .hero__tagline {
    font-size: 1.5rem;
  }
}

/* About Section */
.about {
  display: flex;
  flex-direction: column;
  max-width: 1200px; /* Consistent with other sections */
  margin: 0 auto;
  padding: 1rem;
  padding-bottom: 0.25rem;
}

.about__featured {
  margin-bottom: 1rem;
}

.about__featured-image {
  width: 100%;
  height: auto;
}

.about__content {
  display: flex;
  flex-direction: column;
  font-family: "Quattrocento Sans", sans-serif;
}

.about__text {
  margin-bottom: 1rem;
}

.about__heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "Italiana", serif;
  color: #2e5e4e;
}

.about__text p {
  margin-bottom: 1rem;
}

.about__secondary-image {
  display: block;
  margin: 1rem auto;
  width: 100%;
  max-width: 600px; /* Matches placeholder width */
  height: auto; /* Preserves aspect ratio */
}

/* Tablet and Desktop Layout */
@media (min-width: 768px) {
  .about {
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem; /* Consistent padding increase */
    padding-bottom: 0.75rem;
  }

  .about__featured {
    flex: 0 0 auto;
    max-width: 400px;
    margin-right: 2rem; /* Reduced to 2rem for consistent spacing */
    margin-bottom: 0;
  }

  .about__content {
    flex: 1;
    /* Removed padding-left to avoid extra width */
  }

  .about__secondary-image {
    max-width: 500px;
    align-self: flex-end;
  }

  .about__heading {
    font-size: 2.5rem;
  }

  .about__text p {
    font-size: 1rem;
  }
}

/* Larger Desktop Screens */
@media (min-width: 1024px) {
  .about {
    padding: 3rem; /* Consistent with other sections */
    padding-bottom: 1rem;
  }

  .about__featured {
    margin-right: 5rem; /* Slightly larger space for desktop */
  }

  .about__heading {
    font-size: 3rem;
  }

  .about__text p {
    font-size: 1.1rem;
  }
}

/* Accommodation Section */
.accommodation-section {
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;

  /* Explicit background properties from original shorthand */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* Fallback: Gradient + JPG image */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    url("../assets/jpg/test.jpg");

  /* Enhancement: Gradient + Webkit Image Set */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    -webkit-image-set(
                        url("../assets/webp/test.webp") type("image/webp"),
                        url("../assets/png/test.png") type("image/png"),
                        url("../assets/jpg/test.jpg") type("image/jpeg")
                    );

  /* Enhancement: Gradient + Standard Image Set */
  background-image: linear-gradient(rgba(0, 80, 80, 0.8), rgba(0, 80, 80, 0.6)),
                    image-set(
                        url("../assets/webp/test.webp") type("image/webp"),
                        url("../assets/png/test.png") type("image/png"),
                        url("../assets/jpg/test.jpg") type("image/jpeg")
                    );
}

.accommodation-section__container {
  max-width: 1440px;
  margin: 0 auto;
}

.accommodation-section__title {
  font-family: "Italiana", serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.accommodation-section__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.accommodation-section__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 calc(50% - 1.5rem); /* Two items per row on small screens */
  min-width: 120px; /* Ensure icons don't shrink too much */
}

.accommodation-section__icon {
  color: white;
  font-size: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.accommodation-section__text {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Medium screens and up */
@media (min-width: 768px) {
  .accommodation-section {
    padding: 4rem 2rem;
  }

  .accommodation-section__title {
    font-size: 3rem;
  }

  .accommodation-section__features {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .accommodation-section__feature {
    flex: 1 1 auto; /* Allow items to take natural width */
  }

  .accommodation-section__icon {
    font-size: 60px;
  }

  .accommodation-section__text {
    font-size: 1.2rem;
  }
}

/* Large screens and up */
@media (min-width: 1024px) {
  .accommodation-section__features {
    gap: 5rem;
  }

  .accommodation-section__icon {
    font-size: 70px;
  }
}

/* Available Choices Section */
.available-choices {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-description {
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  font-family: "Raleway", sans-serif;
  color: #333;
}

.choices-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.choice-container {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* This will now be the space between the card and the table */
  width: 100%;
}

.available-choices__card {
  /* Styles for the card remain unchanged */
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.available-choices__background {
  /* Styles for the card background remain unchanged */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.available-choices__content {
  /* Styles for the card content remain unchanged */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
}

.available-choices__title {
  /* Styles for the card title remain unchanged */
  font-family: "Italiana", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.available-choices__description {
  /* Styles for the card description remain unchanged */
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Updated Table Styles - More Minimalist */
.choice-table {
  width: 100%;
  border-collapse: separate; /* Changed for more modern spacing, or use 'collapse' with only bottom borders */
  border-spacing: 0;
  margin-top: 1rem; /* Space between card and table */
  background-color: #fff;
  color: #333;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem; /* Slightly smaller base font for the table */
  border: 1px solid #e9e9e9; /* Optional: a very light border around the whole table */
  border-radius: 4px; /* Optional: slight rounding for the table itself */
  overflow: hidden; /* Ensures border-radius applies to child elements if needed */
}

.choice-table th,
.choice-table td {
  padding: 0.85rem 1rem; /* Adjusted padding for a cleaner look */
  text-align: left;
  border-bottom: 1px solid #e9e9e9; /* Light horizontal lines */
}

.choice-table th {
  background-color: transparent; /* Minimalist header background */
  color: #2e5e4e; /* Brand color for header text */
  font-weight: 600; /* Or 500 for slightly less bold */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem; /* Slightly smaller header font */
  border-bottom-width: 2px; /* Slightly thicker border for header */
  border-bottom-color: #2e5e4e; /* Brand color for header bottom border */
}

.choice-table td {
  background-color: #fff;
  color: #555; /* Slightly softer text color for data */
}

/* Remove bottom border from the last row in tbody */
.choice-table tbody tr:last-child td {
  border-bottom: none;
}

.table-notes {
  font-family: Quattrocento Sans;
  margin-top: 1rem; /* Space above the notes */
  padding: 0.75rem 1rem;
  background-color: #f8f9fa; /* Very light, almost neutral background */
  color: #555;
  font-size: 0.85rem;
  border-radius: 4px;
  line-height: 1.5;
  border-left: 3px solid #2e5e4e; /* Subtle brand color accent */
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .available-choices {
    padding: 0.75rem;
  }

  .section-description {
    padding: 2rem;
    font-size: 1.25rem;
  }

  .choices-container {
    flex-direction: row;
  }

  .choice-container {
    width: 50%;
  }

  .available-choices__card {
    /* Unchanged */
    min-height: 500px;
  }

  .available-choices__content {
    /* Unchanged */
    padding: 2rem;
  }

  .available-choices__title {
    /* Unchanged */
    font-size: 2rem;
  }

  .available-choices__description {
    /* Unchanged */
    font-size: 1rem;
  }

  .choice-table {
    font-size: 0.95rem; /* Slightly larger table font for tablets */
  }

  .choice-table th {
    font-size: 0.85rem;
  }

  .table-notes {
    font-size: 0.9rem;
  }
}

/* Desktop screens */
@media (min-width: 1024px) {
  .available-choices {
    padding: 1rem;
  }

  .available-choices__card {
    /* Unchanged */
    min-height: 600px;
  }

  .available-choices__content {
    /* Unchanged */
    padding: 3rem;
  }

  .available-choices__title {
    /* Unchanged */
    font-size: 2.5rem;
  }

  .available-choices__description {
    /* Unchanged */
    font-size: 1.1rem;
  }
}

/* Description Section */
.description-section {
  padding: 1rem;
  background-color: #fff;
  max-width: 1200px; /* Added to match other sections */
  margin: 0 auto; /* Center the section */
}

.description-section__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.description-section__left,
.description-section__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.description-section__label {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem; /* Slightly reduced for consistency */
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px; /* Added for better typography */
  margin-bottom: 0.5rem;
}

.description-section__heading {
  font-family: "Quattrocento Sans", serif;
  font-size: 1.75rem; /* Adjusted for mobile */
  line-height: 1.2;
  font-weight: 400; /* Consistent with other headings */
  text-transform: uppercase; /* Consistent with other sections */
  margin-bottom: 1rem;
  color: #2e5e4e;
}

.description-section__text {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 0.9rem; /* Adjusted for mobile */
  line-height: 1.6;
  margin-bottom: 1rem;
}

.description-section__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Tablet and medium screens */
@media (min-width: 768px) {
  .description-section {
    padding: 2rem; /* Consistent with other sections */
  }

  .description-section__container {
    flex-direction: row;
    gap: 2rem; /* Reduced gap for better balance */
  }

  .description-section__left,
  .description-section__right {
    flex: 1; /* Equal width for both parts */
  }

  .description-section__left {
    margin-right: 2rem;
  }

  .description-section__heading {
    font-size: 2.25rem; /* Adjusted for consistency */
  }

  .description-section__text {
    font-size: 1rem; /* Consistent with other sections */
  }

  .description-section__image {
    max-width: 600px;
    align-self: flex-end;
  }
}

/* Large screens and up */
@media (min-width: 1024px) {
  .description-section {
    padding: 3rem; /* Adjusted to match other sections */
  }

  .description-section__heading {
    font-size: 2.5rem; /* Consistent with other sections */
  }

  .description-section__left {
    margin-right: 5rem;
  }

  .description-section__text {
    font-size: 1.1rem; /* Consistent with other sections */
  }
}

/* Amenities Section */
.amenities {
  padding: 1rem;
  max-width: 1200px; /* Max-width for the entire container */
  margin: 0 auto;
}

.amenities__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.amenities__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.amenities__title {
  font-family: "Quattrocento Sans", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #2e5e4e;
  text-transform: uppercase;
}

.amenities__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amenities__card {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.amenities__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.amenities__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
}

.amenities__card-title {
  font-family: "Italiana", serif;
  /*이미지 1.5rem;*/
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.amenities__description {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .amenities {
    padding: 2rem;
  }

  .amenities__title {
    font-size: 2.25rem;
  }

  .amenities__cards {
    flex-direction: row;
    gap: 1rem;
  }

  .amenities__card {
    flex: 1;
    min-height: 500px;
  }

  .amenities__content {
    padding: 2rem;
  }

  .amenities__card-title {
    font-size: 2rem;
  }

  .amenities__description {
    font-size: 1rem;
  }
}

/* Desktop screens */
@media (min-width: 1024px) {
  .amenities {
    padding: 3rem;
  }

  .amenities__title {
    font-size: 2.5rem;
  }

  .amenities__card {
    min-height: 600px;
  }

  .amenities__content {
    padding: 3rem;
  }

  .amenities__card-title {
    font-size: 2.5rem;
  }

  .amenities__description {
    font-size: 1.1rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 1rem;
  max-width: 1200px; /* Max-width for the entire container */
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.testimonials__title {
  font-family: "Quattrocento Sans", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #2e5e4e;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.testimonials__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.testimonials__stars {
  font-size: 1.2rem;
  color: #f5c518; /* Gold color for stars */
}

.testimonials__score {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #000;
}

.testimonials__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials__card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
}

.testimonials__stars {
  font-size: 1rem;
  color: #f5c518;
  margin-bottom: 0.75rem;
}

.testimonials__text {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials__author-info {
  flex: 1;
}

.testimonials__author-name {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}

.testimonials__author-location {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: #666;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .testimonials {
    padding: 2rem;
  }

  .testimonials__title {
    font-size: 2.25rem;
  }

  .testimonials__cards {
    flex-direction: row;
    gap: 1rem;
  }

  .testimonials__card {
    flex: 1;
    padding: 2rem;
  }

  .testimonials__text {
    font-size: 1rem;
  }

  .testimonials__author-name {
    font-size: 1rem;
  }

  .testimonials__author-location {
    font-size: 0.9rem;
  }
}

/* Desktop screens */
@media (min-width: 1024px) {
  .testimonials {
    padding: 3rem;
  }

  .testimonials__title {
    font-size: 2.5rem;
  }

  .testimonials__card {
    padding: 2.5rem;
  }

  .testimonials__text {
    font-size: 1.1rem;
  }
}

/* === CSS for Attractions Section === */

/* Attractions Section Container */
.attractions-section {
  padding: 2rem 1rem; /* Mobile padding */
  max-width: 1200px; /* Consistent max-width */
  margin: 2rem auto; /* Space around the section, and centered */
  background-color: #fff; /* Assuming a white background */
  text-align: center; /* Default alignment for header/intro content */
}

/* Header and Intro Content Block */
.attractions-section__header-intro {
  margin-bottom: 2.5rem; /* Space between intro block and the cards */
  padding: 0 1rem; /* Horizontal padding for smaller screens within the intro block */
}

/* New Main Title for the Section */
.attractions-section__main-title {
  font-family: "Quattrocento Sans", serif;
  font-size: 2rem; /* Prominent size for mobile */
  font-weight: 400;
  color: #2e5e4e; /* Accent color from your site */
  text-transform: uppercase;
  margin-bottom: 1rem; /* Space below the main title */
  line-height: 1.3;
}

/* Sub-text / Descriptive paragraph below the main title */
.attractions-section__sub-text {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.attractions-section__sub-text strong {
  font-weight: 600; /* Or 700 if you prefer stronger bold */
  color: #2e5e4e; /* Emphasize keywords with accent color */
}

/* Paragraph containing map link and lead-in to cards */
.attractions-section__map-info {
  font-family: "Raleway", sans-serif;
  font-size: 1rem; /* Consistent with sub-text */
  line-height: 1.7;
  color: #333;
  margin-bottom: 0; /* No margin if it's the last item in header-intro */
}

.attractions-section__map-link {
  font-family: "Raleway", sans-serif;
  color: #2e5e4e;
  font-weight: 600; /* Or 700 */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.attractions-section__map-link:hover {
  text-decoration: none; /* Common hover effect */
  color: #234a3d; /* Darken link color */
}

/* Grid container for attraction cards */
.attractions-section__cards {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1.5rem; /* Space between cards */
}

/* Individual attraction card styling */
.attraction-card {
  background-color: #fff;
  border: 1px solid #e0e0e0; /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Ensures image respects border-radius */
  text-align: left; /* Align text to the left within each card */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Softer shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; /* Using flex for better internal alignment */
  flex-direction: column; /* Stack image and content vertically */
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* More pronounced shadow on hover */
}

.attraction-card__image {
  width: 100%;
  height: 200px; /* Fixed height for uniform card appearance */
  object-fit: cover; /* Ensures image covers the area without distortion */
  display: block; /* Removes any extra space beneath the image */
}

.attraction-card__content {
  padding: 1rem; /* Padding within the text content area */
  flex-grow: 1; /* Allows content to fill space if cards have different text lengths */
  display: flex;
  flex-direction: column;
}

.attraction-card__name {
  font-family: "Raleway", serif;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 0.25rem; /* Reduced margin as meta line is now below */
  font-weight: 400;
}

.attraction-card__meta {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem; /* Smaller text for meta information */
  color: #555; /* Slightly lighter than main description */
  margin-bottom: 0.5rem; /* Space below distance, before main description */
  display: block; /* Ensure it takes its own line */
}

.attraction-card__description {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin-top: auto; /* Pushes description to bottom if name/meta are short */
}

/* === Responsive Adjustments === */

/* Tablet Media Query */
@media (min-width: 768px) {
  .attractions-section {
    padding: 1.5rem 2rem; /* Increased padding */
    margin: 1rem auto;
  }

  .attractions-section__header-intro {
    padding: 0 2rem; /* Adjust padding for wider screens */
  }

  .attractions-section__main-title {
    font-size: 2.5rem; /* Larger main title for tablets */
  }

  .attractions-section__sub-text,
  .attractions-section__map-info {
    font-size: 1.05rem;
    max-width: 800px; /* Limit width for readability on tablets+ */
    margin-left: auto;
    margin-right: auto;
  }

  .attractions-section__sub-text {
    margin-bottom: 1.25rem; /* Slightly more space */
  }

  /* Card grid adjustments for tablet */
  .attractions-section__cards {
    grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    gap: 2rem; /* Increased gap */
  }

  .attraction-card__image {
    height: 220px; /* Slightly taller images */
  }

  .attraction-card__name {
    font-size: 1.45rem;
  }
  .attraction-card__meta {
    font-size: 0.85rem;
  }
  .attraction-card__description {
    font-size: 0.95rem;
  }
}

/* Desktop Media Query */
@media (min-width: 1024px) {
  .attractions-section {
    padding: 2rem 2rem; /* Increased padding */
    margin: 1rem auto;
  }

  .attractions-section__header-intro {
    padding: 0 3rem; /* Further adjust padding for wider content area */
  }

  .attractions-section__main-title {
    font-size: 2.75rem; /* Even larger main title for desktop */
  }

  /* Card grid adjustments for desktop */
  .attractions-section__cards {
    grid-template-columns: repeat(4, 1fr); /* Four cards per row */
    gap: 1.5rem; /* Adjust gap for four columns */
  }

  .attraction-card__image {
    height: 180px; /* Adjust image height for 4-column layout */
  }
  .attraction-card__name {
    font-size: 1.3rem; /* Adjust if space is tight in 4 columns */
  }
  .attraction-card__meta {
    font-size: 0.8rem; /* Keep it small and neat */
  }
  .attraction-card__description {
    font-size: 0.9rem; /* Adjust if space is tight */
    line-height: 1.5; /* May need to adjust line height if descriptions are longer */
  }
}

/* Larger Desktop Media Query - Optional */
@media (min-width: 1200px) {
  .attractions-section__cards {
    gap: 2rem; /* Ensure comfortable spacing */
  }
  .attraction-card__image {
    height: 200px; /* Can make images taller again if space allows */
  }
}

/* === Footer Section === */
.site-footer {
  background-color: #2e5e4e; /* Dark green from your hero button */
  color: #f5f5f0; /* Light cream from your welcome section */
  padding: 2rem 1rem;
  font-family: "Raleway", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Space between columns on mobile */
}

.footer-column {
  flex: 1;
  min-width: 280px; /* Minimum width for columns */
}

.footer-heading {
  font-family: "Italiana", serif;
  font-size: 1.5rem;
  color: #fff; /* White headings */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.footer-address p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Space between icon and text */
}

.footer-address i,
.footer-links-list i {
  color: #fff; /* White icons */
  font-size: 1.1rem;
  width: 20px; /* Fixed width for alignment */
  text-align: center;
}

.footer-address a,
.footer-links-list a {
  color: #f5f5f0; /* Light cream for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover,
.footer-links-list a:hover {
  color: #ddd; /* Lighter shade on hover */
  text-decoration: underline;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-column--about p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-book-now-btn {
  /* Reusing hero__btn styles where appropriate */
  display: inline-block;
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 0.9rem;
  color: #2e5e4e; /* Button text color */
  background-color: #fff; /* Button background */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none; /* Ensure no underline from default <a> */
}

.footer-book-now-btn:hover {
  background-color: #f5f5f0; /* Slightly off-white on hover */
  color: #234a3d; /* Darker green text on hover */
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 245, 240, 0.2); /* Subtle border */
  font-size: 0.9rem;
  color: #ccc; /* Lighter text for copyright */
}

/* Tablet Media Query */
@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 2rem;
  }

  .footer-container {
    flex-direction: row;
    flex-wrap: wrap; /* Allow wrapping if needed */
    justify-content: space-between;
    gap: 2rem; /* Gap between columns */
  }

  .footer-column {
    /* Adjust flex-basis for a 2 or 3 column layout.
           Example for roughly three columns, allowing some flexibility: */
    flex-basis: calc(33.333% - 2rem); /* Adjust based on the gap */
    min-width: 0; /* Reset min-width for flex items */
  }
  .footer-column--contact {
    flex-basis: calc(35% - 1.5rem); /* Slightly more space for contact */
  }
  .footer-column--links {
    flex-basis: calc(25% - 1.5rem);
  }
  .footer-column--about {
    flex-basis: calc(
      40% - 1.5rem
    ); /* More space for the description and button */
  }

  .footer-heading {
    font-size: 1.75rem;
  }

  .footer-book-now-btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}

/* Desktop Media Query */
@media (min-width: 1024px) {
  .site-footer {
    padding: 4rem 2rem;
  }

  .footer-container {
    gap: 3rem; /* Increase gap for desktop */
  }

  /* For a clear three-column layout on desktop */
  .footer-column {
    flex-basis: calc(33.333% - 2rem); /* (100% / 3) - gap adjustment */
  }
  .footer-column--contact {
    flex-basis: calc(33.333% - 2rem);
  }
  .footer-column--links {
    flex-basis: calc(33.333% - 2rem);
  }
  .footer-column--about {
    flex-basis: calc(33.333% - 2rem);
  }

  .footer-heading {
    font-size: 2rem;
  }
}

/* Booking Modal Styles */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay */
  display: none; /* Hidden by default */
  align-items: flex-end; /* Content comes from the bottom */
  justify-content: center;
  z-index: 2000; /* Above everything, including sticky header */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.booking-modal.active {
  display: flex;
  opacity: 1;
}

.booking-modal__content {
  background-color: #2e5e4e; /* Brand color */
  color: #fff;
  width: 100%;
  max-width: 700px; /* Max width for the content on larger screens */
  max-height: 90vh; /* Max 90% of viewport height */
  overflow-y: auto; /* Scroll if content is taller */
  padding: 2rem;
  padding-top: 3.5rem; /* Extra padding at the top for close button */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: "Raleway", sans-serif;
}

.booking-modal.active .booking-modal__content {
  transform: translateY(0);
}

.booking-modal__close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.booking-modal__close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.booking-modal__header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-modal__villa-name {
  font-family: "Italiana", serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1rem;
}

.booking-modal__tagline {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 0;
}

.booking-modal__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.booking-modal__section-title {
  font-family: "Quattrocento Sans", serif;
  font-size: 1.4rem;
  font-weight: 400; /* Italic is not a weight, using 400 for normal */
  color: #f5f5f0; /* Light cream color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.booking-modal__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.booking-modal__item i {
  color: #fff;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  opacity: 0.8;
}

.booking-modal__item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.booking-modal__item a:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

/* Body class to prevent scrolling when modal is open */
.modal-open {
  overflow: hidden;
}

/* Responsive adjustments for the modal content */
@media (min-width: 600px) {
  .booking-modal__details {
    flex-direction: row; /* Side-by-side layout for contact and social */
    justify-content: space-around;
  }
  .booking-modal__contact-info,
  .booking-modal__social-links {
    flex: 1;
    min-width: 250px; /* Ensure they don't get too squeezed */
  }
  .booking-modal__villa-name {
    font-size: 3rem;
  }
  .booking-modal__tagline {
    font-size: 1.1rem;
  }
  .booking-modal__section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  /* Very small screens */
  .booking-modal__content {
    padding: 1.5rem;
    padding-top: 3rem;
  }
  .booking-modal__villa-name {
    font-size: 2rem;
  }
  .booking-modal__tagline {
    font-size: 0.9rem;
  }
  .booking-modal__section-title {
    font-size: 1.2rem;
  }
  .booking-modal__item {
    font-size: 0.9rem;
  }
  .booking-modal__item i {
    font-size: 1rem;
  }
  .booking-modal__close-btn {
    font-size: 2rem;
    top: 0.75rem;
    right: 1rem;
  }
}

.floating-book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2e5e4e;
  color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-book-btn i {
  font-size: 30px;
}

.floating-book-btn:hover {
  transform: scale(1.1);
  background-color: #234a3d;
}

.floating-book-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 400px) {
  .floating-book-btn {
    width: 50px;
    height: 50px;
  }
  .floating-book-btn i {
    font-size: 25px;
  }
}

/* === Global Animations & Transitions (Slower Durations) === */

/* --- Fade-in Animation --- */
.animate-fade-in {
  opacity: 0;
  transition: opacity 1.8s ease-out; /* Slowed down from 1s */
}

.animate-fade-in.is-visible {
  opacity: 1;
}

/* --- Slide-up Animation --- */
.animate-slide-up {
  opacity: 0;
  transform: translateY(70px); /* Slightly increased distance for slower feel */
  /* Slowed down from 0.8s, adjusted cubic-bezier for a smoother, less aggressive bounce with longer duration */
  transition: opacity 1.5s ease-out,
    transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Slide-in from Left Animation --- */
.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-100px); /* Slightly increased distance */
  /* Slowed down from 0.8s */
  transition: opacity 1.5s ease-out,
    transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Slide-in from Right Animation --- */
.animate-slide-in-right {
  opacity: 0;
  transform: translateX(100px); /* Slightly increased distance */
  /* Slowed down from 0.8s */
  transition: opacity 1.5s ease-out,
    transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Subtle Scale-up on Hover --- */
.interaction-scale-up-hover {
  transition: transform 0.5s ease-in-out; /* Slowed down from 0.35s for a gentler hover */
}

.interaction-scale-up-hover:hover {
  transform: scale(1.03);
}

/* --- Button Press Effect --- */
/* This is intended to be quick for responsiveness, so minor or no change here is often best. */
.interaction-button-press {
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

.interaction-button-press:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* --- General utility for smoother transitions on elements that might change --- */
.smooth-transition {
  transition: all 0.4s ease-in-out; /* Slightly slowed down from 0.3s */
  /* Be careful with 'all', it can be resource-intensive. Specify properties if possible. */
}
