body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive;
  background-image: url('../img/pertama.jpg');
  background-size: contain;
}

.top-left-menu {
    position: absolute; /* Menaruh elemen bebas di mana saja */
    top: 40px;          /* Jarak dari atas */
    left: 30px;         /* Jarak dari kiri */
    z-index: 1000;      /* Agar tombol berada di lapisan paling atas */
}

.btn-login {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(244, 159, 102); /* Warna oranye agar senada dengan tombol kanan */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;      /* Membuat tombol lonjong/rounded */
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-login:hover {
    background-color: #e67e00;
    transform: scale(1.05); /* Efek sedikit membesar saat diarahkan mouse */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84vh;
  padding: 50px;
}

/* Kiri */
.left h1 {
  color: rgb(30, 31, 22);
  font-size: 78px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 5px;
  left: 50%;
}

.wave {
  width: 100px;
  height: 10px;
  background: rgb(0, 0, 0);
  border-radius: 20px;
  margin-top: 10px;
}

/* Kanan */
.right {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  margin-right: 350px;
}

.right button {
    width: 250px;
    padding: 30px;
    border-radius: 50px;
}


button {
  background: rgb(244, 159, 102);
  border: none;
  padding: 20px 40px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 2px 4px 0px rgba(0,0,0,0.2);
  transition: 0.2s;
  font-weight: bold;
}

button:hover {
  transform: scale(1.05);
}
/* SECTION VISI MISI */
.visi-misi {
  background-image: url('../img/kedua.jpg'); 
  background-size: cover;
  padding: 80px;
}

.vm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vm-left h1 {
  font-size: 60px;
  margin-bottom: 20px;
  margin-left: 100px;
  margin-top: -100px;
}

.vm-left img {
  width: 500px;
  margin-left: 50px;
  margin-top: 30px;
}

.vm-right {
  max-width: 550px;
}

.vm-right h3 {
  margin-top: 20px;
  font-size: 20px;
}

.vm-right p {
  font-size: 16.5px;
  line-height: 3.1;
}

/* --- Styling Bagian Profil PAUD Baru --- */
.profil-paud {
    padding: 60px 10%;
    background-image: url("../img/ketiga.jpg"); 
    background-size: cover;
    text-align: center;
}

.paud-header {
    margin-bottom: 40px;
}

.paud-header h1 {
    font-size: 28px;
    color: #2d5a4c;
    margin-bottom: 10px;
}

.paud-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Supaya responsif di HP */
}

.paud-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

/* Bingkai Kayu / Frame sesuai gambar */
.paud-frame {
    border: 15px solid #b58d67; /* Warna cokelat bingkai kayu */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    height: 300px; /* Tinggi disamakan */
    background: #fff;
}

.paud-frame img, 
.paud-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.paud-card h3 {
    margin-top: 20px;
    color: #2d5a4c;
    font-size: 1.2rem;
}

.paud-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}


