/* ===================== GAYA GLOBAL & DASAR ===================== */
html, body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow: hidden; 
}

.fullpage-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.fullpage-container::-webkit-scrollbar {
    display: none;
}

section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    scroll-snap-align: start;
    position: relative;
}

/* ===================== NAVIGASI TITIK ===================== */
.pagination {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pagination a {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.pagination a:hover {
    background-color: #000000;
}

/* ===================== STYLE BERSAMA ===================== */
.page-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
}

/* ===================== BAGIAN 1: HERO SECTION ===================== */
#hero .hero-container { text-align: center; color: #000; }
#hero .name { font-size: 1.2rem; font-weight: 500; margin-bottom: 40px; }
#hero .title { font-size: 4rem; font-weight: 400; margin: 0; }
#hero .ampersand { font-size: 3rem; font-weight: 400; margin: 15px 0; }
#hero .portfolio { font-size: 6rem; font-weight: 700; letter-spacing: 2px; margin: 0; }

/* ===================== BAGIAN 2: ABOUT ME SECTION ===================== */
#about { background-color: #f8f9fa; }
#about .about-container { max-width: 1100px; width: 100%; }
#about .content-wrapper { display: flex; align-items: center; gap: 60px; }
#about .text-content { flex: 1.5; }
#about .text-content h1 { font-size: 3.5rem; font-weight: 700; color: #000; margin-bottom: 25px; }
#about .text-content p { font-size: 1rem; line-height: 1.7; }
#about .image-content { flex: 1; display: flex; justify-content: center; align-items: center; }
#about .image-content img { max-width: 100%; height: auto; border-radius: 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

/* ===================== BAGIAN 3: WORK EXPERIENCE ===================== */
#experience { background-color: #ffffff; }
#experience .experience-container { max-width: 1100px; width: 100%; }
#experience .title-wrapper h1 { font-size: 5rem; font-weight: 700; color: #000; line-height: 1.1; margin-bottom: 60px; }
#experience .experience-grid { display: flex; gap: 50px; }
#experience .experience-column { flex: 1; }
#experience .experience-column h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
#experience .experience-column ul { list-style: none; padding: 0; margin: 0; }
#experience .experience-column li { font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; padding-left: 20px; position: relative; }
#experience .experience-column li::before { content: '•'; position: absolute; left: 0; top: 0; color: #0a0a0b; font-size: 1.2rem; line-height: 1.5; }
#experience .experience-column li span { display: block; color: #777; font-size: 0.9em; margin-top: 2px; }

/* ===================== BAGIAN 4: SKILLS & EXPERTISE ===================== */
#skills { background-color: #ffffff; align-items: flex-start; }
#skills .skills-container { max-width: 1100px; width: 100%; padding-top: 60px; }
#skills .skills-content-wrapper { display: flex; align-items: flex-start; width: 100%; gap: 40px; }
#skills .skills-title-wrapper { flex: 1.2; }
#skills .skills-title-wrapper h1 { font-size: 5rem; font-weight: 700; color: #000; line-height: 1.1; }
#skills .skills-lists-wrapper { flex: 1; display: flex; gap: 50px; padding-top: 20px; }
#skills .skills-column { flex: 1; }
#skills .skills-column h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-top: 0; margin-bottom: 25px; }
#skills .skills-column ul { list-style: disc; padding-left: 20px; margin: 0; }
#skills .skills-column li { font-size: 1rem; line-height: 1.8; }

/* ===================== BAGIAN 5: CERTIFICATION ===================== */
#certification { background-color: #f8f9fa; align-items: flex-start; }
#certification .certification-container { max-width: 1100px; width: 100%; padding-top: 60px; }
#certification .certification-title { font-size: 3.5rem; font-weight: 700; color: #000; margin-bottom: 50px; }
#certification .certification-list { list-style: none; padding-left: 10px; }
#certification .certification-list li { position: relative; padding-left: 35px; margin-bottom: 30px; font-size: 1.2rem; font-weight: 500; line-height: 1.4; }
#certification .certification-list li::before { content: '•'; position: absolute; left: 0; top: 0; color: #121115; font-size: 1.5rem; }
#certification .certification-list li span { display: block; font-size: 1rem; font-weight: 400; color: #666; margin-top: 5px; }

/* ===================== BAGIAN 6: OTHER PROJECTS ===================== */
#projects { background-color: #ffffff; align-items: flex-start; }
#projects .projects-container { max-width: 1100px; width: 100%; padding-top: 60px; }
#projects .projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; gap: 30px; }
#projects .projects-title h1 { font-size: 5rem; font-weight: 700; color: #000; line-height: 1.1; margin: 0; }
#projects .projects-intro { max-width: 320px; text-align: left; padding-bottom: 10px; font-size: 0.9rem; color: #555; }
#projects .projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
#projects .project-card { background-color: #E9E9E9; border-radius: 20px; padding: 25px; display: flex; flex-direction: column; }
#projects .project-card h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; margin: 0 0 20px 0; }
#projects .project-card .card-desc-label { font-size: 0.8rem; text-transform: uppercase; margin-bottom: 5px; color: #333; }
#projects .project-card .card-desc-text { font-size: 0.9rem; line-height: 1.5; margin: 0; color: #555; flex-grow: 1; }
#projects .project-card .project-button { display: flex; align-items: center; justify-content: center; height: 50px; background-color: #7A7A7A; border-radius: 15px; margin-top: 25px; text-decoration: none; color: #ffffff; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s; }
#projects .project-card .project-button:hover { background-color: #000000; }

/* ===================== BAGIAN 7: CONTACT / COLLABORATE ===================== */
#contact { background-color: #ffffff; }
#contact .contact-container { max-width: 1100px; width: 100%; }
#contact .contact-content-wrapper { display: flex; align-items: center; gap: 60px; }
#contact .contact-text { flex: 1.5; }
#contact .intro-line { font-size: 1rem; color: #555; margin-bottom: 10px; }
#contact .contact-text h1 { font-size: 5rem; font-weight: 700; color: #000; line-height: 1.1; margin-top: 0; margin-bottom: 40px; }
#contact .contact-links p { font-size: 1.1rem; font-weight: 500; margin: 15px 0; word-break: break-all; }
#contact .contact-links a { color: #000; text-decoration: underline; font-weight: 600; }
#contact .contact-image { flex: 1; text-align: center; }
#contact .contact-image img { max-width: 100%; border-radius: 15px; transform: rotate(-4deg); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }


/* ===================== DESAIN RESPONSIVE ===================== */
@media (max-width: 900px) {
    .pagination { display: none; }
    section { padding: 20px; align-items: center !important; }
    .page-number { top: 20px; right: 20px; }
    
    #hero .title { font-size: 2.5rem; }
    #hero .portfolio { font-size: 3.5rem; }
    
    #about .content-wrapper, #contact .contact-content-wrapper { flex-direction: column-reverse; }
    #about .text-content h1, #contact .contact-text h1 { font-size: 2.8rem; }
    
    #experience .experience-container, #skills .skills-container, #certification .certification-container, #projects .projects-container, #contact .contact-container { padding-top: 0; }
    #experience .title-wrapper h1 { font-size: 3rem; margin-bottom: 40px; }
    #experience .experience-grid { flex-direction: column; gap: 30px; }

    #skills .skills-content-wrapper { flex-direction: column; }
    #skills .skills-title-wrapper h1 { font-size: 3rem; margin-bottom: 40px; }
    #skills .lists-wrapper { flex-direction: column; gap: 30px; }

    #certification .certification-title { font-size: 2.5rem; text-align: center; }
    #certification .certification-list { text-align: center; }
    #certification .certification-list li { padding-left: 0; }
    #certification .certification-list li::before { display: none; }

    #projects .projects-header { flex-direction: column; align-items: flex-start; text-align: left; }
    #projects .projects-title h1 { font-size: 3rem; }
    #projects .projects-grid { grid-template-columns: 1fr; }

    #contact .contact-text { text-align: center; }
    #contact .contact-image img { transform: rotate(0); margin-top: 40px; }
}