
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1e4356; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #68a4c4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #68a4c4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #68a4c4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e4356;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #284e62;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1e4356;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0,5s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color); 
    font-weight: bold;   /* Teks menjadi tebal saat hover */
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .logo .sitename {
    font-size: 20px !important; /* Mengatur ukuran font menjadi 12px */
    line-height: 1.2; /* Menyesuaikan tinggi baris agar proporsional */
    font-weight: bold; /* Opsional: Menonjolkan teks */
    margin: 0; /* Opsional: Menghapus margin tambahan */
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #ddebeb;
}

.footer-section.about {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.footer-section.about p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section.about img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-section.about img:hover {
  transform: scale(1.1);
}

.footer-section.contact {
  width: 100%;
  text-align: center;
  margin-top: -30px;
  padding-bottom: 20px;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section p {
  margin: 0 0 15px 0;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 10px;
}

.footer-bottom {
  background-color: #ecf0f5;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.footer-section.contact a {
  color: #05080b;
  text-decoration: none;
}

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


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  background-color: transparent;
  background-color: #ddebeb;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(to right, color-mix(in srgb, var(--background-color), transparent 90%), var(--background-color)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: #1e4356 !important;
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
  display: block;
}

.hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: fadeInDown 1s both 0.2s;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--default-color);
  animation: fadeInUp 1s both 0.4s;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.hero .carousel-indicators {
  bottom: -60px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.3;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (min-width: 1024px) {
  .hero p {
    width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px),
(max-height: 700px) {
  .hero h2 {
    font-size: 28px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-us {
  display: flex;
  gap: 20px; 
  padding: 40px;
  margin-top: 0px; 
  height: 100vh; /* Menyesuaikan tinggi agar lebih proporsional */
  background-color: #ddebeb; 
  width: 100%; 
  box-sizing: border-box; 
  align-items: center; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.text-content {
  flex: 1 1 45%; 
  min-width: 300px; 
  padding: 10px; 
  margin: 0; 
  max-width: 800px; /* Membatasi lebar maksimum untuk agar lebih fokus */
}

.text-content h2 {
  color: #006769;
  font-size: 2.5rem; 
  margin-bottom: 10px;
  line-height: 1.2; /* Menambahkan line-height untuk keterbacaan */
  margin-top: 0px;
}

.text-content h3 {
  font-size: 2rem; 
  margin-top: 0; /* Mengurangi margin atas untuk lebih rapat dengan h2 */
  margin-bottom: 10px; /* Mengurangi margin bawah agar lebih kompak */
  font-weight: bold;
}

.text-content p {
  text-align: justify;  /* Menyusun teks rata kanan-kiri */
  margin-bottom:10px;  /* Memberikan jarak antar paragraf */
  line-height: 2;  /* Mengurangi jarak antar baris untuk membuat teks lebih rapat */
  font-size: 1.2rem;  /* Ukuran font sedikit lebih kecil untuk kenyamanan membaca */
  max-width: 750px;  /* Membatasi lebar paragraf agar lebih fokus */
  margin-left: auto;  /* Menyenterkan teks secara horizontal */
  margin-right: auto; /* Menyenterkan teks secara horizontal */
  letter-spacing: -0.5px; /* Mengurangi jarak antar huruf agar lebih rapat */
}

.btn-booklet {
  display: inline-block;
  background: #006769; 
  color: #ffffff; 
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.image-content {
  flex: 1 1 45%; 
  display: flex;
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.image-content video {
  width: 100%; 
  max-width: 48%; 
  height: auto; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 768px) {
  .about-us {
    display: flex;
    flex-direction: column; /* Teks dan video dalam satu kolom untuk HP */
    gap: 20px; /* Jarak antar elemen */
    padding: 20px; /* Mengurangi padding untuk layar kecil */
    height: auto; /* Tinggi menyesuaikan konten */
  }

  .text-content {
    flex: 1; /* Memanfaatkan seluruh ruang untuk teks */
    text-align: left; /* Teks rata kiri */
    margin: 0 auto 20px; /* Margin bawah untuk pemisahan dengan video */
    padding: 10px; /* Mengurangi padding untuk layar kecil */
    font-size: 1rem; /* Ukuran font lebih kecil untuk layar kecil */
  }

  .text-content h2 {
    font-size: 1.8rem; /* Ukuran font lebih kecil */
    margin-bottom: 10px;
  }

  .text-content h3 {
    font-size: 1.5rem; /* Ukuran font lebih kecil */
    margin-bottom: 8px;
  }

  .text-content p {
    font-size: 0.9rem; /* Ukuran font lebih kecil untuk layar kecil */
    line-height: 1.8; /* Jarak antar baris lebih kecil */
    max-width: 100%; /* Paragraf menggunakan lebar penuh */
    margin: 0; /* Menghapus margin kiri-kanan */
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .image-content {
    display: flex;
    justify-content: center; /* Video diatur ke tengah */
    flex: 1; /* Memanfaatkan ruang tersisa untuk video */
    padding: 10px; /* Mengurangi padding untuk layar kecil */
  }

  .image-content video {
    width: 40%; /* Lebar video lebih kecil untuk layar kecil */
    max-width: 200px; /* Batas lebar maksimum video */
    height: auto;
    border-radius: 8px; /* Sedikit membulatkan sudut video */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s ease;
  }
  
  .visible {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.8s ease forwards;
  }
}





/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.advantages {
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
}

.advantages h2 {
  font-size: 2rem;
  margin: 20px 0 80px;
  color: #333;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: top -10px;
}

.advantage-item {
  text-align: center;
  max-width: 260px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.advantage-item img {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.advantage-item:hover img {
  transform: scale(1.1);
}

.advantage-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.advantage-item p {
  font-size: 14px;
  color: #666;
}



.top-destinations {
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.destinations-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.destination-item {
  position: relative;
  width: 32%;
  background-color: #ddebeb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.destination-item img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.destination-item:hover img {
  transform: scale(1);
}

.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  font-weight: bold;
  color: #0A3981;
  border-radius: 5px;
}

.destination-item h3 {
  color: #006769;
  font-size: 20px;
  margin: 15px;
}

.destination-item h4 {
  font-size: 20px;
  margin: 15px;
}

.destination-item p {
  font-size: 14px;
  margin: 0 15px 15px 15px;
  color: #666;
}

.cta {
  background-color: #006769;
  color: white;
  padding: 30px;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: 35px;
  margin-bottom: 20px;
}

.cta h4 {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 10px 0;
  max-width: 90%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  padding: 30px 20px; /* Padding internal untuk memberikan ruang pada konten */
  background-color: #f9f9f9; /* Warna latar belakang gallery */
  text-align: center; /* Teks diatur ke tengah */
  margin-top: 40px; /* Jarak atas untuk menghindari tumpukan dengan section atas */
  margin-bottom: 40px; /* Jarak bawah untuk menghindari tumpukan dengan section bawah */
  height: auto; /* Hapus tinggi tetap (100vh) agar sesuai dengan konten */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery h2 {
  font-size: 2.5rem; /* Ukuran font untuk judul */
  font-weight: 700; /* Tebal font */
  margin-bottom: 30px; /* Jarak bawah antara judul dan grid */
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 kolom */
  gap: 20px; /* Jarak antar item dalam grid */
  max-width: 1200px; /* Batas lebar grid */
  margin: 0 auto; /* Grid dipusatkan */
}

.gallery-item {
  overflow: hidden; /* Potong bagian gambar yang melampaui kotak */
  border-radius: 10px; /* Sudut kotak membulat */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan halus */
  background-color: #f9f9f9;
}

.gallery-item img {
  width: 100%; /* Gambar memenuhi lebar kotak */
  height: auto; /* Tinggi gambar otomatis */
  transition: transform 0.3s ease; /* Animasi pada hover */
}

.gallery-item:hover img {
  transform: scale(1.1); /* Zoom gambar saat di-hover */
}

/* Media Query untuk Tampilan HP */
@media (max-width: 768px) {
  .gallery {
    margin-top: 30px; /* Jarak atas untuk mode HP */
    margin-bottom: 30px; /* Jarak bawah untuk mode HP */
    padding: 20px; /* Padding lebih kecil untuk layar kecil */
  }

  .gallery h2 {
    font-size: 1.8rem; /* Ukuran font lebih kecil untuk layar kecil */
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk layar kecil */
    gap: 15px; /* Jarak antar item lebih kecil */
  }
}


.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #ddebeb;
}

.footer-section.about {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.footer-section.about p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section.about img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-section.about img:hover {
  transform: scale(1.1);
}

.footer-section.contact {
  width: 100%;
  text-align: center;
  margin-top: -30px;
  padding-bottom: 20px;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section p {
  margin: 0 0 15px 0;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 10px;
}

.footer-bottom {
  background-color: #ecf0f5;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.footer-section.contact a {
  color: #05080b;
  text-decoration: none;
}

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

.footer p,
.footer a,
.footer h3,
.footer h4,
.footer-section p,
.footer-section a,
.footer-section h3,
.footer-section h4 {
  color: #000; /* Mengubah warna font menjadi hitam */
}

@media (max-width: 768px) {
  /* Top Destinations Section */
  .top-destinations {
      padding: 20px; /* Mengurangi padding untuk tampilan lebih rapi */
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
  }

  .destinations-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk layar kecil */
      gap: 15px; /* Jarak antar item lebih konsisten */
      margin-top: 20px; /* Menambahkan jarak atas untuk pemisahan */
  }

  .destination-item {
      position: relative;
      width: 100%;
      background-color: #ddebeb;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 15px; /* Jarak antar item */
  }

  .destination-item:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .destination-item img {
      width: 100%;
      height: auto;
      border-bottom: 1px solid #ddd;
      transition: transform 0.3s ease;
  }

  .destination-item img:active {
      transform: scale(1.1); 
  }

  .destination-item:hover img {
      transform: scale(1);
  }

  .price-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 5px 10px;
      font-weight: bold;
      color: #0A3981;
      border-radius: 5px;
  }

  .destination-item h3,
  .destination-item h4 {
      color: #006769;
      font-size: 18px; /* Menyesuaikan font untuk layar kecil */
      margin: 10px; /* Mengurangi margin untuk proporsi lebih baik */
  }

  .destination-item p {
      font-size: 14px;
      margin: 10px;
      color: #666;
  }

  /* CTA Section */
  .cta {
      background-color: #006769;
      color: white;
      padding: 20px; /* Mengurangi padding untuk layar kecil */
      text-align: center;
      margin-top: 20px; /* Memberikan jarak antar section */
  }

  .cta h2 {
      margin: 0;
      font-size: 28px; /* Ukuran font lebih kecil untuk layar kecil */
      margin-bottom: 15px;
  }

  .cta h4 {
      font-size: 14px; /* Ukuran font lebih kecil */
      line-height: 1.4;
      margin: 0 auto 10px;
      max-width: 90%;
  }

  /* Gallery Section */
  .gallery {
      padding: 20px; /* Menambahkan padding untuk jarak internal */
      margin-top: 30px; /* Memberikan jarak atas untuk pemisahan */
      margin-bottom: 30px; /* Memberikan jarak bawah untuk pemisahan */
      background-color: #f9f9f9; /* Memberikan latar belakang untuk kontras */
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 2 kolom untuk layar kecil */
      gap: 15px; /* Jarak antar item */
      margin-top: 20px !important; /* Menambahkan jarak antar konten dalam gallery */
  }

  .gallery h2 {
      font-size: 28px; /* Ukuran font lebih kecil untuk judul */
      font-weight: 700;
      margin-bottom: 15px; /* Memberikan jarak antara judul dan grid */
      color: #333;
  }
}

