/* ======================================== */
/* SAMBUTAN.CSS - HALAMAN SAMBUTAN KEPSEK   */
/* Tema Biru Putih Modern - Selaras dengan Guru */
/* ======================================== */

:root {
    --primary-blue: #0a4d8c;
    --secondary-blue: #1e6eb5;
    --accent-blue: #3498db;
    --light-blue: #eef5fc;
    --pure-white: #ffffff;
    --soft-white: #f8fafd;
    --text-dark: #2c3e50;
    --text-light: #5a6a7a;
    --border-light: #d9e6f2;
    --shadow: 0 10px 30px rgba(10, 77, 140, 0.08);
    --shadow-hover: 0 15px 40px rgba(10, 77, 140, 0.12);
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========== BANNER HALAMAN (DIPERBAIKI) ========== */
.page-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    margin-bottom: 3rem;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
    color: var(--pure-white);
    font-weight: 500;
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--accent-blue);
    margin: 0 auto 1rem;
    border-radius: 4px;
}

.subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
}

/* ========== SAMBUTAN SECTION ========== */
.sambutan-section {
    padding: 0 0 4rem;
}

.sambutan-card {
    background: var(--pure-white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.sambutan-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2.5rem;
}

.sambutan-foto-wrapper {
    position: relative;
}

.sambutan-foto {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--pure-white);
    outline: 2px solid var(--border-light);
}

.sambutan-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-quote {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    border: 3px solid var(--pure-white);
}

.foto-caption-mobile {
    display: none;
    text-align: center;
    margin-top: 1rem;
}

.foto-caption-mobile h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.foto-caption-mobile p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.sambutan-isi-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sambutan-header-desktop h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.sambutan-header-desktop .jabatan {
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-weight: 500;
}

.sambutan-isi {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
    text-align: justify;
}

.sambutan-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.signature p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.signature-line {
    margin: 0.5rem 0 0.2rem;
}

.signature-line strong {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.nip {
    color: var(--text-light);
    font-size: 0.9rem;
}

.sambutan-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.sambutan-date i {
    color: var(--accent-blue);
}

.info-tambahan {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    background: var(--light-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.info-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.no-data {
    text-align: center;
    padding: 4rem;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.no-data i {
    font-size: 4rem;
    color: var(--border-light);
    margin-bottom: 1rem;
}

.no-data p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-kembali {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: var(--pure-white);
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-kembali:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-kembali i {
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .sambutan-content {
        grid-template-columns: 250px 1fr;
        padding: 2rem;
    }
    
    .sambutan-foto {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .sambutan-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .sambutan-foto-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sambutan-foto {
        height: 280px;
    }
    
    .sambutan-header-desktop {
        display: none;
    }
    
    .foto-caption-mobile {
        display: block;
    }
    
    .sambutan-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .info-tambahan {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .button-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .sambutan-foto {
        height: 250px;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .btn-kembali {
        width: 100%;
        justify-content: center;
    }
}