* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'candara', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: transparent; /* Navbar transparan */
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    position: absolute; /* Posisi absolut di atas hero */
    width: 100%; /* Lebar penuh */
    z-index: 10; /* Membuat navbar di atas konten lainnya */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff; /* Warna putih agar terlihat di atas gambar hero */
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ddd;
}

.logo a {
    color: #fff; /* Warna putih agar terlihat di atas gambar hero */
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.cta .btn {
    padding: 10px 20px;
    background-color: #00aaff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #0088cc;
}

.hero {
    background: url('20240901_140125.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: flex-end; /* Menjaga konten di sebelah kanan */
    align-items: flex-end; /* Menjaga konten di bagian bawah */
    padding: 20px; /* Jarak dari tepi layar */
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.7); /* Latar belakang transparan untuk keterbacaan */
    padding: 20px 40px; /* Padding untuk bentuk persegi panjang */
    border-radius: 20px;
    text-align: center;
    max-width: 100%; /* Maksimal lebar mengikuti ukuran layar */
    box-sizing: border-box;
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-content .btn-primary {
    margin-top: 20px; /* Jarak tombol dari teks atas */
    padding: 10px 30px;
    background-color: #00aaff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.hero-content .btn-primary:hover {
    background-color: #0088cc;

}

.features, .about, .contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px 0;
}

.features h2, .about h2, .contact h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    flex: 1;
    max-width: 30%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative; /* Tambahkan posisi relatif pada footer */
}

footer p {
    margin: 0;
}

.bottom-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
}

.bottom-right a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-right a:hover {
    color: #00aaff;
}
