/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/* ==========================
   BODY
========================== */

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#fafafa,#f4f6f9);
    color:#333;

    min-height:100svh;      /* lebih akurat di HP */
    display:flex;
    flex-direction:column;

    padding:30px 20px;

    overflow-x:hidden;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:100%;
    max-width:650px;

    margin:auto;

    text-align:center;

    animation:fadeUp .8s ease;
}

/* ==========================
   LOGO
========================== */

.logo{

    width:320px;
    max-width:100%;

    margin-bottom:35px;

    filter:drop-shadow(0 8px 20px rgba(0,0,0,.08));

}

/* ==========================
   TITLE
========================== */

h2{

    font-size:34px;

    font-weight:700;

    color:#222;

    margin-bottom:5px;

}

span{

    display:block;

    color:#c62828;

    font-size:24px;

    font-weight:600;

    margin-bottom:30px;

}

/* ==========================
   MAINTENANCE TITLE
========================== */

h1{

    font-size:42px;

    line-height:1.2;

    margin-bottom:20px;

    color:#222;

}

/* ==========================
   DESCRIPTION
========================== */

p{

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin-bottom:40px;

}

/* ==========================
   BUTTON GROUP
========================== */

.button{

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

}

/* ==========================
   BUTTON
========================== */

.button a{

    text-decoration:none;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    min-width:170px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.button a:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 30px rgba(0,0,0,.15);

}

/* ==========================
   WHATSAPP
========================== */

.wa{

    background:#25D366;

    color:#fff;

}

/* ==========================
   INSTAGRAM
========================== */

.ig{

    background:linear-gradient(
    135deg,
    #833AB4,
    #E1306C,
    #F77737
    );

    color:#fff;

}

/* ==========================
   FOOTER
========================== */

footer{
    width:100%;
    text-align:center;

    margin-top:30px;
    padding:20px 0;

    color:#888;
    font-size:14px;

    border-top:1px solid #e5e5e5;

    flex-shrink:0;
}
/* ==========================
   ANIMATION
========================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

.logo{

    width:220px;

    margin-bottom:30px;

}

body{
    justify-content:flex-start;
    padding:30px 20px 20px;
}

.container{
    margin-top:20px;
    margin-bottom:20px;
}
    
h2{

    font-size:24px;

}

span{

    font-size:18px;

    margin-bottom:25px;

}

h1{

    font-size:30px;

}

p{

    font-size:15px;

}

.button{

    flex-direction:column;

    align-items:center;

}

.button a{

    width:100%;

    max-width:320px;

}

footer{

    margin-top:20px;
    position:static;
}

}