/* Google Font Import Link */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
}
/* navbar styling */
nav {
  position: fixed;
  width: 100%;
  padding: 10px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: "Ubuntu", sans-serif;
  background-image: url(../img/backgorund-tosca.webp);
}
nav.sticky {
  padding: 5px 0;
}
nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
nav .navbar .logo a {
  font-weight: 500;
  font-size: 35px;
  color: #fff;
}
nav.sticky .navbar .logo a {
  color: #fff;
}
nav .navbar .menu {
  display: flex;
  position: relative;
}
nav .navbar .menu li {
  list-style: none;
  margin: 0 8px;
}
.navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 6px 0;
  transition: all 0.4s ease;
}
.navbar .menu a:hover {
  color: #4070f4;
}
nav.sticky .menu a:hover {
  color: #0e2431;
}
.navbar .media-icons a {
  color: #fff;
  font-size: 20px;
  margin: 0 6px;
}
nav.sticky .media-icons a {
  color: #fff;
}
/* Side Navigation Menu Button CSS */
nav .menu-btn,
.navbar .menu .cancel-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
nav .menu-btn {
  color: #fff;
}
.navbar .menu .menu-btn {
  color: #fff;
}
@media (max-width: 750px) {
  nav .navbar {
    width: 90%;
  }
  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: #0e2431;
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
  }
  .navbar.active .menu {
    left: 0;
  }
  nav .navbar .menu a {
    font-size: 23px;
    display: block;
    color: #fff;
    margin: 10px 0;
  }
  nav.sticky .menu a:hover {
    color: #4070f4;
  }
  nav .navbar .media-icons {
    display: none;
  }
  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: block;
  }
}
/*-----------------------------------*\
    #hero jannah firdaus
\*-----------------------------------*/
.homepage {
  width: 100%;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url("../img/Paket-Umroh-Agustus-Jannah-Firdaus.jpeg");
  background-position: center 65%;
  background-size: cover;
}

.homepage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.content img {
  width: 10rem;
  height: auto;
  object-fit: cover;
  margin-top: 6rem;
}

.content h1 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: yellow;
}

.h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  color: white;
}
.neon-button {
  position: relative;
  margin: 2rem;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 30px;
  background: green;
}
.neon-button:hover {
  color: #0aff9d;
  background-color: green;
  box-shadow: 0 0 10px #0aff9d, 0 0 10px #0aff9d;
}
.card-p {
  display: flex;
  justify-content: center; /* Tengah horizontal */
  align-items: center; /* Tengah vertikal */
}
.card {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0;
  padding: 10px;
}

.card img {
  width: 100px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0px;
  padding-right: 5px;
}

.title {
  padding-bottom: 5px;
  color: #333;
  font-weight: bold;
  text-align: left;
  font-size: 18px;
}

.description {
  color: #555;
  padding-bottom: 5px;
  text-align: left;
  font-size: 15px;
}
@media (max-width: 480px) {
  .content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: yellow;
  }

  .h1 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    color: white;
  }
  .card img {
    width: 80px;
    height: auto;
  }

  .title {
    font-size: 15px;
  }

  .description {
    font-size: 13px;
  }
  .foto-kiri {
    display: none;
  }
}
/* About Section Container */
.about-section {
  background-color: #ffffff;
  padding: 2rem 1rem;
  margin: 1rem 0;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Headings */
.about-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #444;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-section h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #555;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

.about-section h5 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.about-section h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paragraphs */
.about-section p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Lists */
.about-section ul {
  list-style-type: disc;
  margin-left: 2rem;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-section ul li {
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2rem;
  }
  .about-section h2 {
    font-size: 1.8rem;
  }
  .about-section h3 {
    font-size: 1.4rem;
  }
  .about-section h4 {
    font-size: 1.2rem;
  }
  .about-section h5 {
    font-size: 1,1rem;
  }
  .about-section h6 {
    font-size: 1,1rem;
  }
  .about-section p {
    font-size: 1rem;
  }
  .about-section ul {
    margin-left: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-section h1 {
    font-size: 1.6rem;
  }
  .about-section h2 {
    font-size: 1.4rem;
  }
  .about-section h3 {
    font-size: 1.2rem;
  }
  .about-section h4 {
    font-size: 1.1rem;
  }
  .about-section h5 {
    font-size: 1rem;
  }
  .about-section h6 {
    font-size: 1rem;
  }
  .about-section p {
    font-size: 1rem;
  }
  .about-section ul {
    margin-left: 1rem;
  }
}
footer {
  width: 100%;
  background: #333;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 10px;
}

footer .fl-container {
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

footer p,
footer a {
  color: #fff;
  font-size: clamp(16px, 2vw, 18px); /* ditambah 2px */
  text-decoration: none;
}

footer a:hover {
  color: #eb2f06;
}

footer .fl-box {
  flex: 1 1 250px;
  min-width: 250px;
}

.fl-heading {
  font-size: clamp(20px, 2.5vw, 24px); /* ditambah 2px */
  font-weight: 600;
  margin-bottom: 16px;
}

footer p {
  text-align: justify;
}

.fl-contact .fl-heading {
  margin-top: 24px;
}

.fl-contact i {
  padding-right: 10px;
}

.fl-services a {
  display: block;
  line-height: 1.8;
}

.fl-subscribe-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  border: 2px solid #222;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.fl-subscribe-image img:hover {
  border-color: #eb2f06;
  opacity: 0.9;
  cursor: pointer;
}

.fl-social {
  margin-top: 10px;
  margin-bottom: 0;
}

.fl-social a {
  display: inline-block;
  font-size: 18px; /* ditambah 2px */
  height: 40px;
  width: 40px;
  line-height: 38px;
  border: 2px solid #222;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.fl-social a:hover {
  border-color: #eb2f06;
}

.fl-bottom {
  width: 100%;
  text-align: center;
  padding: 5px 10px;
  font-size: 16px; /* ditambah 2px */
  color: #aaa;
  margin-top: 5px;
}

.fl-bottom a {
  color: #eb2f06;
}

/* Responsive adjustments */
@media (max-width: 950px) {
  footer .fl-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  footer .fl-box {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 10px 15px 5px 15px;
  }

  footer .fl-container {
    gap: 10px;
  }

  .fl-bottom {
    font-size: 14px; /* ditambah 2px dari sebelumnya 12px */
    margin-top: 5px;
    padding: 3px 5px;
  }

  .fl-heading {
    font-size: 19px; /* ditambah 2px dari sebelumnya 17px */
  }

  .fl-social a {
    height: 36px;
    width: 36px;
    line-height: 34px;
    font-size: 16px; /* ditambah 2px dari sebelumnya 14px */
  }
}

.contact-widget {
  position: fixed;
  bottom: 1px;
  right: 1px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Tetapkan ke kanan */
}

.contact-widget a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Pastikan isi <a> ke kanan */
}

.contact-image {
  width: 70px;
  height: auto;
  cursor: pointer;
  align-self: flex-end; /* Ini opsional, mempertegas posisi kanan */
}

.contact-text {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: green;
  padding: 3px 6px;
  border-radius: 5px;
  margin-top: -10px;
  align-self: flex-end; /* Pastikan teks juga rata kanan */
}
