/* public/css/tentang.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #0f172a;       /* Midnight Navy */
    --accent: #c5a059;        /* Muted Luxury Gold */
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
}

/* Hero Banner Section */
.hero-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 20px 100px;
    text-align: center;
    color: var(--white);
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.hero-banner p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Tentang */
.about-section {
    padding: 100px 0;
}

/* Layout Konten Alternating (Z-Pattern) */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.content-wrapper:last-child {
    margin-bottom: 0;
}

/* Membuat selang-seling kiri kanan */
.content-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.content-image-container {
    flex: 1;
}

.content-image-container img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.content-image-container img:hover {
    transform: scale(1.02);
}

.content-text-container {
    flex: 1;
}

.content-text-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.content-text-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-top: 15px;
    border-radius: 2px;
}

.content-text-container p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: justify;
}

/* Call to Action (CTA) Box */
.cta-box {
    background: var(--primary);
    padding: 80px 40px;
    border-radius: 32px;
    color: var(--white);
    text-align: center;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Hiasan halus di dalam CTA */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
}

.btn-highlight {
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-highlight:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Responsivitas */
@media (max-width: 992px) {
    .content-wrapper, .content-wrapper:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .content-text-container h2::after {
        margin: 15px auto;
    }
    
    .hero-banner { padding: 100px 20px 60px; }
}