/* ======= RESET DASAR ======= */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  }


/*====== AGAR CAD RESPONSIF TIDAK BERANTAKAN KETIKA DI MINIMIZE ======*/
.container {
  max-width: 95%; /* Atur agar tidak terlalu lebar */
}
.brand-logo {
  margin-left: 40px;
  margin-right: auto;
}

nav ul {
  padding-right: 40px; /* Memberikan jarak dengan sisi kanan */
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.card-content p {
  font-size: 14px; /* Pastikan teks tidak terlalu besar di HP */
}



/*===== AGAR KARTU TERLIHAT RAPI ====*/
  /* Mengatur kartu agar ukuran seragam */
  .card p {
    font-size: 18px; /* Ubah ukuran teks di dalam card */
    color: #333; /* Opsional: Warna teks */
}


  .card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center; /* Biar kontennya lebih rapi */
}

/* Menyesuaikan ukuran gambar dalam kartu */
.card-image img {
    height: 400px; /* Sesuaikan tinggi gambar */
    object-fit: cover;
}

/* Membuat tombol sejajar dan rapi */
.card-action a {
    color: #0d47a1;
    font-weight: bold;
    text-transform: uppercase;
}

/* Menyesuaikan tata letak responsif */
@media (max-width: 768px) {
    .col.s12.m3 {
        width: 50%; /* 2 card per baris di tablet */
    }
}

@media (max-width: 480px) {
    .col.s12.m3 {
        width: 100%; /* 1 card per baris di HP */
    }
}





/* ======= NAVBAR FIXED AGAR TETAP DI ATAS ======= */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Memberi ruang agar konten tidak tertutup navbar */
main {
  margin-top: 70px;
}

/* ======= LOGO & TEKS AGAR TIDAK KETUTUP ======= */
.center img {
  margin-top: 80px;
}

/* ======= RESPONSIF KONTEN ======= */
.about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about .col {
  flex: 1 1 300px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .about .row {
    flex-direction: column;
    align-items: center;
  }
  .about .col {
    width: 90%;
    max-width: 400px;
  }
}

/* ======= STYLE BOOK NOW ======= */
.booknow {
  background-color: #0d47a1;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 30px;
}

.booknow a {
  color: #ffeb3b;
  font-weight: bold;
  text-decoration: none;
}

.booknow a:hover {
  text-decoration: underline;
}

/* ======= STYLE BUTTON ======= */
.button, .contact-button {
  background-color: #4CAF50;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover, .contact-button:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

/* ======= FOOTER ======= */
.footer {
  text-align: center;
  padding: 20px;
}

/* ======= TEKS RAPI ======= */
p {
  font-size: 18px;
}

.text-container {
  text-align: justify;
}

.text-container p {
  max-width: 800px;
}

/* ======= STYLE LINK ======= */
a {
  text-decoration: none;
}

.green-text:hover {
  color: rgb(46, 46, 46);
  text-decoration: underline;
}

/* Menghilangkan garis atau border pada elemen koleksi */
ul.collection, .collection-item {
  list-style: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* ======= SIDENAV ======= */
.sidenav li a {
  color: black !important;
}


  .see-more-button {
    background-color: #4da6ff;
    color: white;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .see-more-button:hover {
    background-color: #3399ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  }