/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #2e7d32;
  z-index: 9999;
  animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header & Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #2e7d32;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  font-weight: bold;
}

.logo-img {
  height: 60px;
  width: auto;
}

.menu-toggle {
  display: none;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  background-color: #66bb6a;
  border-radius: 20px;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: bold;
}

nav ul li a:hover {
  background-color: #43a047;
  color: #e8f5e9;
  transform: scale(1.05);
}

.whatsapp-btn {
  display: none;
  background: #25d366;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  margin-left: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("images/hero.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3em;
}

.hero .cta-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero .cta-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #66bb6a;
  z-index: -1;
  transition: width 0.4s ease;
}

.hero .cta-btn:hover::before {
  width: 100%;
}

.hero .cta-btn:hover {
  color: #2e7d32;
  font-weight: bold;
}

/* Section Styling */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section:nth-child(even) {
  background-color: #e8f5e9;
}

.section:nth-child(odd) {
  background-color: #c8e6c9;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #388e3c;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #388e3c;
  margin: 10px auto 20px;
  border-radius: 2px;
}

/* Admission Section */
.admission-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(to right, #c8e6c9, #e8f5e9);
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.admission-info,
.admission-form {
  flex: 1 1 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admission-info:hover,
.admission-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.admission-info h3,
.admission-form h3 {
  color: #2e7d32;
  font-size: 1.5em;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

.admission-info h3::after,
.admission-form h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #388e3c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.admission-info ul {
  padding-left: 20px;
  list-style: disc;
  line-height: 1.7;
  color: #555;
}

.admission-info ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.admission-form p {
  font-size: 1.05em;
  color: #444;
  line-height: 1.6;
}

.admission-form .cta-btn {
  background-color: #388e3c;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s;
}

.admission-form .cta-btn:hover {
  background-color: #66bb6a;
  transform: scale(1.05);
}

/* Program Grid */
#program ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

#program ul li {
  background: #e8f5e9;
  border-left: 5px solid #388e3c;
  padding: 15px 20px;
  border-radius: 8px;
  color: #333;
  text-align: left;
  font-weight: bold;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#program ul li:hover {
  transform: scale(1.03);
  background: #c8e6c9;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.comparison-item {
  background: #e8f5e9;
  border-left: 5px solid #388e3c;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-5px);
}

.comparison-item h4 {
  margin-bottom: 10px;
  color: #2e7d32;
}

/* Footer */
footer {
  background: #2e7d32;
  color: #e8f5e9;
  text-align: center;
  padding: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fab-img {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.fab-img:hover {
  transform: scale(1.1);
}

.fab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 50px;
  }

  nav ul li a {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
    background-position: center top;
    background-size: cover;
  }

  .hero h1 {
    font-size: 1.8em;
    line-height: 1.4;
  }

  .hero .cta-btn {
    font-size: 1em;
    padding: 10px 20px;
    margin-top: 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    z-index: 1001;
    cursor: pointer;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2e7d32;
    padding: 10px 20px;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav ul li {
    margin: 10px 0;
  }

  .whatsapp-btn {
    display: none;
    margin-top: 10px;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
  }

  nav.active .whatsapp-btn {
    display: block;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .fab-img {
    width: 45px;
    height: 45px;
  }
}

.profile-section {
  background: #e8f5e9;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.2em;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.7;
}

.profile-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.profile-box {
  background: white;
  border-left: 5px solid #66bb6a;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.profile-box h3 {
  color: #2e7d32;
  font-size: 1.4em;
  margin-bottom: 15px;
  border-bottom: 2px solid #c8e6c9;
  padding-bottom: 8px;
}

.profile-box p,
.profile-box ul {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

.profile-box ul {
  padding-left: 20px;
  list-style: disc;
}

.profile-box ul {
  list-style: none; /* Hapus titik hitam */
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Jarak antar item */
}

.profile-box ul li {
  position: relative;
  padding-left: 25px;
  color: #444;
  font-size: 1em;
  line-height: 1.6;
}

.profile-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #66bb6a;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.7em;
  }

  .section-subtitle {
    font-size: 1em;
    padding: 0 15px;
  }

  .profile-columns {
    gap: 20px;
  }

  .profile-box {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .floating-contact {
    display: none;
  }
}

/*program.html*/
/*program.html*/
/*program.html*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f4f6f8;
  color: #333;
}

.main-header {
  background-color: #2e7d32;
  padding: 20px 30px;
  text-align: center;
  color: white;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2e7d32;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #66bb6a;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.program-card h2 {
  margin-top: 0;
  color: #388e3c;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.program-card p {
  line-height: 1.7;
  font-size: 1em;
  color: #555;
}

.footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.95em;
  letter-spacing: 1px;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .section-title {
    font-size: 2em;
  }
  .program-card {
    padding: 20px;
  }
}

.icon-program {
  font-size: 2.5em;
  color: #2e7d32;
  margin-bottom: 15px;
}

.program-card {
  background: linear-gradient(to bottom right, #ffffff, #f0fff4);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.program-card h2 {
  color: #2e7d32;
  margin: 10px 0;
  font-size: 1.4em;
}

.program-card p {
  color: #555;
  line-height: 1.6;
  font-size: 1em;
}

.section-title {
  font-size: 2.5em;
  color: #2e7d32;
  margin-bottom: 40px;
  text-align: center;
}

/* admission.html*/
/* admission.html*/
/* admission.html*/
/* Hero Admission */
.admission-hero {
  background: linear-gradient(to right, #c8e6c9, #e8f5e9);
  padding: 80px 20px;
  text-align: center;
  color: #2e7d32;
}

.admission-hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.admission-hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

/* Admission Section */
.admission-section {
  background: #f4f6f8;
  padding: 60px 20px;
}

.admission-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.admission-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.admission-box:hover {
  transform: translateY(-5px);
}

.admission-box h2 {
  color: #2e7d32;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.admission-box ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
}

.admission-box ul li::before {
  content: "✔";
  color: #66bb6a;
  margin-right: 10px;
  font-weight: bold;
}

.admission-box ul li {
  margin-bottom: 12px;
  font-size: 1.05em;
  color: #555;
}

.admission-box p {
  font-size: 1.1em;
  color: #555;
}

.cta-btn {
  display: inline-block;
  background-color: #388e3c;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.2s;
}

.cta-btn:hover {
  background-color: #66bb6a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .admission-hero h1 {
    font-size: 2em;
  }
  .admission-hero p {
    font-size: 1em;
  }
}

/*gallery*/
/*gallery*/
/*gallery*/
.gallery-hero {
  background: linear-gradient(to right, #c8e6c9, #e8f5e9);
  padding: 80px 20px;
  text-align: center;
  color: #2e7d32;
}

.gallery-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.gallery-hero p {
  font-size: 1.1em;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Gallery Grid */
.gallery-section {
  background: #f9fdf9;
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*contact*/
/*contact*/
/*contact*/
.contact-hero {
  background: linear-gradient(to right, #c8e6c9, #e8f5e9);
  padding: 80px 20px;
  text-align: center;
  color: #2e7d32;
}

.contact-hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1em;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Kontak Section */
.contact-section {
  padding: 60px 20px;
  background-color: #f9fdf9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.contact-info h2 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 15px 0;
  font-size: 1.05em;
  color: #444;
}

.contact-info i {
  margin-right: 10px;
  color: #388e3c;
}

.contact-info a {
  color: #388e3c;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/*profile.html*/
/*profile.html*/
/*profile.html*/
.hero-profile {
  background: linear-gradient(to right, #e8f5e9, #c8e6c9);
  padding: 100px 20px;
  text-align: center;
  color: #2e7d32;
}

.hero-profile h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-profile p {
  font-size: 1.2em;
  max-width: 750px;
  margin: 0 auto;
  color: #444;
}

.section-profile {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-profile.alt {
  background-color: #f9fdf9;
}

.profile-section-box {
  max-width: 800px;
  margin: auto;
}

.icon-profile {
  font-size: 2.8em;
  color: #388e3c;
  margin-bottom: 15px;
}

.profile-section-box h2 {
  color: #2e7d32;
  margin-bottom: 15px;
}

.profile-section-box p {
  color: #444;
  font-size: 1.1em;
  line-height: 1.8;
}

.profile-section-box ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.05em;
  color: #555;
}

.profile-section-box ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.profile-section-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #66bb6a;
  font-weight: bold;
}
