/**
 * Skagrima Theme V2
 * Modern school theme for smkpgri5denpasar.sch.id
 * Using Pico.css (~4KB, classless, beautiful, mobile-first)
 */
@import url("https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Rubik:wght@400;500;600;700&display=swap");
:root {
    --pico-font-size: 15px;
    --h1: 1.6rem;
    --h2: 1.45rem;
    --h3: 1.35rem;
    --h4: 1.25rem;
    --h5: 1.15rem;
    --h6: 1.05rem;
}

main {
    background: #fff;
}

.img-fluid {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .flex-row-desktop {
        display: flex;
        flex-direction: row;
    }
    .flex-col-desktop {
        display: flex;
        flex-direction: column;
    }
    .hero-banner img {
        width: 1200px;
        height: auto;
    }
}
@media (max-width: 768px) {
    .flex-row-mobile {
        display: flex;
        flex-direction: row;
    }
    .flex-col-mobile {
        display: flex;
        flex-direction: column;
    }
}
:root {
    --font-size: 14px;
    --primary: #4a8eff;
    --primary-dark: #3a7ee8;
    --primary-light: #e8f1ff;
    --accent-green: #18ce0f;
    --accent-orange: #f29e0f;
    --accent-red: #ff5062;
    --secondary: #2c3e50;
    --text: #333;
    --text-light: #666;
    --text-muted: #888;
    --bg: #f8f9fa;
    --bg-white: #fff;
    --border: #e1e8ed;
    --shadow: rgba(0, 0, 0, 0.08);
    --radius: 4px;
    --radius-lg: 8px;
    --font-sans:
        "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

p {
    margin: 10px 0;
    font-size: 16px;
}

.container {
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background: #4a8eff;
    color: white;
    padding: 0.75rem 0;
}

.site-header .container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .site-branding {
    display: flex;
    align-items: center;
}

.site-header .site-title {
    margin: 0;
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
}

.site-header .site-title a {
    color: white;
    text-decoration: none;
}

.site-header .site-nav {
    display: flex;
}

.site-header .nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .nav-menu a {
    color: white;
    font-weight: 500;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

/* Content container */
.content-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Programs section */
.programs-section {
    background: #f5f5f5;
    padding: 3rem 1rem;
    margin: 2rem 0;
}

.programs-section .jurusan {
    margin: 0 auto;
}

.programs-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.programs-section .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.programs-section .program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    padding: 0;
}

.programs-section .program-card img {
    width: 285px;
    min-height: 285px;
    object-fit: cover;
}

.programs-section .program-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.programs-section .program-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.programs-section .program-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Navigation */
nav {
    display: flex;
    gap: 0.25rem;
}

nav a {
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    position: relative;
}

nav a:hover,
nav a.active {
    background: var(--primary);
    color: white;
}

nav .has-dropdown {
    position: relative;
}

nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 15px var(--shadow);
    border-radius: var(--radius);
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 200;
}

nav .has-dropdown:hover .dropdown-menu {
    display: block;
}

nav .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text);
    text-transform: none;
    font-size: 0.9rem;
}

nav .dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Hero Section */
.hero-banner {
    background-image: url(https://adzuki.t3.tigrisfiles.io/themes/skagrima/bg_pattern.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner img {
    max-height: 400px;
    display: block;
    margin: 0 auto;
}

/* Figure list */
figure > li {
    list-style: none !important;
}

/* Gallery item */
.blocks-gallery-item,
.blocks-gallery-grid {
    list-style: none !important;
}

/* Override Pico.css list styles */
ul li,
ul li::marker {
    list-style: none !important;
}

/* Navigation */
/* Main content - push footer to bottom */
main {
    flex: 1;
}

.bg-dark {
    background: #1a1a1a;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* News Card */
article[style*="background: white"] {
    transition: background 0.2s;
}
article[style*="background: white"]:hover {
    background: #f9f9f9 !important;
}
article[style*="background: white"] a {
    text-decoration: none;
}
article[style*="background: white"] a:hover h3 {
    color: #ec5b13;
}

/* Line clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    article[style*="flex-direction: row"] {
        flex-direction: column !important;
    }
    article[style*="flex-direction: row"] > div:first-child {
        width: 100% !important;
    }
}

.footer > .container-fluid > p {
    color: #fff;
    margin-bottom: 0;
}

.footer-blockquote {
    padding-bottom: 5px;
}

.quote {
    font-family: "Libre Caslon Text", serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #ccc;
    max-height: 85px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        gap: 1rem;
    }
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--bg);
        padding: 1rem;
        border-radius: var(--radius);
    }
    nav.active {
        display: flex;
    }
    nav a {
        padding: 0.75rem;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
}
.greeting {
    padding-top: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.jurusan {
    max-width: 1080px;
    margin: 0 auto;
}

.news-section {
    max-width: 1080px;
    margin: 0 auto;
}

.news-section-block {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.news-section-block > .col-lg-8 {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    width: 66.67%;
}

.news-section-block > .col-lg-4 {
    display: flex;
    flex-direction: column;
    margin-right: 0;
    width: 33.3%;
}
.news-section-block > .col-lg-4 .pengumuman-list {
    display: flex;
    flex-direction: column;
}
.news-section-block > .col-lg-4 .pengumuman-list a {
    padding-bottom: 10px;
}

.figure li {
    list-style: none !important;
}

@media (max-width: 768px) {
    .news-section-block {
        flex-direction: column;
    }
    .block-principal {
        display: flex;
        flex-direction: column;
    }
}
.site-title,
.site-title a {
    font-family: "Neue Aachen", "Anton", sans-serif;
}

.block-principal {
    display: flex;
    flex-direction: row;
}

/*# sourceMappingURL=theme-skagrima.css.map */
