/* File: css/font-modern.css */
/* Font Modern untuk Website Desa Dudepo */

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Reset font untuk semua elemen */
* {
    font-family: inherit;
}

/* Body utama */
body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6,
.section-title,
.navbar-brand,
.card-header,
.modal-title {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Link styles */
a, .nav-link, .dropdown-item {
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
}

/* Button styles */
button, .btn, .btn-login, .btn-admin {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Form input */
input, textarea, select {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Small text */
small, .small, .text-small {
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Hero text */
.hero-text h3,
.walking-text p {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Card title */
.news-card h4,
.wisata-card h4,
.bpd-info h4 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Footer */
footer {
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Dashboard khusus */
.sb-nav-fixed {
    font-family: 'Inter', sans-serif;
}

/* Responsive font size */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1, .desa-title h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
}