/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin:0;
  padding:0;
}

body {
  font-family: 'Poppins', sans-serif;
  background:#f8f8f8;
  color:#222;
  line-height:1.6;
}

img {
  max-width:100%;
  display:block;
}

/* Container */
.container {
  width:90%;
  max-width:1100px;
  margin:0 auto;
}

/* ================= HEADER / NAVBAR ================= */
.site-header {
  position:sticky;
  top:0;
  z-index:999;
  background:#0c5433;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}

.logo-wrap {
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-img {
  height:40px;
}

.logo-text {
  display:flex;
  flex-direction:column;
  color:#fff;
}

.logo-title {
  font-weight:700;
  font-size:20px;
  letter-spacing:0.5px;
}

.logo-subtitle {
  font-size:12px;
  opacity:0.85;
}

/* Nav */
.nav {
  display:flex;
}

.nav ul {
  list-style:none;
  display:flex;
  gap:20px;
}

.nav a {
  color:#fefefe;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  padding:6px 4px;
  border-bottom:2px solid transparent;
}

.nav a:hover,
.nav a.active {
  border-bottom-color:#f4b122;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
}

/* ================= HERO ================= */
.hero {
  position:relative;
  min-height:80vh;
  display:flex;
  align-items:center;
  background:url('../img/homepage.jpg') center/cover no-repeat;
}

.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
}

.hero-content {
  position:relative;
  color:#fff;
  padding:80px 0 60px;
}

.hero-tagline {
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:10px;
  color:#f4b122;
}

.hero h1 {
  font-size:42px;
  max-width:600px;
  margin-bottom:15px;
}

.hero-text {
  font-size:17px;
  max-width:520px;
  margin-bottom:25px;
}

.hero-buttons {
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

/* Buttons */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 22px;
  border-radius:999px;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary {
  background:#f4b122;
  color:#222;
  border-color:#f4b122;
}

.btn-primary:hover {
  background:#ffcf50;
}

.btn-outline {
  background:transparent;
  color:#fff;
  border-color:#fff;
}

.btn-outline:hover {
  background:rgba(255,255,255,0.1);
}

/* ================= SECTIONS ================= */
.section {
  padding:70px 0;
}

.section-alt {
  background:#f3f5f3;
}

.section-title {
  text-align:center;
  font-size:28px;
  margin-bottom:15px;
  color:#0c5433;
}

.section-intro {
  text-align:center;
  max-width:780px;
  margin:0 auto 35px;
  font-size:16px;
  color:#555;
}

/* ================= FEATURES ================= */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:20px;
}

.feature {
  background:#fff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  text-align:center;
}

.feature-icon {
  font-size:28px;
  color:#f4b122;
  margin-bottom:10px;
}

/* ================= CARDS / ROOMS ================= */
.card-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:25px;
}

.card {
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.07);
  display:flex;
  flex-direction:column;
}

.card-img {
  width:100%;
  height:200px;
  object-fit:cover;
}

.card-body {
  padding:18px 18px 20px;
}

.card-body h3 {
  font-size:18px;
  margin-bottom:8px;
  color:#0c5433;
}

.card-body p {
  font-size:14px;
  margin-bottom:10px;
}

.card-list {
  list-style:disc;
  padding-left:18px;
  font-size:14px;
  color:#444;
}

.included-box {
  margin-top:30px;
  background:#fff;
  border-radius:14px;
  padding:18px 20px;
  border-left:4px solid #0c5433;
}

.included-box h3 {
  margin-bottom:8px;
}

.included-box ul {
  list-style:disc;
  padding-left:18px;
  font-size:14px;
}

/* Places mini cards */
.card-grid-places .mini-card {
  padding:18px 18px 20px;
}

.card-grid-places h3 {
  margin-bottom:6px;
}

/* ================= BOOKING FORM ================= */
.booking-grid {
  display:grid;
  grid-template-columns:2fr 1.2fr;
  gap:25px;
}

.booking-form {
  background:#fff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 12px 35px rgba(0,0,0,0.07);
}

.form-row {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.form-group {
  flex:1 1 200px;
  display:flex;
  flex-direction:column;
  margin-bottom:15px;
}

.form-group label {
  font-size:14px;
  margin-bottom:4px;
  color:#333;
}

.form-group input,
.form-group textarea {
  border:1px solid #ccc;
  border-radius:8px;
  padding:8px 10px;
  font-size:14px;
  font-family:inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline:none;
  border-color:#0c5433;
}

.full-width {
  width:100%;
  margin-top:5px;
}

.small-note {
  font-size:12px;
  color:#777;
  margin-top:8px;
}

.booking-info {
  background:#0c5433;
  color:#fff;
  border-radius:14px;
  padding:20px;
}

.booking-info h3 {
  margin-bottom:10px;
}

.booking-info ul {
  list-style:disc;
  padding-left:18px;
  font-size:14px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background:#e3eee9;
}

.contact-container {
  display:grid;
  grid-template-columns:1.4fr 1.3fr;
  gap:25px;
}

.contact-details p {
  margin-bottom:6px;
}

.contact-phones p {
  display:flex;
  align-items:center;
  gap:8px;
}

.contact-phones i {
  color:#0c5433;
}

.contact-map iframe {
  border:0;
  width:100%;
  height:260px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

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

/* ================= GALLERY PAGE ================= */
.gallery-page .section-title {
  margin-top:20px;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:15px;
}

.gallery-item {
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform:translateY(-4px);
  box-shadow:0 16px 35px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.88);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.lightbox-img {
  max-width:90%;
  max-height:80%;
  border-radius:10px;
}

.lightbox-close {
  position:absolute;
  top:20px;
  right:25px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position:fixed;
  bottom:18px;
  right:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  z-index:1500;
}

/* ================= FOOTER ================= */
.site-footer {
  background:#082d1c;
  color:#eee;
  padding:15px 0;
}

.footer-inner {
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:center;
  text-align:center;
  font-size:13px;
}

.footer-credit a {
  color:#f4b122;
  text-decoration:none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .booking-grid,
  .contact-container {
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap:10px;
  }

  .nav-toggle {
    display:block;
  }

  .nav {
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:#0c5433;
    display:none;
  }

  .nav.open {
    display:block;
  }

  .nav ul {
    flex-direction:column;
    padding:10px 0;
    gap:0;
  }

  .nav li {
    padding:6px 0;
    text-align:center;
  }

  .hero {
    min-height:70vh;
  }

  .hero h1 {
    font-size:30px;
  }

  .hero-text {
    font-size:15px;
  }
  /* Places cards with images */
.card-grid-places .place-card {
  padding:0;              /* because we are using card-img + card-body */
}

.place-img {
  width:100%;
  height:180px;
  object-fit:cover;
}

.card-grid-places .card-body {
  padding:16px 16px 18px;
}

}
