/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --card-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --card-shadow-hover: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1518152006812-edab29b069ac?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    color: #fff; /* Mengubah warna teks menjadi putih agar terlihat */
    padding: 6rem 0;
    text-align: center;
    border-radius: .75rem;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p.lead {
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.hero-section .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    padding: 0.75rem 2rem; /* Padding vertikal dan horizontal yang lebih seimbang */
    font-weight: 600;
    border-width: 2px;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.hero-section .btn-outline-light {
    border-color: #198754; /* Warna hijau Bootstrap */
    color: #198754;
    background-color: rgba(255, 255, 255, 0.9);
}

.hero-section .btn-outline-light:hover {
    background-color: #198754;
    color: #fff;
}
/* Features Section */
.features-section {
    padding: 2rem 0;
}

.feature-card {
    border: 1px solid #dee2e6;
    border-radius: .75rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card .card-title {
    font-weight: 600;
    color: var(--dark-text);
}

.feature-card .card-text {
    color: #6c757d;
}