* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links li a.active {
    color: #ff1a1a;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    min-height: 85vh;
}

.hero-content {
    max-width: 55%;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: #ff1a1a;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-contact {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #ff1a1a;
    border-radius: 8px;
    color: #ff1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 50px;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #ff1a1a;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ff1a1a;
    border-radius: 50%;
    color: #ff1a1a;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #ff1a1a;
    color: #000000;
}

.hero-image {
    max-width: 40%;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 550px; /* Ukuran pas untuk foto potret tinggi agar tetap estetis */
    object-fit: contain;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .social-icons {
        justify-content: center;
    }
    .hero-image img {
        max-height: 400px;
        margin-bottom: 30px;
    }
}