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

/*body*/
body {
  background-color: #e5d5d5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/*navbar*/
nav {
    background-color: white;
    justify-content: space-between;
    display: flex;
    padding: 1rem 2rem;

/*tambahan dari chat gpt agar posisi navbar tidak bergeser saat scrol*/
    position: fixed;  /*bikin tetap */
    top: 0;           /* nempel atas */
    left: 0;          
    width: 100%;      /* penuh lebar */
    z-index: 1000;    /* supaya di atas elemen lain */    
}

nav div img {
    width: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    color: #191919;
    font-weight: 600;
    padding: 8px 0;
    transition: all;
    transition-duration: 300ms;
    border-bottom: 1px solid rgba(255, 68, 0, 0);
}

nav ul li a:hover {
    border-bottom: 1px solid orangered;
    color: orangered;
}

/*menu icon*/
.menu-icon {
    font-size: 28px;
    display: none;
    
}

/*beranda*/

p {
  text-align: justify;
}

/*media quaerys*/
@media only screen and (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }
    nav ul{
        /*display: none;*/
        flex-direction: column;
        width: 100%;
    }

    nav ul.hidden {
        display: none;
    }
    .menu-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    
    }

    /*tambahan agar bisa responsive di layar hp*/
    .row {
      display: flex;
      flex-direction: column;
      align-items: flex-start; /*supaya text tetap rata kiri*/
    }
    .image {
      width: 100%;
    }
    .image img {
      width: 100%;
      height: auto;
    }
    .row p {
      width: 100%;
    }

    /*footer*/
      .site-footer {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }

  .footer-left,
  .footer-center,
    .footer-right {
      justify-content: center;
      width: 100%;
    }
  }


  /*section 1*/
  /* Section beranda center semua konten */
.section-1 .container.content {
  display: flex;
  flex-direction: column;    /* tumpuk vertikal */
  align-items: center;       /* center horizontal */
  justify-content: center;   /* center vertikal dalam container */
  text-align: center;        /* center teks */
  gap: 20px;                 /* jarak antar elemen */
  padding: 40px 20px;        /* jarak dari tepi container */
}
/* Jika ingin gambar dan paragraf dalam row tetap rapi */
.section-1 .row {
  display: flex;
  flex-direction: column;    /* stack gambar & paragraf vertikal */
  align-items: center;       /* center horizontal */
  gap: 15px;                 /* jarak antara gambar & paragraf */
}

    /*milik section 2 */

  .section-2 .row {
      flex-direction: column;
      align-items: flex-start;
    }

  .section-2 .image img {
      width: 100%;
  }
  /* Section Siapa Kami center semua konten */
.section-2 .container-content-2 {
  display: flex;
  flex-direction: column;    /* tumpuk vertikal */
  align-items: center;       /* center horizontal */
  justify-content: center;   /* center vertikal */
  text-align: center;        /* teks paragraf & heading di tengah */
  gap: 20px;                 /* jarak antar elemen */
  padding: 40px 20px;
}

/* Row: gambar dan paragraf tumpuk vertikal dan center */
.section-2 .row {
  display: flex;
  flex-direction: column;    /* stack gambar & paragraf */
  align-items: center;       /* center horizontal */
  gap: 15px;                 /* jarak antara gambar dan paragraf */
}



/*kode css dari chat GPT
.section-1 {
    gap: 3px;
    align-items: center;
    display: flex;
    padding: 5px 0;
}

.content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.image img {
    width: 250px;
    padding-left: 20px;
}*/

/*perubahan*/
.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image img {
  width: 300px;
  height: auto;
}

.row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.row p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
}

.section-1 {
  background-color: #e8f5e9; /* hijau lembut */
  padding: 60px 10%;
}



/*.section-1 {
  background-color: #f3efe7; /* cream hangat */
  /*padding: 60px 10%;
}*/

.section-1 h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2e4d3f; /* hijau gelap */
 margin-top: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background-color: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #1b5e20;
}


.section-1 p {
  text-align: justify;
  line-height: 1.6;
}


/*section 2*/
/* SECTION 2 */
.section-2 {
  background-color: #f3efe7; /* warna beda sedikit biar ada variasi */
  padding: 60px 10%;
}

.section-2 .container-content-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-2 h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2e4d3f;
}

.section-2 .row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.section-2 .image img {
  width: 300px;
  height: auto;
}

.section-2 p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  text-align: justify;
}

/*section 3*/
.section-3 {
  width: 100%;
  padding: 60px 0;
  background: #f5f5f5;
  text-align: center;
}

.layanan-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* supaya turun ke bawah kalau layar kecil */
  margin-top: 30px;
  padding: 0 20px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.card {
  background: white;
  padding: 10px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
  width: 250px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  position: relative;
}

/* tombol CTA booking */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #07da2a; /* bisa ganti sesuai tema */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ff4b4b;
}


/*section 4*/
.section-4 .row {
  display: flex;              /* aktifkan flexbox */
  flex-direction: column;     /* semua item diatur vertikal */
  align-items: center;        /* posisikan horizontal di tengah */
  justify-content: center;    /* posisikan vertikal di tengah */
  text-align: center;         /* teks paragraf dan heading di tengah */
  gap: 20px;                  /* jarak antar elemen */
  padding: 20px;              /* jarak dari tepi container */
}
/* Center semua teks dalam container */
.section-4 .container-content-2 {
  text-align: center;
}

/*section 5*/
/* Section Booking center semua konten */
.section-5 .container-content-2 {
  display: flex;
  flex-direction: column;    /* tumpuk vertikal */
  align-items: center;       /* center horizontal */
  justify-content: center;   /* center vertikal */
  text-align: center;        /* teks paragraf & heading di tengah */
  gap: 20px;                 /* jarak antar elemen */
  padding: 40px 20px;
  min-height: 100vh;          /* opsional: supaya selalu berada di tengah layar */
  background-color: #e8f5e9;
}

/* Row: gambar & paragraf tumpuk vertikal dan center */
.section-5 .row {
  display: flex;
  flex-direction: column;    /* stack gambar & paragraf */
  align-items: center;       /* center horizontal */
  gap: 15px;                 /* jarak antara gambar & paragraf */
}


/* Footer utama */
.site-footer {
  display: flex;
  flex-wrap: wrap;                 /* agar tetap rapi di mobile */
  justify-content: space-between;  /* kiri, tengah, kanan */
  align-items: center;             /* vertikal center */
  background-color: #333;
  color: #fff;
  padding: 20px 20px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Bagian kiri, tengah, kanan tetap rapi */
.footer-left,
.footer-center,
.footer-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Link */
.site-footer a {
  color: #ff6b6b;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
