/**
 * About Page Styles
 * 
 * Stylesheet untuk halaman Tentang Kami dengan desain premium
 * @package Prestige
 */

/* ===================================
   HERO SECTION
   =================================== */

.about-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    background-size: 60px 60px;
    opacity: 0.5;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===================================
   CONTENT SECTION
   =================================== */

.about-content-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-article {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-entry-content {
    padding: 50px;
}

/* Featured Image */
.about-image-wrapper {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.about-featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}

/* Description */
.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Vision & Mission */
.about-vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-box {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-box-icon i {
    font-size: 1.75rem;
    color: white;
}

.about-box h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .about-hero {
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .about-entry-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 250px;
    }

    .about-hero-content {
        padding: 40px 15px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-content-section {
        padding: 40px 0;
    }

    .about-entry-content {
        padding: 30px 20px;
    }

    .about-vision-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-box {
        padding: 1.5rem;
    }

    .about-box-icon {
        width: 60px;
        height: 60px;
    }

    .about-box-icon i {
        font-size: 1.5rem;
    }

    .about-box h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-entry-content {
        padding: 25px 15px;
    }

    .about-description {
        font-size: 1rem;
    }
}