/* Brief Summary Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/briefsummary/brief.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}


.hero-section h1 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* History Section */
.history-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.history-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 100%;
    margin-top: 50px;
}

.history-images img:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 350px;
}

.history-images img:nth-child(2),
.history-images img:nth-child(3) {
    grid-column: 2;
    height: 171px;
}

.history-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #202820;
    text-align: justify;
}

.history-text h2 {
    color: #202820;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.history-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 175px; /* Menyamakan tinggi baris */
    gap: 5px;
    
}

.history-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.history-images img:first-child {
    grid-column: 1;
    grid-row: span 2; /* Menempati dua baris */
}


/* Company Description */
.company-description {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.company-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: justify;
}

.contact-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-section ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #4CAF50;
}



/* Responsive Design */
@media (max-width: 768px) {
    .history-section {
        grid-template-columns: 1fr;
    }

    .history-images {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 200px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .history-text h2 {
        font-size: 22px;
    }

    .history-text {
        font-size: 16px;
    }

    .company-description p {
        font-size: 16px;
    }

    .contact-section ul li {
        font-size: 14px;
    }
}