/* ============================================================
   LANDING PAGE STYLE - SISTEM INVENTARIS LABORATORIUM
   ============================================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fc;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: #3B82F6;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-sekolah {
    width: 45px;
    height: 45px;
    border-radius: 0px;
    object-fit: cover;
    border: 0px solid #e8ecf1;
}

.navbar-school-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.navbar-action {
    display: flex;
    align-items: center;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #3451c7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #3451c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67, 103, 238, 0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px;
    background: linear-gradient(rgba(30, 42, 74, 0.78), rgba(21, 32, 59, 0.85)), 
                url('/assets/images/bg-landing.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-container {
    text-align: center;
    max-width: 700px;
}

.hero-icon {
    margin-bottom: 24px;
    display: inline-block;
    background: rgba(67, 103, 238, 0.08);
    padding: 24px;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

/* Style untuk gambar ikon */
.hero-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 16px;
    color: #A8C4E8;
    margin-bottom: 32px;
    line-height: 1.8;
}
aaaa
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: #3B82F6;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(67, 103, 238, 0.35);
}

.btn-cta-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 103, 238, 0.45);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #3B82F6;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    padding: 80px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #636e7b;
    margin-bottom: 48px;
    font-size: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;       /* Tepat 2 kolom */
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #c8d4f0;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f0f3ff;
    border-radius: 50%;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: #636e7b;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #1a1a2e;
    padding: 24px 20px;
}

.footer-container {
    text-align: center;
}

.footer-text {
    color: #a0a8b7;
    font-size: 13px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        padding: 18px;
    }
    
    .hero-icon-img {
        width: 60px;
        height: 60px;
    }

    .hero-title {
        font-size: 26px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-container {
        padding: 10px 16px;
    }
    
    .logo-sekolah {
        width: 36px;
        height: 36px;
    }
    
    .btn-login {
        padding: 8px 18px;
        font-size: 13px;
    }
}