:root {
    --primary-color: #6a11cb;
    --secondary-color: #B19BD9;
    --text-dark: #343a40;
    --text-light: #6c757d;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --border-color: #EAEFF5;
    --menu-blue: #2A5E95;
}

/* Layout Dasar & Sticky Footer */
html, body {
    height: 100%;
}
body { 
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
}
main {
    flex-grow: 1;
}

.section-padding { padding: 60px 0; }
.section-title { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; font-size: 2.1rem; }
.prose { line-height: 1.8; color: var(--text-light); font-size: 0.95rem; }

/* Header & Navbar - Original Style */
.header-area { 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header-area.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand .navbar-logo { 
    max-height: 60px; /* disesuaikan dengan inline style agar efeknya terlihat */
    height: 140px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand span {
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-link { 
    font-weight: 500; 
    color: var(--text-dark);
    background-color: transparent !important;
    margin: 0 5px;
    padding: 8px 12px !important;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, 
.nav-link.active {
    color: white;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}
.dropdown-toggle::after {
    display: inline-block; margin-left: .255em; vertical-align: .255em; content: "";
    border-top: .3em solid; border-right: .3em solid transparent;
    border-bottom: 0; border-left: .3em solid transparent;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    color: white;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateX(5px);
}

/* Hero Section */
.hero-section .carousel-item {
    height: 85vh;
    min-height: 860px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 2rem 0;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    position: relative;
}

.hero-section h1::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -10px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    border-radius: 10px;
    z-index: -1;
    backdrop-filter: blur(2px);
}

.hero-section p {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 90%;
}

.hero-section p::before {
    content: '';
    position: absolute;
    left: -15px;
    top: -8px;
    right: -15px;
    bottom: -8px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    border-radius: 8px;
    z-index: -1;
    backdrop-filter: blur(2px);
}

/* Responsive untuk hero section */
@media (max-width: 768px) {
    .hero-section .carousel-item {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .hero-section .carousel-item {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 1.7rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-section p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
}

@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.animated-text { 
    animation: fadeInUp 0.8s ease-out forwards; 
    opacity: 0; 
}
.animated-text.delay-1 { 
    animation-delay: 0.3s; 
}
.animated-text.delay-2 { 
    animation-delay: 0.6s; 
}

/* Tombol Akses Data Sekolah di Hero Section */
.hero-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

@media (max-width: 576px) {
    .hero-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        gap: 7px;
        margin-top: 15px;
    }
}

.hero-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
    text-decoration: none;
}

.hero-btn .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .arrow {
    transform: translateX(5px);
}

.hero-section p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.animated-text { 
    animation: fadeInUp 0.8s ease-out forwards; 
    opacity: 0; 
}
.animated-text.delay-1 { 
    animation-delay: 0.3s; 
}
.animated-text.delay-2 { 
    animation-delay: 0.6s; 
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Profile Section - Modern Style */
.profile-section {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.profile-image-wrapper {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.profile-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(106, 17, 203, 0.3);
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leader-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.1rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.prose {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #6b7280;
    text-align: justify;
}

/* Info Terkini & Kegiatan Section */
.article-card {
    border: none; border-radius: 15px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.card-img-container { height: 220px; overflow: hidden; }
.article-card .card-img-top { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-date { font-size: 0.7rem; color: var(--text-light); margin-bottom: 0.5rem; }
.card-category {
    display: inline-block;
    background-color: #800080; /* Ungu */
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Warna khusus untuk kategori bacaan */
.card-category:contains("Bacaan"),
.card:has(.card-category:contains("Bacaan")) .card-category {
    background-color: #28a745; /* Hijau untuk bacaan */
}

/* Alternative approach untuk styling kategori bacaan */
.card-category.bacaan {
    background-color: #28a745; /* Hijau untuk bacaan */
}
.card-title { font-family: var(--font-heading); font-weight: 700; }
.stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; }
.info-terkini-section .btn-outline-primary {
    border-color: var(--primary-color); color: var(--primary-color); padding: 10px 30px;
    font-weight: 600; border-radius: 50px; border-width: 2px;
}
.info-terkini-section .btn-outline-primary:hover { background-color: var(--primary-color); color: white; }

/* Footer */
.footer-area { 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%); 
    flex-shrink: 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.footer-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: footerShine 8s infinite;
    pointer-events: none;
}

@keyframes footerShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.footer-area .container {
    position: relative;
    z-index: 1;
}

/* Footer Logo */
.footer-logo-img {
    max-width: 80px;
    height: auto;
    filter: brightness(1.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.footer-title { 
    font-family: var(--font-heading); 
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-subtitle {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 42px; 
    height: 42px; 
    background-color: rgba(255,255,255,0.15);
    color: white; 
    border-radius: 12px;
    text-decoration: none; 
    transition: all 0.3s ease;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-icon:hover { 
    background-color: rgba(255,255,255,0.25); 
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a i {
    width: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact i {
    width: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Footer Map */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Visitor Statistics */
.visitor-stats {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    width: 20px;
    text-align: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.footer-credits i.fa-heart {
    color: #e74c3c !important;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-map iframe {
        height: 150px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-credits {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-area {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    .footer-logo-img {
        max-width: 60px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-map iframe {
        height: 120px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .stat-item {
        padding: 6px;
    }
    
    .stat-number {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Visi & Misi Section */
.vision-mission-section { 
    position: relative; 
    overflow: visible; 
    display: block !important;
    visibility: visible !important;
    z-index: 1;
}
.vision-mission-section.bg-light {
    background-color: #f8f9fa !important;
}
.vm-card {
    background-color: #fff; 
    padding: 2rem; 
    border-radius: 15px;
    height: 100%; 
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: var(--text-light);
    display: block !important;
    visibility: visible !important;
}
.vm-icon { 
    font-size: 2.1rem; 
    line-height: 1; 
    margin-bottom: 1rem; 
    color: var(--primary-color);
}
.vm-title { 
    font-family: var(--font-heading); 
    font-weight: 700; 
    margin-bottom: 1rem; 
    color: var(--text-dark);
    font-size: 1.4rem;
}
.vm-list { 
    padding-left: 1.2rem; 
    text-align: left; 
}
.vm-list li { 
    margin-bottom: 0.75rem; 
}

/* Detail Artikel & Regulasi */
.article-detail-header {
    height: 80vh; 
    min-height: 600px; 
    max-height: 800px;
    position: relative; 
    background-size: cover; 
    background-position: center;
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}
.article-detail-header .overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.6); 
}
.article-detail-header .container { 
    position: relative; 
    z-index: 2;
    max-width: 900px;
}
.article-title { 
    font-family: var(--font-heading); 
    font-size: 3.5rem; 
    font-weight: 700; 
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.article-meta { 
    font-size: 1.1rem; 
    opacity: 0.9; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .article-detail-header {
        height: 70vh;
        min-height: 500px;
    }
    .article-title {
        font-size: 2.5rem;
    }
    .article-meta {
        font-size: 1rem;
    }
}
.article-content { line-height: 1.9; font-size: 1.1rem; }
.article-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 1.5rem 0; }
.comment-list .comment-item { border-bottom: 1px solid #eee; padding: 1.5rem 0; }
.comment-list .comment-item:last-child { border-bottom: none; }
.comment-form-wrapper { background-color: #f8f9fa; padding: 2rem; border-radius: 10px; }

/* Halaman Generik (Arsip, Regulasi, dll) */
.page-section { background-color: #fff; }
.page-header-section {
    padding: 80px 0; position: relative; color: white;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}
.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
    opacity: 0.1;
}
.page-header-section .page-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; }
.page-header-section .lead {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Improved Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Modern Badge Styles */
.badge {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pagination */
.pagination .page-link { color: var(--primary-color); border-color: #ddd; }
.pagination .page-item.active .page-link { background-color: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.pagination .page-item.disabled .page-link { color: #6c757d; }

/* Halaman Struktur & Detail Bidang */
.section-title-small {
    font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700;
    margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}
.leader-profile-card {
    text-align: center; padding: 1.5rem; background-color: #f8f9fa;
    border-radius: 10px;
}
.leader-profile-card img {
    max-width: 100px; width: 100px; height: 100px; object-fit: cover;
    border-radius: 50%; border: 3px solid var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.leader-profile-card .leader-name { margin-bottom: 0; font-family: var(--font-body); font-weight: 600; }
.kegiatan-list .kegiatan-item {
    display: flex; gap: 20px; background-color: #fff; border: 1px solid var(--border-color);
    border-radius: 10px; padding: 15px; margin-bottom: 20px;
}
.kegiatan-foto { flex-shrink: 0; }
.kegiatan-foto img { width: 150px; height: 100px; object-fit: cover; border-radius: 8px; }
.kegiatan-tanggal { font-size: 0.8rem; font-weight: 600; color: var(--text-light); }
.kegiatan-judul { font-family: var(--font-heading); font-size: 1.2rem; margin: 5px 0; }
.kegiatan-deskripsi { font-size: 0.9rem; color: var(--text-light); }

/* STYLE UNTUK STRUKTUR ORGANISASI */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; overflow-x: auto;
    padding-bottom: 15px; -ms-overflow-style: none;
    scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar .btn {
    border-radius: 50px; font-weight: 500;
    padding: 8px 25px; border-width: 2px;
}
.filter-bar .btn-primary { background-color: var(--primary-color); border-color: var(--primary-color); color: white; }
.filter-bar .btn-outline-primary { color: var(--primary-color); border-color: var(--primary-color); }
.filter-bar .btn-outline-primary:hover { background-color: var(--primary-color); color: white; }
.organization-chart { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.member-card {
    background-color: #f8f9fa; border-radius: 10px; border: 1px solid #eee;
    width: 300px; transition: all 0.3s ease;
}
.member-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.member-link { text-decoration: none; color: var(--text-dark); display: flex; align-items: center; padding: 15px; }
.member-photo {
    width: 80px; height: 80px; border-radius: 50%;
    object-fit: cover; margin-right: 15px;
    border: 3px solid var(--primary-color);
}
.member-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.member-info { flex: 1; min-width: 0; }
.member-info .badge { white-space: normal; text-align: left; line-height: 1.4; }
.member-title { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.5rem; }

/* STYLE UNTUK HALAMAN FEEDBACK */
.feedback-section {
    background-color: #f8f9fa;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-label {
    cursor: pointer;
    margin: 0;
    position: relative;
}

.rating-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.rating-star {
    font-size: 1.8rem;
    color: #ddd;
    transition: all 0.2s ease;
    user-select: none;
}

.rating-label:hover .rating-star {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-label input[type="radio"]:checked + .rating-star {
    color: #ffc107;
}

.feature-box {
    padding: 2rem 1rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feedback-form .form-control {
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.feedback-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25);
}

.feedback-form .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feedback-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.3);
}

/* Mobile Navbar Styling */
.navbar-toggler {
    border: 2px solid rgba(106, 17, 203, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Styling khusus untuk halaman Tulisanku */
.article-card.h-100 {
    height: 100% !important;
    transition: all 0.3s ease;
}

.article-card.h-100:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-img-container {
    position: relative;
    overflow: hidden;
}

.card-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.1), rgba(177, 155, 217, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover .card-img-container::after {
    opacity: 1;
}

.btn-outline-primary.btn-sm {
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.3);
}