/* =========================
FILE : about-style.css
========================= */


/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Body utama */
body {
    font-family: Arial, sans-serif;
    color: #222;

    background-image: url("background1.png");

    /* Agar gambar menyesuaikan layar */
    background-size: cover;

    /* Posisi gambar di tengah */
    background-position: center;

    /* Agar background tidak berulang */
    background-repeat: no-repeat;

    /* Agar background tetap saat discroll */
    background-attachment: fixed;
}


/* =========================
SECTION UTAMA
========================= */
.about-page {
    width: 100%;
    min-height: 100vh;
    padding: 30px 70px 60px;
}


/* =========================
NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}


/* =========================
LOGO AREA
========================= */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Ukuran logo */
.logo-box img {
    width: 65px;
    height: auto;
}


/* Text logo */
.logo-text h3 {
    color: #288fd7;
    font-size: 22px;
    line-height: 1.2;
}


/* =========================
MENU AREA
========================= */
.menu-area {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* Semua tombol menu */
.btn-active,
.btn-outline,
.btn-dark {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: bold;
    font-size: 17px;
}


/* Tombol aktif */
.btn-active {
    background: #288fd7;
    color: white;
    border: 2px solid #288fd7;
}


/* Tombol outline */
.btn-outline {
    border: 2px solid #288fd7;
    color: #288fd7;
    background: white;
}


/* Tombol gelap */
.btn-dark {
    background: #084671;
    color: white;
}


/* Ukuran icon tombol */
.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


/* =========================
TOP CONTENT
========================= */
.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}


/* Gambar kiri */
.left-image {
    width: 42%;
}

.left-image img {
    width: 100%;
    height: auto;
}


/* Konten kanan */
.right-content {
    width: 55%;
}

.right-content h1 {
    font-size: 64px;
    color: #288fd7;
    margin-bottom: 20px;
}


/* =========================
SEMUA BOX
========================= */
.content-box {
    background: white;
    border: 2px solid #288fd7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.content-box h3 {
    color: #288fd7;
    margin-bottom: 15px;
    font-size: 28px;
}

.content-box p {
    font-size: 22px;
    line-height: 1.7;
}

.content-box li{
    font-size: 22px;
    line-height: 1.7;
}

/* Box besar atas */
.large-box {
    min-height: 200px;
}


/* =========================
DUA BOX TENGAH
========================= */
.middle-boxes {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.small-box {
    width: 50%;
    min-height: 280px;
}


/* =========================
BOX PANJANG BAWAH
========================= */
.bottom-box {
    margin-bottom: 60px;
}

.full-box {
    width: 100%;
    min-height: 250px;
}


/* =========================
MOTIVATION TEXT
Font & isi silakan ganti sendiri
========================= */
.motivation {
    text-align: center;
    margin-bottom: 60px;
}

.motivation p {
    font-size: 28px;

    /* Ganti font-family sesuai keinginan */
    font-family: 'Nickainley', cursive;
}


/* =========================
PROFILE SECTION
========================= */
.developer-profile {
    text-align: center;
    margin-bottom: 70px;
}

.developer-profile h3 {
    color: #288fd7;
    font-size: 32px;
    margin-bottom: 30px;
}


/* Placeholder foto */
.profile-photo {
    margin-bottom: 20px;
}

.profile-photo img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
}

.developer-profile h4 {
    font-size: 30px;
    color: #288fd7;
    margin-bottom: 15px;
}

.developer-profile p {
    font-size: 24px;
}


/* =========================
BUTTON KEMBALI
========================= */
.back-button-section {
    display: flex;
    justify-content: flex-end;
}


/* Tombol kembali */
.btn-back {
    background: #084671;
    color: white;
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 28px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: bold;
}


/* Icon kembali */
.back-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* =========================
EFEK HOVER UNTUK SEMUA BUTTON
Tambahkan di bagian paling bawah CSS
========================= */


/* =========================
HOVER TOMBOL AKTIF
Tentang Program
========================= */
.btn-active:hover {
    background: #1f7fc2;
    border-color: #1f7fc2;
    transform: translateY(-2px);
    transition: 0.3s;
}


/* =========================
HOVER TOMBOL OUTLINE
Panduan
========================= */
.btn-outline:hover {
    background: #288fd7;
    color: white;
    transform: translateY(-2px);
    transition: 0.3s;
}

/* Agar icon ikut terlihat bagus saat hover */
.btn-outline:hover .btn-icon {
    filter: brightness(0) invert(1);
}


/* =========================
HOVER TOMBOL GELAP
Mulai
========================= */
.btn-dark:hover {
    background: #063553;
    transform: translateY(-2px);
    transition: 0.3s;
}


/* =========================
HOVER BUTTON KEMBALI
========================= */
.btn-back:hover {
    background: #063553;
    transform: translateY(-2px);
    transition: 0.3s;
}


/* =========================
HOVER BOX CONTENT
Efek box sedikit naik
========================= */
.content-box:hover {
    transform: translateY(-4px);
    transition: 0.3s;
    box-shadow: 0 18px 30px rgba(0,0,0,0.18);
}


/* =========================
HOVER FOTO PROFILE
========================= */
.profile-photo img:hover {
    transform: scale(1.03);
    transition: 0.3s;
}


/* =========================
Agar transisi halus default
========================= */
.btn-active,
.btn-outline,
.btn-dark,
.btn-back,
.content-box,
.profile-photo img {
    transition: 0.3s ease;
}

/* =========================
WARNA KHUSUS UNTUK TEXT TERTENTU
========================= */

.highlight-text {
    color: #288fd7;
    font-weight: 500; /* opsional */
}

