* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body Background */
body {
  background-image: url(images);
  background-size: cover;
  background-attachment: fixed;
  /* background-color: #f4f4f9; */
  color: #333;
  background-color: #ffffff;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgb(255, 255, 255); Dark overlay */
  z-index: -1; /* Behind everything */
}

/* Header */

.new-header{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  background-color: #1a2203;
  padding: 15px;
}
.tilel-paket {
  font-size: 2.5rem !important;
  /* color: #2e7d32; */
  color: #ffffff;
  text-align: center;
  animation: fadeInDown 1s ease;
  text-align: center;
  padding: 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header {
  background: rgb(245, 245, 245);
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  padding: 10px 20px;
  /* position: sticky; */
  top: 0;
  z-index: 90;
}
.icons i{
  font-size: 24px;
  color: #db9e30;
  margin-right: 10px;
}
.logo_mab {
  padding: 10px;
  width: 200px !important;
  transition: transform 0.3s ease;
}

.logo_mab:hover {
  transform: scale(1.05);
}

.img-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
}

.Btn_Contact {
  background: #db9e30;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Btn_Contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  #db9e30
}

/* Title and Buttons Section */
.titleAndButtons {
  text-align: center;
  margin: 40px 0;
}




.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-paket {
  background-color: #d6b606;
  border: none;
  padding: 12px 24px;
  font-size: 19px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-paket::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  /* background: rgba(255, 255, 255, 0.3); */
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.5s ease;
  z-index: 0;
}

.btn-paket:hover::before {
  width: 0;
  height: 0;
}

.btn-paket span {
  position: relative;
  z-index: 1;
}

.btn-paket:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Cards Section */
/* umrohbulanini */

.sold-out {
  position: relative;
  opacity: 0.6; /* Make the card look unavailable */
  pointer-events: none; /* Disable interactions */
}

.sold-out::after {
  content: "SOLD OUT";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.sold-out .bookNow {
  background: gray !important;
  cursor: not-allowed;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  width: 25%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
}

.stars {
  color: #FFD700;
  font-size: 14px;
  margin-bottom: 5px;
}

.card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
}

.info {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.info i {
  color: #4CAF50;
  margin-right: 8px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #ff5722;
  margin-top: 20px;
}

.card button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #d6b606;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.card {
  display: none; /* Hide all by default */
}

.card.show {
  display: block; /* Show only filtered items */
}
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buttons_daftar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Adds space between buttons */
  margin: 20px auto; /* Centers the container */
  width: 100%; /* Ensures the container takes full width */
}

.daftar-btn {
  font-size: 18px; /* Default font size for mobile */
  width: 90%; /* Takes 90% of the parent width */
  max-width: 700px; /* Limits the maximum width */
  padding: 10px 20px; /* Adds padding for better touch targets */
  margin-bottom: 10px; /* Adds space between buttons */
  margin-left: 0; /* Resets the negative margin */
  border-radius: 25px; /* Rounded corners */
  background-color: #d6b606; /* Button background color */
  color: rgb(255, 255, 255); /* Button text color */
  border: none; /* Removes default border */
  cursor: pointer; /* Changes cursor to pointer on hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.daftar-btn:hover {
  transform: translateY(-3px); /* Slight lift on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}
/* footer */
/* Footer Styles */
.footer {
  background: #141414f2;
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ff9800;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff9800;
}

.footer-section ul li i {
  margin-right: 10px;
  color: #ff9800;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff9800;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}


/* Responsive Styles */
@media screen and (max-width: 768px) {

  .img-button {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo_mab {
    width: 100px;
  }

  .icons i {
    font-size: 18px;
  }

  .Btn_Contact {
    padding: 6px 12px;
    font-size: 12px;
  }

  .tilel-paket {
    font-size: 1.5rem;
  }

  .buttons {
    gap: 10px;
  }

  .btn-paket {
    padding: 6px 12px;
    font-size: 12px;
  }

  .card {
    width: 40%;
    
  }

  .card h2 {
    font-size: 14px;
  }

  .info {
    font-size: 11px;
  }

  .price {
    font-size: 14px;
  }

  .card button {
    font-size: 12px;
  }

  .daftar-btn {
    font-size: 20px;
  }

  .footer-section {
    font-size: 14px;
  }
}

@media (max-width: 576px) , (min-width:470px) {


  .img-button {
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .logo_mab {
    width: 100px;
  }

  .icons i {
    font-size: 16px;
  }

  .Btn_Contact {
    padding: 5px 10px;
    font-size: 11px;
  }

  .tilel-paket {
    font-size: 30px !important;
  }

  .buttons {
    gap: 8px;
  }

  .btn-paket {
    padding: 20px;
    font-size: 25px;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }

  .card h2 {
    font-size: 20px;
  }
  .card p {
    font-size: 18px;
  }

  .info {
    font-size: 10px;
  }

  .price {
    font-size: 30px;
  }

  .card button {
    font-size: 20px;
  }

  .daftar-btn {
    font-size: 25px;
  }

  .footer-section {
    font-size: 12px;
  }
}

@media (max-width: 450px)  {
   .new-header{
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 20px;
   }


  .logo_mab {
    width: 200px;
  }

  .icons i {
    font-size: 16px;
  }



  .tilel-paket {
    font-size: 1.4rem;
  }

  .buttons {
    gap: 8px;
  }

  .btn-paket {
    padding: 20px;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    width: 300px;
    flex-grow: 1;
  }
  .buttons{
    padding: 10px;
  }

  .card {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .card h2 {
    font-size: 30px;
  }
  .card p {
    font-size: 17px;
  }

  .info {
    font-size: 10px;
  }

  .price {
    font-size: 30px;
  }

  .card button {
    font-size: 20px;
  }

  .daftar-btn {
    font-size: 25px;
  }

  .footer-section {
    font-size: 12px;
  }

}
   

/* Footer Font Size Adjustment */
.footer-section {
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer-section {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .footer-section {
    font-size: 10px;
  }
}
}

@media (hover: none) {
  .btn-paket:active {
    background-color: #007bff;
    color: white;
    transform: scale(0.95);
  }
}
body{
  -webkit-tap-highlight-color: transparent; /* منع التأثير الافتراضي للموبايل */
}