/* HEADER CONTENT WRAPPER */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  transform: translateY(-9vh);
}

/* LOGO CONTAINER */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO IMAGE */
.header-logo img {
  width: 140px;          /* main size */
  height: auto;
  display: block;

  /* improves visibility over photo background */
  filter:
    drop-shadow(0 6px 14px rgba(0,0,0,0.35))
    drop-shadow(0 2px 4px rgba(0,0,0,0.25));

  /* smooth scaling */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* subtle hover effect (optional) */
.header-logo img:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .header-logo img {
    width: 100px;
  }
}

/* =================================
   ABOUT PAGE
================================= */

.about-section {
  padding: 40px 0;
  background:rgba(231, 231, 231, 0.85);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text,
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-text {
    width: 100%;
  }
}


/* =================================
   WRAPPER
================================= */

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =================================
   AMENITIES GRID (2x2)
================================= */

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

/* image wrapper keeps 4:3 ratio */
.grid-2x2 .img-box {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

/* image fills box and crops */
.grid-2x2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* KEY LINE */
  transition: transform 0.3s ease;
}

.grid-2x2 img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .grid-2x2 {
    grid-template-columns: 1fr;
  }
}


/* =================================
   AMENITIES GRID (5x1)
================================= */

.grid-5x1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.grid-5x1 .img-box {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.grid-5x1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-5x1 img:hover {
  transform: scale(1.05);
}


/* =================================
   ACTIVITIES GRID (3x2)
================================= */

.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.grid-3x2 .img-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.grid-3x2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-3x2 img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .grid-3x2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid-3x2 {
    grid-template-columns: 1fr;
  }
}

/* =================================
   LOCATION PAGE
================================= */

.location-image,
.location-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
}



/* =================================
   PRICES PAGE
================================= */

.price-table {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.price-row-header {
  background: #d1a64a;
  font-weight: 600;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 14px;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid #e5e5e5;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:first-child {
  background: #d1a64a;
  color: white;
  font-weight: 600;
}



/* =================================
   CONTACT PAGE
================================= */

.contact-info {
  margin-bottom: 25px;
}

.contact-info a {
  color: #3d3d3d;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 80%;
  padding: 10px;
  margin: 6px 0 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-form button {
  margin-top: 10px;
}