/* Custom CSS for Beranda Jiwa */

/* ========================================
   HEADER / NAVBAR LOGOS
   ======================================== */

/* Navbar Structure */
.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Left Logos Container */
.navbar-left-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.navbar-logo-senyawa {
  height: 35px;
  width: auto;
}

.navbar-logo-yt {
  height: 30px;
  width: auto;
}

/* Right Logo Container */
.navbar-right-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-right-logo a {
  display: flex;
  align-items: center;
}

.navbar-logo-beranda {
  height: 17px;
  width: auto;
}

/* Center Menu */
.nav-menu-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar-wrapper {
    flex-wrap: wrap;
  }

  .navbar-left-logos {
    order: 1;
    gap: 10px;
  }

  .navbar-logo-senyawa {
    height: 28px;
  }

  .navbar-logo-yt {
    height: 24px;
  }

  .navbar-right-logo {
    order: 2;
  }

  .navbar-logo-beranda {
    height: 32px;
  }

  .nav-menu-wrapper {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .menu-button {
    order: 4;
  }
}

@media (max-width: 479px) {
  .navbar-left-logos {
    gap: 8px;
  }

  .navbar-logo-senyawa {
    height: 24px;
  }

  .navbar-logo-yt {
    height: 20px;
  }

  .navbar-logo-beranda {
    height: 28px;
  }
}

/* ========================================
   SECTION CTA
   ======================================== */

/* Section CTA Container */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

/* Daftar Sekarang Button */
.btn-daftar {
  display: inline-block;
  padding: 12px 32px;
  background-color: #FF6F61;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-daftar:hover {
  background-color: #E85A4F;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none;
}

.btn-daftar:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Timeline Step Adjustments */
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Make sure there's enough space for the button */
.timeline-simple {
  gap: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .btn-daftar {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .section-cta {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .btn-daftar {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* ========================================
   STANDARDIZE home-1.png BACKGROUND
   Ensures the decorative background sits at the bottom
   with consistent visual height across sections
   ======================================== */
.hero_banner,
.selection-criteria,
.program-timeline,
.graduation-section {
  background-image: url('../images/home-1.png') !important;
  background-position: center bottom !important; /* anchor to bottom */
  background-repeat: no-repeat !important;       /* single image */
  background-size: 100% auto !important;         /* full width, keep aspect ratio */
  background-attachment: scroll !important;
}

@media (max-width: 991px) {
  .hero_banner,
  .selection-criteria,
  .program-timeline,
  .graduation-section {
    background-size: 100% auto !important;
  }
}

@media (max-width: 479px) {
  .hero_banner,
  .selection-criteria,
  .program-timeline,
  .graduation-section {
    background-size: 100% auto !important;
  }
}
