/* style.css */
/* Hero Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; }

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    background-color: #000; /* fallback */
}

.hero-content {
    max-width: 50%;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.hero-content .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.hero-image {
    flex: 1;
    /* GANTI URL_GAMBAR_ELECTROPLATING dengan link Pexels/Unsplash gratis Anda */
    background: url('https://images.pexels.com/photos/11669802/pexels-photo-11669802.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    height: 70vh;
    margin-left: 2rem;
    border-radius: 12px;
    filter: brightness(0.9) contrast(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content { max-width: 100%; }
    .hero-image {
        width: 90%;
        height: 40vh;
        margin: 2rem 0 0;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
}
