.tentang-page {
    position: relative;

    padding: 20px 20px 60px;

    /* BACKGROUND PATTERN */
    background-image: url("/static/img/full_background.png");
    background-repeat: repeat;
    background-size: contain;

    overflow: hidden;
}

.tentang-page::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.85) 0%,   /* atas blur */
        rgba(255,255,255,0.4) 20%,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,0.4) 80%,
        rgba(255,255,255,0.85) 100%  /* bawah blur */
    );

    pointer-events: none;
    z-index: 1;
}

.tentang-page > * {
    position: relative;
    z-index: 2;
}

.tentang-hero {
    text-align: center;

    padding: 10px 20px 40px;
}

/* LOGO DOODLE */
.hero-logo {
    width: 400px;
    margin :0 auto 10px;
    display: block;
}

/* TEXT GOLD */
.hero-subtitle {
    color: #b08d3c;
    font-size: 20px;
    margin-bottom: 25px;
}

/* WRAP GAMBAR */
.hero-image-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* GAMBAR OVAL */
.hero-image {
    width: 420px;
    border-radius: 50% / 60%;
    object-fit: cover;
}

.tentang-hero h1 {
    font-size: 42px;
    color: #e91e63;
    margin-bottom: 10px;
}

.tentang-hero .subtitle {
    color: #b08d3c;
    font-size: 18px;
}

.tentang-content {
    max-width: 900px;
    margin: auto;
}

.tentang-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    color: #e91e63;
    font-size: 18px;
}

.closing {
    font-weight: 600;
    color: #333;
}

.divider {
    width: 60px;
    height: 3px;
    background: #e91e63;
    margin: 40px auto;
    border-radius: 10px;
}

/* =========================
   CTA BUTTON SECTION
========================= */

.tentang-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 80px;
    margin: 80px auto 60px;
    max-width: 900px;
}

/* BUTTON OUTLINE (EMAS) */
.cta-outline {
    padding: 14px 32px;
    border-radius: 40px;
    border: 2px solid #b08d3c;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.cta-outline:hover {
    background: #b08d3c;
    color: #fff;
}

/* BUTTON PRIMARY (PINK) */
.cta-primary {
    padding: 14px 32px;
    border-radius: 40px;
    background: #ff3b7c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.cta-primary:hover {
    background: #e62e6c;
}


/* =========================
   RESPONSIVE SYSTEM
========================= */

/* ===== TABLET (<= 1024px) ===== */
@media (max-width: 1024px) {

    .tentang-page {
        padding: 40px 20px;
    }

    .hero-logo {
        width: 300px;
    }

    .hero-image {
        width: 320px;
    }

    .tentang-content {
        max-width: 700px;
    }

    .tentang-content p {
        font-size: 15px;
    }

    .tentang-cta {
        gap: 25px 60px;
    }
}


/* ===== MOBILE (<= 768px) ===== */
@media (max-width: 768px) {

    .tentang-page {
        padding: 30px 15px;
    }

    .tentang-hero {
        padding: 0 10px 30px;
    }

    .hero-logo {
        width: 220px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-image {
        width: 260px;
    }

    .tentang-content {
        margin-top: 30px;
        padding: 0 10px;
    }

    .tentang-content p {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }

    /* CTA jadi 1 kolom */
    .tentang-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 50px auto;
    }

    .cta-outline,
    .cta-primary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


/* ===== SMALL MOBILE (<= 480px) ===== */
@media (max-width: 480px) {

    .hero-logo {
        width: 180px;
    }

    .hero-image {
        width: 220px;
    }

    .tentang-content p {
        font-size: 13.5px;
    }

    .cta-outline,
    .cta-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
}
