/* ===================================================
   Informasi Umum — Page-Specific Custom Styles
   
   These styles ONLY cover the content sections unique
   to this page (hero, potensi, stats). All layout,
   header, sidebar, and base component styling is
   handled by Skote + current.css (= custom.css on live).

   INTEGRATION: Merge these rules into your custom.css
   on the live server. All class names are prefixed with
   "info-" to avoid conflicts with existing styles.
   =================================================== */


/* ======================================
   HERO SECTION
====================================== */
.info-hero__tagline {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 48px;
}

.info-hero__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.info-hero__image-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.info-hero__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 420px;
}

.info-hero__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #666666;
    max-width: 82%;
    margin: 0;
}

.info-hero__image-secondary {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


/* ======================================
   POTENSI SECTION
====================================== */
.info-potensi {
    text-align: center;
}

.info-potensi__title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 20px;
}

.info-potensi__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    padding: 20px 40px 40px;
    margin: 0;
}

.info-potensi__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


/* ======================================
   STATS SECTION
====================================== */
.info-stats__title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 60px;
    max-width: 600px;
}

.info-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.info-stat-card {
    border-radius: 12px;
    overflow: hidden;
    min-height: 240px;
    position: relative;
}

/* Cream / light cards */
.info-stat-card--light {
    background: #FFFBF0;
    border: 1px solid #EDE8D8;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Dark green accent cards */
.info-stat-card--accent {
    background: #1B3D2A;
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Image cards */
.info-stat-card--image {
    background: #ddd;
}

.info-stat-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Number typography */
.info-stat-card__number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.info-stat-card__number--dark {
    color: #1a1a1a;
}

/* Label typography */
.info-stat-card__label {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
}

.info-stat-card--accent .info-stat-card__label {
    color: rgba(255, 255, 255, 0.8);
}


/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 992px) {
    .info-hero__tagline,
    .info-potensi__title,
    .info-stats__title {
        font-size: 32px;
    }

    .info-hero__grid {
        grid-template-columns: 1fr;
    }

    .info-hero__image-main {
        height: 260px;
    }

    .info-hero__right {
        height: auto;
    }

    .info-hero__image-secondary {
        height: 200px;
        flex: none;
    }

    .info-potensi__image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .info-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-hero__tagline,
    .info-potensi__title,
    .info-stats__title {
        font-size: 26px;
    }

    .info-potensi__desc {
        padding: 16px 0 24px;
    }
}

@media (max-width: 480px) {
    .info-stats__grid {
        grid-template-columns: 1fr;
    }

    .info-hero__tagline,
    .info-potensi__title,
    .info-stats__title {
        font-size: 22px;
    }

    .info-stat-card__number {
        font-size: 32px;
    }
}
