body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #dbdbdb;
}
html {
  scroll-behavior: smooth;
}

.navbar-nav me-auto mb-2 mb-lg-0 {
  text-align: center;
}

/* Hero Section */
.hero {
  background: url("img/hero.png") no-repeat center center/cover;
  height: 100vh;
  color: rgb(2, 2, 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-content {
  background-color: rgba(255, 248, 248, 0.7);
  padding: 20px;
  border-radius: 8px;
}
.hero h1 {
  font-size: 3rem;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.hero p {
  font-size: 1.5rem;
  margin: 10px 0;
  margin-bottom: 40px;
  color: #202020;
  font-family: "Times New Roman", Times, serif;
}
.cta-button {
  background-color: #2c743e;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #0fc536;
}
/* end hero section */

/* About Section */
.about-section1 {
  padding: 50px;
  background-color: #f4f4f4;
  text-align: center;
}
.about-section1 h2 {
  font-size: 45px;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 20px;
  color: #030303;
}
.about-section1 p {
  font-size: 1.7rem;
  line-height: 1.9;
  font-family: Arial, Helvetica, sans-serif;
}
/* end about */

/* Villa Profile Section */
.villa-profile {
  background-color: #fff;
  padding: 50px 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
  border-radius: 10px;
}

.profile-header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-header h1 {
  font-size: 45px;
  color: #2c3e50;
  font-family: "Times New Roman", Times, serif;
}

.profile-header .tagline {
  font-size: 18px;
  color: #7f8c8d;
}

.profile-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    padding: 0;
  }

  .text-content h2 {
    font-size: 24px;
  }

  .text-content p {
    font-size: 14px;
  }
}
/* end profil section */

.video-section {
  margin-bottom: 40px;
  text-align: center;
}

.video-section h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

/* Media Query untuk layar lebih kecil */
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 1.5em;
  }
}

/* Media Query untuk layar lebih kecil dari ponsel */
@media (max-width: 480px) {
  .video-section h2 {
    font-size: 1.2em;
  }
}

/* denah */
.main-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header {
  text-align: center;
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 30px;
  color: #057634;
  margin: 0;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.page-header p {
  font-size: 1.2em;
  color: #666;
  margin: 10px 0;
}

.denah-section {
  width: 100%;
  text-align: center;
}

.denah-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.denah-wrapper img {
  width: 50%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.denah-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.denah-description {
  width: 40%;
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.denah-description h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.denah-description ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.denah-description ul li {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.denah-description ul li::before {
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 5px;
}

@media (max-width: 768px) {
  .denah-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .denah-wrapper img,
  .denah-description {
    width: 100%;
  }
}
/* end denah */

/* Facilities Section */
.facilities-section {
  padding: 50px;
  background-color: #537053;
  text-align: center;
}
.facilities-section h2 {
  font-size: 30px;
  margin-bottom: 35px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.facility {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.facility img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.facility h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.facility p {
  font-size: 1.4rem;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
}
.facility:hover {
  transform: scale(1.03);
}
/* Responsiveness */
@media (max-width: 768px) {
  .facility {
    flex: 1 1 45%; /* Item menjadi 45% pada layar sedang */
  }
}

@media (max-width: 450px) {
  .facility {
    flex: 1 1 100%; /* Item menjadi 100% pada layar kecil */
  }
}
/* end fasilitas */

/* spesifikasi */
.spec-item h3 i {
  margin-right: 8px; /* Memberi jarak antara ikon dan teks */
  color: #444; /* Warna ikon */
  font-size: 1.2em; /* Ukuran ikon */
}

section#about {
  background-image: url(img/hero.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;
  padding: 20px;
  text-align: center;
}

section#about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section#about h2 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #057634;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.spec-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 300px; /* Flex basis dan growth */
  max-width: 300px;
}

.spec-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.spec-item p {
  font-size: 1.4rem;
  color: #555;
}

/* Responsif */
@media (max-width: 768px) {
  .spec-item {
    flex: 1 1 100%; /* Mengatur agar item mengisi lebar penuh pada layar kecil */
    max-width: 100%;
  }
}
/*end spesifikasi*/

/* pricee */
#pricing {
  padding: 50px 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  width: 80%;
  max-width: 600px;
  background-color: #f6a40069;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.pricing-item h4 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-item p {
  font-size: 1.5em;
  color: #03882f;
  font-weight: bold;
  margin-bottom: 30px;
}

.pricing-item button {
  background-color: #03882f;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pricing-item button:hover {
  background-color: #00b348;
}

/* promosi */
.cta {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
}

.cta h2 {
  font-size: 1.8em;
  color: #333;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.cta p {
  font-size: 1.2em;
  color: #666;
}
/* end promosi */

/* Contact Section */
/* Style umum untuk bagian kontak */
.contact-section {
  padding: 60px 20px;
  background-color: #373535; /* Warna latar belakang yang lembut */
}
.contact-section h2 {
  text-align: center;
  font-size: 45px;
  font-family: "Times New Roman", Times, serif;
  color: #fbfbfb;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.contact-section h2 {
  margin-bottom: 30px;
  font-size: 2.5em;
  /* Pastikan judul berada di tengah secara proporsional */
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin-top: 3px; /* Jarak antara judul dan card */
}

.contact-info {
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 550px; /* Ukuran card lebih kecil */
  text-align: center; /* Pusatkan teks dalam card */
  margin: 0 auto; /* Pastikan card berada di tengah */
}

.contact-info h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #007bff;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-icons a {
  margin: 0 10px;
  font-size: 1.5em;
  color: #000;
}

.map-container {
  width: 100%;
  max-width: 600px;
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.contact-info {
  flex: 1;
  margin-top: 21px;
}

.map-container {
  flex: 1;
}

.contact-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem; /* Ukuran ikon */
}

.contact-icons a {
  color: #444; /* Warna ikon */
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #007bff; /* Warna ikon saat dihover */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-container {
  margin-top: 20px;
  text-align: center;
}

.map-container iframe {
  width: 500px;
  height: 200px; /* Sesuaikan tinggi sesuai kebutuhan */
  border: 0;
  border-radius: 8px;
}

/* Responsif untuk layar kecil */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .map-container iframe {
    height: 250px; /* Sesuaikan tinggi peta di layar kecil */
    width: 350px;
  }
}

@media screen and (max-width: 480px) {
  .contact-section h2 {
    font-size: 25;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 25px;
  }

  .contact-info p {
    font-size: 1.3rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 0.875rem;
  }
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #222;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85em;
  color: #ddd;
}

.footer-bottom .brand-name {
  font-weight: bold;
  color: #00bfa5;
}

.footer-bottom i {
  color: #e74c3c;
  margin-left: 5px;
}

.footer-bottom a {
  color: #00bfa5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Responsiveness */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
