


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 20px;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-group {
    margin-bottom: 15px;
}

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.table {
    margin-top: 20px;
}

.btn {
    margin-right: 5px;
}


/* Tambahkan ini ke file style.css yang sudah ada */

.jumbotron {
    background-color: #e9f7fe;
    border-radius: 10px;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-title i {
    margin-right: 8px;
    color: #007bff;
}

.list-group-item {
    margin-bottom: 10px;
    border-radius: 5px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron {
        padding: 1.5rem 0.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Tambahkan ini ke file style.css yang sudah ada */

/* About Page Styles */
.about-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.structure-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.structure-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
}

.business-card {
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.business-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.achievement-box {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
}

.achievement-box h1 {
    font-weight: 700;
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

/* Style untuk Header dan Footer yang Diperbaiki */

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #2c3e50 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.nav-link i {
    width: 1.2rem;
    text-align: center;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: white;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer .text-muted {
    color: #bdc3c7 !important;
}

.footer .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background-color: #3498db;
    color: white;
}

/* Padding untuk konten utama agar tidak tertutup header */
main {
    padding-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.2rem 0;
    }

   .footer h5 {
        font-size: 1rem;
        padding-bottom: 0.3rem;
    }

   .footer h5::after {
        width: 30px;
        height: 1.5px;
   }
}

@media (max-width: 767.98px) {
    .footer .col-lg-4 {
        margin-bottom: 1.5rem;
    }
    
    .footer .text-center.text-md-start,
    .footer .text-center.text-md-end {
        text-align: center !important;
    }
    
    .footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Pastikan tidak ada konflik dengan Bootstrap */
body {
    padding-top: 70px; /* Memberi ruang untuk fixed navbar */
}

/* Override untuk memastikan teks terlihat */

/* Navbar lebih kontras */
.navbar-custom {
    background-color: #1e3a8a; /* Warna biru gelap */
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Tambahan shadow */
}

/* Teks lebih terlihat */
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #ffffff !important; /* Warna putih */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Efek bayangan untuk meningkatkan kontras */
}

/* Navbar Brand lebih tegas */
.navbar-custom .navbar-brand {
    font-size: 1.5rem; /* Ukuran font lebih besar */
    font-weight: 700;
}

/* Navigasi lebih kontras */
.navbar-custom .nav-link {
    font-weight: 500;
    margin: 0 0.3rem;
    padding: 0.5rem 1rem;
}

/* Efek Hover */
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffcc00 !important; /* Warna kuning saat hover */
}

/* Border tombol toggle */
.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}