/*
Theme Name: Fake Templates
Theme URI: https://qira.io/bursa777login
Author: Roki Kagura
Author URI: https://admintampan.com
Description: Tema WordPress Landing Page Percobaan untuk hajar keyword keyword besar, Semangat team SEO!!
Version: 1.0
License: GNU General Public License v2
Text Domain: faketemplates
*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 40px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.topbar a {
  margin-left: 10px;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
}

.topbar a i {
  margin-right: 5px;
}

/* Header Utama */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.header img {
  height: 100px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.nav a:hover {
  color: #000;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  /* overlay gelap biar teks jelas */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 60px;
  margin: 0;
  text-shadow: 0px 0px 10px black;
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
  text-shadow: 0px 0px 10px black;
}

.about {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

.about-text {
  flex: 1;
  background-color: #d6dce8;
  /* abu muda */
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0a1633;
}

.about-text a {
  text-decoration: none;
  color: #0a1633;
}

.about-text a:hover {
  text-decoration: underline;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
  color: #0a1633;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.models {
  background: rgb(4, 28, 68);
  color: #d6dce8;
  padding: 20px 0 50px;
}

.models h2,
.models p {
  text-align: center;
}

.dept-section {
  padding: 48px 5px;
  /* biar ada sedikit padding kiri kanan */
  display: grid;
  gap: 28px;
}

.dept-card {
  width: 100%;
  max-width: 1400px;
  /* lebar maksimum lebih besar dari sebelumnya */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  /* bagi dua proporsional */
  min-height: 320px;
  /* kasih tinggi minimum supaya terlihat besar */
  background: #f6f7f9;
  border: 1px solid #e5e8ef;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.dept-info {
  padding: 56px 48px;
  /* lebih lega supaya info center dan tidak terlalu sempit */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.dept-info h3 {
  margin: 0 0 10px;
  font-size: 22px;
  /* sedikit lebih besar */
  letter-spacing: 0.04em;
  color: #9fb0cf;
  font-weight: 700;
}

.dept-meta {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1c2430;
}

.dept-desc {
  margin: 0 0 16px;
  font-size: 15px;
  color: #1c2430;
}

.dept-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  color: #9fb0cf;
  border: 1px solid #dfe6f2;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dept-cta:hover {
  background: #eaf0fb;
}

.amenidades {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.amenidades-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #b7bdd0;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.amenidades-title p {
  font-size: 16px;
  color: #9aa0b2;
  margin: 0 0 40px;
}

/* Grid Layout */
.amenidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

/* Card */
.amenidad-card {
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenidad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Bagian gambar */
.amenidad-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Bagian info */
.amenidad-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* text selalu di tengah secara vertikal */
  padding: 28px 20px;
  text-align: center;
  color: #fff;
}

.amenidad-info h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.amenidad-info p {
  font-size: 14px;
  margin: 0;
}

/* Variasi warna */
.amenidad-info.dark {
  background: #0a2342;
}

.amenidad-info.mid {
  background: #6f7f9b;
}

.amenidad-info.light {
  background: #8f9cb4;
}

.cotizacion {
  background: rgb(249, 251, 251);
  padding: 60px 20px 100px;
  text-align: center;
}

.cotizacion-container {
  max-width: 700px;
  margin: 0 auto;
}

.cotizacion-img img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cotizacion h2 {
  font-size: 28px;
  font-weight: 700;
  color: #8a98ad;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}

.cotizacion p {
  color: #2c3642;
  font-size: 15px;
  margin: 0 0 30px;
}

/* Form Style */
.cotizacion-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-group {
  flex: 1 1 100%;
}

.form-group.half {
  flex: 1 1 calc(50% - 8px);
}

.cotizacion-form input,
.cotizacion-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #6f7f9b;
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  color: #1c2430;
  outline: none;
}

.cotizacion-form textarea {
  resize: none;
}

/* Tombol */
.btn-enviar {
  margin: 24px auto 0;
  display: inline-block;
  background: #486284;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-enviar:hover {
  background: #334b66;
  transform: translateY(-2px);
}

/* Bagian Peta */
.footer-map img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 300px;
}

/* Konten Footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 40px 5%;
  flex-wrap: wrap;
}

.footer-left p {
  font-size: 16px;
  color: #1c2430;
  margin: 0;
}

.footer-right {
  max-width: 400px;
  width: 100%;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-form label {
  font-size: 14px;
  font-weight: 600;
  color: #1c2430;
}

.footer-input-group {
  display: flex;
  border-bottom: 1px solid #1c2430;
}

.footer-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 6px 8px;
  background: transparent;
}

.footer-input-group button {
  background: #0a2342;
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-input-group button:hover {
  background: #0d2e5a;
}

/* Bottom Bar */
.footer-bottom {
  background: #0a2342;
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 12px 0;
  letter-spacing: 0.3px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Responsif */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    max-width: 100%;
  }

  .footer-input-group {
    width: 100%;
  }
}

/* Responsif */
@media (max-width: 960px) {
  .dept-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dept-img {
    height: 260px;
    /* tinggi gambar fix ketika 1 kolom */
  }

  .dept-info {
    padding: 32px 24px;
  }

  .amenidades-grid {
    grid-template-columns: 1fr;
  }

  .amenidad-img img {
    height: 200px;
  }
}

@media (max-width: 520px) {
  .header {
    display: block;
    text-align: center;
	background: #fff;
  }

  .nav {
    justify-content: space-around;
  }

  .dept-img {
    height: 200px;
  }

  .dept-info h3 {
    font-size: 18px;
  }

  .dept-meta,
  .dept-desc {
    font-size: 13px;
  }

  .form-group.half {
    flex: 1 1 100%;
  }
}
