/* public/assets/css/landing-man2.css */

:root {
    --kemenag-green: #065F46; /* Emerald 800 */
    --kemenag-light: #10B981; /* Emerald 500 */
    --kemenag-dark: #022C22; /* Emerald 950 */
    --kemenag-gold: #F59E0B; /* Amber 500 */
    --gold-hover: #D97706; /* Amber 600 */
    --text-light: #F9FAFB;
    --text-muted: #D1D5DB;
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.15);
}

body.landing-man2 {
    /* Background Hijau Zamrud dengan ornamen pattern Islami SVG (Data URI) */
    background-color: var(--kemenag-dark);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.4) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    font-family: 'Nunito', sans-serif;
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 2rem 1rem;
}

/* Header & Logos */
.brand-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.school-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    border: 2px solid var(--kemenag-gold);
}

.app-title {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.school-name {
    font-size: 1.25rem;
    color: var(--kemenag-gold);
    font-weight: 700;
    margin-top: 0.25rem;
}

/* Navigation Cards (Mobile First) */
.nav-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 0.8s ease-out;
}

.nav-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none !important;
    color: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-card:hover, .nav-card:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--kemenag-gold);
    transform: translateY(-3px);
    color: #fff;
}

.nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Icon Colors */
.icon-gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--kemenag-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: var(--kemenag-light);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.icon-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-text {
    flex-grow: 1;
}

.nav-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    display: block;
}

.nav-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    display: block;
}

.nav-arrow {
    color: var(--kemenag-gold);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.landing-footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeIn 1.5s ease-out;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
