/*
Theme Name: UNU SUMBAR Theme
Theme URI: https://unusumbar.ac.id/
Author: Antigravity Engineering
Author URI: https://unusumbar.ac.id/
Description: Tema resmi WordPress untuk Universitas Nahdlatul Ulama Sumatera Barat (UNU SUMBAR). Dirancang 100% presisi dengan desain UI/UX modern, dinamis, dan mudah dikelola melalui dasbor admin.
Version: 2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: unusumbar
Tags: custom-theme, university, education, green, responsive-layout, dynamic-options
*/

:root {
    /* Color Palette - Presisi 100% Sesuai UI/UX UNUS Sumatera Barat */
    --primary-green: #046b41;
    --primary-green-hover: #035735;
    --dark-green: #02482c;
    --darker-green: #013b24;
    --hero-highlight: #066e44;
    --accent-gold: #f5b61b;
    --accent-gold-hover: #dfa312;
    --light-green-bg: #e8f7f0;
    --light-green-card: #d1f3e0;
    --livechat-green: #0fa968;
    
    /* Neutrals & Text */
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 28px rgba(4, 107, 65, 0.08);
    --shadow-floating: 0 16px 36px rgba(2, 72, 44, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset for Theme Consistency */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Core Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}
