/* === Tentang Kami Page - Light Mode Only === */

/* Base Setup */
:root {
    --primary-color: #137fec;
    --nav-height: 72px;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #212529;
}
.has-fixed-nav {
    padding-top: var(--nav-height);
}
@media (max-width: 768px) {
    .has-fixed-nav {
        padding-top: 64px;
    }


}

.text-primary-custom {
    color: var(--primary-color);
}

.navbar .navbar-brand:focus {
    outline: none;
    box-shadow: none;
}

.navbar .navbar-brand:focus-visible {
    outline: 2px solid rgba(19, 127, 236, 0.35);
    outline-offset: 3px;
}
/* Hero Section with Gradient Transition */
.hero-section-gradient {
    background: linear-gradient(to bottom, #eef2f5 0%, #ffffff 100%);
    width: 100%;
    position: relative;
    padding-bottom: 3rem;
}

.hero-section-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    pointer-events: none;
}

/* Decorative Blobs */
.decorative-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    margin-top: 150px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.blob-blue {
    top: -5rem;
    right: -5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6ea8fe 100%);
}

.blob-green {
    bottom: -5rem;
    left: -5rem;
    background: linear-gradient(135deg, #198754 0%, #75b798 100%);
}

/* Statistics Cards */
.stat-card {
    background: white;
    border: 1px solid #e7edf3;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0d6efd;
    line-height: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Image Card */
.image-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    padding: 2rem;
    color: white;
}

.glass-caption {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Vision Card */
.vision-card {
    background: linear-gradient(135deg, #0d141b 0%, #1a2632 100%);
    border-color: rgba(255, 255, 255, 0.1) !important;
    position: relative;
    z-index: 1;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.vision-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #0d6efd 0%, #0d6efd 100%);
    border-radius: 1rem;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.vision-card:hover + .vision-glow,
.vision-card:hover ~ .vision-glow {
    opacity: 0.5;
}

/* Mission Cards */
.mission-card {
    background: white;
    border: 1px solid #e7edf3 !important;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd !important;
}

.icon-box-lg {
    width: 4rem;
    height: 4rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.display-4, .display-5, .display-6 {
    font-weight: 300;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Content Spacing */
section {
    position: relative;
    z-index: 1;
}

/* Remove Bootstrap's default margins that might cause issues */
.container-xl {
    max-width: 1280px;
}

/* Ensure proper text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Link Styles */
a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0a58ca;
}

/* Custom Scrollbar (Optional) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Print Styles */
@media print {
    .decorative-blob {
        display: none;
    }
    
    body {
        background: white;
    }
}

/* Accessibility Improvements */
.material-symbols-outlined {
    vertical-align: middle;
}

button:focus,
a:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .decorative-blob {
        width: 16rem;
        height: 16rem;
    }
    
    .image-overlay {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* Card hover effects */
.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure images don't overflow */
.image-card {
    max-width: 100%;
}

/* Better spacing for mobile */
@media (max-width: 768px) {
    .container-xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
