/* Bagian Hero Styling */
#hero {
    background-color: #E0F7FA;
    padding: 50px 20px;
    height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Bagian Kiri: Nama dan Teks */
.hero-left {
    flex: 1;
    padding-right: 20px;
}

.hero-left h2 {
    color: #00796B;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Pacifico', cursive;
}

.hero-left p {
    color: #555;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.5;
    text-align: justify;
}

.hero-left .btn {
    background-color: #FFC107;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
}

#hero-name {
    color: #00796B;
    font-size: 36px;
    max-width: max-content;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    animation: typing 5s alternate infinite, blink .5s step-end infinite alternate;
}

.hero-left .btn:hover {
    animation: color-change 2s linear infinite;
}

/* Bagian Kanan: Gambar atau Foto */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    max-width: 400px;
    height: 400px;
    border-radius: 50%;
    animation: box-light 2s infinite alternate;
}