/* index.css v1.8 - Restored Original Size */
*{
    margin: 0;
   
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
.container{
    width: 100% auto;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3),transparent),url(../image/selmer.png);
    background-size: cover;
    background-position: left;
    padding: 0 8%;
    position: relative;
}
/* nav */
nav{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap:wrap;
    padding: 5px 0;    
}
.logo{
    width: 250px;
    cursor: pointer;
    padding-top: 25px;
}

nav ul{
    flex: 1;
    font-size: 30px;
    text-align: right;
    padding-right: 30px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    transition: width 0.3s;
}

nav ul li a:hover::after{
    width: 90%;
}
/* navend */
.text-box{
    color: #fff;
    position: absolute;
    bottom: 8%;
    left: 8%;
    z-index: 10;
}
.text-box p{
    font-size: 50px;
    font-weight: 600;
    margin-top: -19px;
}
.text-box h1{
    font-size: 80px;
    line-height: 1;
    margin-left: 0px;
    margin-top: -5px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(/image/back.png);
    -webkit-background-clip: text;
    background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}
.text-box h2 {
    font-size: 85px;
    line-height: 1;
    margin-left: 0px;
    margin-top: -30px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(/image/back.png);
    -webkit-background-clip: text;
    background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}
.text-box h3{
    font-size: 90px;
    line-height: 1;
    margin-left: 0px;
    margin-top: -30px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(/image/back.png);
    -webkit-background-clip: text;
    background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}
@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}

.row{
    display:flex;
    align-items: center;
    margin-top: 10px;
    
} 
           
.row a{
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-right: 20px;
    border: 2px solid #fff;
    display:list-item;
    align-items:center;
    font-size: 25px;
    
}
.line-bawah{
    color: #fff;
    font-size: 20px;
    line-height: 15px;
    margin-left: 5px;
    padding-top:  10px;
    line-height: 25px;
}
@media (max-width: 600px) {
    .container {
        padding: 0 4%;
        background-position: center;
    }
    .logo {
        width: 140px;
        padding-top: 15px;
    }
    nav ul {
        font-size: 18px;
        padding-right: 8px;
    }
    nav ul li {
        margin: 5px 15px;
    }
    .text-box {
        position: absolute;
        bottom: 15%;
        left: 4%;
        z-index: 10;
        width: 92%;
    }
    .text-box h1 {
        font-size: 42px;
        line-height: 1.1;
        margin-left: 0px;
        margin-top: 5px;
        margin-bottom: 5px;
        color: transparent;
        -webkit-text-stroke: 1px #fff;
        background: url(/image/back.png);
        -webkit-background-clip: text;
        background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
    }
    .text-box h2 {
        font-size: 45px;
        line-height: 1.1;
        margin-left: 0px;
        margin-top: 5px;
        margin-bottom: 5px;
        color: transparent;
        -webkit-text-stroke: 1px #fff;
        background: url(/image/back.png);
        -webkit-background-clip: text;
        background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
    }
    .text-box h3 {
        font-size: 48px;
        line-height: 1.1;
        margin-left: 0px;
        margin-top: 5px;
        margin-bottom: 10px;
        color: transparent;
        -webkit-text-stroke: 1px #fff;
        background: url(/image/back.png);
        -webkit-background-clip: text;
        background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
    }
    .text-box p {
        font-size: 26px;
        margin-top: 8px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    .row {
        display: flex;
        align-items: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    .row a {
        font-size: 16px;
        padding: 8px 16px;
        margin-bottom: 8px;
        margin-right: 10px;
        border: 2px solid #fff;
        text-align: center;
        flex: 1;
        min-width: 200px;
    }
    .line-bawah {
        font-size: 14px;
        line-height: 18px;
        margin-top: 12px;
        margin-left: 2px;
    }
}

/* Mobile Extra Small (320px - 480px) */
@media (max-width: 480px) {
    .text-box h1 {
        font-size: 36px;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .text-box h2 {
        font-size: 38px;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .text-box h3 {
        font-size: 40px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    .text-box p {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 18px;
    }
    .row a {
        font-size: 14px;
        padding: 6px 12px;
        min-width: 180px;
    }
    .line-bawah {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Tablet Responsive */
@media (min-width: 601px) and (max-width: 1024px) {
    .container {
        padding: 0 6%;
    }
    .logo {
        width: 200px;
    }
    .text-box {
        bottom: 12%;
        left: 6%;
    }
    .text-box h1 {
        font-size: 60px;
        line-height: 1.1;
        margin-top: 5px;
        margin-bottom: 8px;
    }
    .text-box h2 {
        font-size: 65px;
        line-height: 1.1;
        margin-top: 5px;
        margin-bottom: 8px;
    }
    .text-box h3 {
        font-size: 70px;
        line-height: 1.1;
        margin-top: 5px;
        margin-bottom: 12px;
    }
    .text-box p {
        font-size: 36px;
        margin-top: 10px;
        margin-bottom: 18px;
        font-weight: 600;
    }
    nav ul {
        font-size: 24px;
    }
    .row a {
        font-size: 20px;
        padding: 10px 18px;
    }
    .line-bawah {
        font-size: 18px;
        line-height: 22px;
    }
}

/* iPad Specific Adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .text-box h1 {
        font-size: 55px;
        margin-bottom: 10px;
    }
    .text-box h2 {
        font-size: 60px;
        margin-bottom: 10px;
    }
    .text-box h3 {
        font-size: 65px;
        margin-bottom: 15px;
    }
    .text-box p {
        font-size: 32px;
        margin-top: 12px;
        margin-bottom: 20px;
    }
}

