/* =========================
   DASAR WEBSITE
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fff9fc;
    color: #4a3b46;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   NAVBAR
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 252, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3dce9;
}

.navbar {
    max-width: 1100px;
    margin: auto;
    padding: 18px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #b56b91;
}

.logo span {
    color: #9b7bc4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: #665563;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #b56b91;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding: 130px 10% 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    background:
        radial-gradient(circle at 10% 20%, #fce3ef 0, transparent 25%),
        radial-gradient(circle at 90% 80%, #e9def8 0, transparent 25%);
}

.hero-text {
    max-width: 650px;
    animation: fadeUp 1s ease;
}

.small-title {
    color: #b56b91;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 80px);
    line-height: 1.05;
    color: #4c3c47;
}

.hero h1 span {
    display: block;
    color: #b56b91;
}

.hero h2 {
    margin: 25px 0 15px;
    font-size: 20px;
    font-weight: 600;
    color: #80627a;
}

.hero-text > p:not(.small-title) {
    max-width: 550px;
    color: #766572;
}

.button {
    display: inline-block;
    margin-top: 30px;
    padding: 13px 25px;

    border-radius: 30px;
    background: linear-gradient(135deg, #d58aad, #9f83c8);
    color: white;

    font-weight: 700;
    box-shadow: 0 10px 25px rgba(181, 107, 145, 0.25);

    transition: 0.3s;
}

.button:hover {
    transform: translateY(-4px);
}


/* =========================
   FOTO PROFIL
========================= */

.hero-card {
    width: 280px;
    padding: 35px 25px;
    text-align: center;

    border-radius: 35px;
    background: rgba(255, 255, 255, 0.75);

    box-shadow: 0 20px 50px rgba(140, 100, 130, 0.15);

    animation: floating 4s ease-in-out infinite;
}

.profile-photo {
    width: 140px;
    height: 140px;

    margin: auto auto 20px;

    border-radius: 50%;
    overflow: hidden;

    background: linear-gradient(135deg, #f7d7e7, #e5daf5);

    box-shadow: 0 10px 25px rgba(140, 100, 130, 0.15);
}

.profile-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.hero-card h3 {
    color: #9d5f83;
    font-size: 23px;
}

.hero-card p {
    color: #806f7a;
}


/* =========================
   MOTTO
========================= */

.quote {
    padding: 60px 20px;
    background: #fff;
}

.quote-box {
    max-width: 800px;
    margin: auto;
    padding: 40px;

    text-align: center;

    background: #fff5fa;
    border: 1px solid #f2d9e7;
    border-radius: 30px;
}

.quote-box span {
    font-size: 60px;
    color: #d48cad;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
}

.quote-box small {
    display: block;
    margin-top: 15px;
    color: #9b7bc4;
}


/* =========================
   SECTION
========================= */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 100px 25px;
}

.soft-section {
    max-width: none;
    padding-left: max(25px, calc((100% - 1100px) / 2));
    padding-right: max(25px, calc((100% - 1100px) / 2));
    background: #fdf3f8;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: #a979a0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.section-title h2 {
    margin-top: 5px;
    font-size: 40px;
    color: #4d3c48;
}


/* =========================
   ABOUT
========================= */

.about-content {
    max-width: 850px;
    margin: auto;
}

.about-card {
    padding: 40px;

    background: white;
    border-radius: 30px;

    box-shadow: 0 15px 40px rgba(130, 90, 120, 0.1);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-card h3 {
    color: #b56b91;
    font-size: 25px;
    margin-bottom: 15px;
}

.about-card p {
    margin-bottom: 15px;
    color: #6e6069;
}


/* =========================
   CARDS
========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    padding: 30px 20px;

    background: white;
    border: 1px solid #f0dce7;
    border-radius: 25px;

    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(160, 100, 140, 0.15);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    color: #a65f86;
    margin-bottom: 10px;
}

.card p {
    color: #746670;
    font-size: 14px;
}


/* =========================
   TIMELINE
========================= */

.timeline {
    max-width: 850px;
    margin: auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-icon {
    min-width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #f7dce9;

    font-size: 24px;
}

.timeline-content {
    padding: 25px;

    flex: 1;

    background: white;
    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(120, 90, 110, 0.08);
}

.timeline-content h3 {
    color: #a45e83;
    margin-bottom: 8px;
}


/* =========================
   MASA DEPAN
========================= */

.future-intro {
    max-width: 750px;
    margin: -20px auto 40px;

    text-align: center;
    color: #71636d;
}

.future-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.future-card {
    padding: 30px;
    text-align: center;

    background: white;
    border-radius: 25px;

    transition: 0.3s;
}

.future-card:hover {
    transform: scale(1.03);
}

.future-card span {
    font-size: 45px;
}

.future-card h3 {
    margin: 15px 0 10px;
    color: #a45e83;
}

.future-card p {
    color: #746670;
    font-size: 14px;
}

.dream {
    max-width: 850px;
    margin: 60px auto 0;
    padding: 40px;

    text-align: center;

    border-radius: 30px;
    background: linear-gradient(135deg, #f8dce9, #e9def8);
}

.dream > p:first-child {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.dream h2 {
    margin: 15px 0;
    font-size: 35px;
}

.dream h2 span {
    font-size: 18px;
    color: #806f7a;
}


/* =========================
   CONTACT
========================= */

.contact {
    text-align: center;
}

.contact-card {
    max-width: 700px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-item {
    padding: 25px;

    display: flex;
    align-items: center;
    gap: 20px;

    text-align: left;

    background: #fff5fa;
    border-radius: 20px;
}

.contact-item > span {
    font-size: 35px;
}

.contact-item h3 {
    color: #a45e83;
}

.contact-item a {
    color: #806f7a;
}

.contact-item a:hover {
    color: #b56b91;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 30px 20px;
    text-align: center;

    background: #4d3c48;
    color: #f8eaf1;

    font-size: 13px;
}

footer strong {
    color: #f3c9dc;
}


/* =========================
   ANIMASI
========================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes floating {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-card {
        width: 260px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .future-cards {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 45px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        gap: 10px;
    }

}