/* Custom Fonts & Global Defaults */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f8fafc;
}

h1, h2, h3, .logo-font {
    font-family: 'Cinzel', serif;
}

/* Page Section Layout */
.page-section {
    /* Hapus display: none karena sekarang multi-page */
    min-height: 80vh;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Khusus untuk halaman home (hero section) agar pas layar */
#home {
    padding-top: 0;
}

/* Nav Link Animation */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #cbd5e1;
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active-link::after {
    width: 100%;
}

/* Card Hover Effect */
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #64748b;
    border-radius: 4px;
}