/* ========================================
   SEKOLAH - School Landing Page Stylesheet
   Responsive & Modern Design
   Color Scheme: Emerald Green + Gold (Premium Education Theme)
======================================== */

:root {
    --primary-green: #10B981;      /* Emerald Green - Primary */
    --dark-green: #059669;         /* Dark Green - Hover/Dark */
    --light-green: #34D399;        /* Light Green - Accent */
    --gold: #F59E0B;               /* Gold/Yellow - Highlight & CTA */
    --dark-gold: #D97706;          /* Dark Gold - Hover */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F3F4F6;
    --gray: #9CA3AF;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.text-muted {
    color: #6c757d;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid #10B981;
    color: #10B981;
}

.btn-outline:hover {
    background: #10B981;
    color: white;
}

.btn-light {
    background: white;
    color: #10B981;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-success:hover {
    background: #1e8449;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* HEADER / TOPBAR */
.topbar {
    background: #065F46;
    color: #ECFDF5;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-contact a {
    margin-right: 1rem;
    color: #ecf0f1;
    transition: color 0.3s;
}

.topbar-contact a:hover {
    color: #667eea;
}

.topbar-social a {
    margin-left: 0.5rem;
    color: #ecf0f1;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.topbar-social a:hover {
    color: #667eea;
}

/* NAVBAR */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    font-size: 0.9rem;
    color: #6B7280;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1F2937;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
    color: #333;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #10B981;
}

.nav-cta {
    display: flex;
    gap: 0.5rem;
}

.nav-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

.btn-login {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.btn-logout {
    background: #e74c3c;
    color: white;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 185, 129, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #065F46;
}

.hero h2 span {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-box h3 {
    font-size: 2rem;
    color: #10B981;
    margin-bottom: 0.5rem;
}

/* FEATURES SECTION */
.features {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #065F46;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.8;
}

/* PROFIL SECTION */
.profil {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
}

.profil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.profil-image {
    display: flex;
    justify-content: center;
}

.profil-img-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profil-content h2 {
    font-size: 2.5rem;
    color: #065F46;
    margin-bottom: 1.5rem;
}

.profil-content > p {
    margin-bottom: 1rem;
    color: #6B7280;
    line-height: 1.8;
}

.profil-list {
    margin: 2rem 0;
}

.profil-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #065F46;
}

.profil-list i {
    color: #10B981;
}

/* JURUSAN SECTION */
.jurusan {
    background: #F9FAFB;
}

.jurusan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.jurusan-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.jurusan-card:hover {
    transform: translateY(-5px);
}

.jurusan-image {
    height: 150px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.jurusan-body {
    padding: 1.5rem;
}

.jurusan-body h3 {
    font-size: 1.3rem;
    color: #065F46;
    margin-bottom: 1rem;
}

.jurusan-body > p {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.jurusan-link {
    color: #667eea;
    font-weight: 600;
    transition: color 0.3s;
}

.jurusan-link:hover {
    color: #764ba2;
}

/* BERITA SECTION */
.berita {
    background: #F3F4F6;
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.berita-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.berita-date {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 1rem;
    text-align: center;
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.date-month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

.berita-body {
    padding: 1.5rem;
}

.berita-body h3 {
    font-size: 1.2rem;
    color: #065F46;
    margin-bottom: 1rem;
}

.berita-body > p {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.berita-link {
    color: #10B981;
    font-weight: 600;
}

/* CTA SECTION */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FOOTER */
.footer {
    background: #065F46;
    color: #ECFDF5;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #D1FAE5;
}

.footer > p {
    color: #D1FAE5;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul a {
    color: #D1FAE5;
    transition: color 0.3s;
}

.footer ul a:hover {
    color: #F59E0B;
}

.footer-social {
    display: flex;

(End of file content)
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #F59E0B;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #D1FAE5;
}

/* AUTH PAGES */
.auth-body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo i {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.auth-logo h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #667eea;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: #667eea;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: #764ba2;
}

/* ADMIN DASHBOARD */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-danger {
    background: #fee2e2;
    color: #dc2626;
}

.badge-warning {
    background: #fef3c7;
    color: #ca8a04;
}

.badge-info {
    background: #dbeafe;
    color: #2563eb;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
    }

    .profil-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        margin-left: 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .jurusan-grid,
    .berita-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }
}

/* Dynamic Banner Text Color Fix */
.hero.has-banner h2 { color: #ffffff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero.has-banner p { color: #f3f4f6 !important; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.hero.has-banner .stat-box { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.hero.has-banner .stat-box h3, .hero.has-banner .stat-box p { color: white; }
