/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Custom Navbar */
.custom-navbar {
    background-color: #fff;
    padding: 20px 0; /* Memberikan ruang lebih luas */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Bayangan halus untuk kesan clean */
    transition: background-color 0.3s ease;
}

.custom-navbar .container-fluid {
    max-width: 1400px; /* Membuat navbar terlihat lebih luas */
}

.custom-navbar .navbar-brand .logo {
    height: 50px; /* Logo sedikit lebih besar */
    transition: transform 0.3s ease;
}

.custom-navbar .navbar-brand .logo:hover {
    transform: scale(1.1); /* Efek hover pada logo */
}

.custom-navbar .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    padding: 10px 20px; /* Jarak antar item lebih luas */
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: #28a745; /* Warna hijau khas sawit untuk hover */
}

/* Custom Burger Button */
.custom-toggler {
    border: none;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
}

.custom-toggler .toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-toggler .toggler-icon::before,
.custom-toggler .toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.custom-toggler .toggler-icon::before {
    top: -10px;
}

.custom-toggler .toggler-icon::after {
    bottom: -10px;
}

/* Animasi saat burger diklik */
.custom-toggler[aria-expanded="true"] .toggler-icon {
    background: transparent;
}

.custom-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg) translate(7px, 7px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Untuk memastikan blur tidak meluber */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/img11.webp') no-repeat center center/cover;
    filter: blur(5px); /* Sesuaikan nilai blur sesuai kebutuhan */
    z-index: 0;
}

.hero-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1;
    position: relative; /* Pastikan konten di atas overlay */
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-logo {
    max-width: 150px;
    position: relative; /* Pastikan logo di atas overlay */
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 100px;
    }
}

/* Rounded Image */
.rounded-image {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
}

/* Contact Icons */
.contact-icon {
    width: 24px;
    margin-right: 10px;
}

.social-icon {
    width: 30px;
    margin-right: 10px;
}

.visi {
    text-align: justify;
}

.misi {
    text-align: justify;
}

.tentang{
    text-align: justify;
}
/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.end-footer{
    text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
    .custom-navbar {
        padding: 15px 0;
    }

    .custom-navbar .nav-link {
        padding: 10px 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 100px;
    }

    .rounded-image {
        margin-bottom: 20px;
    }
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Untuk responsivitas pada layar kecil */
@media (max-width: 991px) {
    .btn-primary {
        margin-top: 10px;
        margin-left: 0 !important;
        width: 100%;
    }
}