/* === GLOBAL === */
   body {
        /* Ambil style body dari detail.css, tapi pastikan padding-top ada */
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(to bottom right, #f1f5f9, #e8ecf3);
        color: #1f1f1f;
        margin: 0;
        padding-top: 70px; /* <--- PENTING untuk navbar fixed-top, sesuaikan nilainya */
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    /* align-items: center;
    justify-content: center; */
}

/* === SECTION WRAPPER === */
.detail-berita-section {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 950px;
    width: 90%;
    margin: 60px auto;
    animation: fadeIn 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* === HEADING === */
.detail-berita-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(43, 45, 66, 0.1);
    letter-spacing: 0.5px;
}

/* === IMAGE === */
.detail-berita-section img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}

.detail-berita-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* === CONTENT === */
.content-description {
    background: #fff;
    padding: 30px 35px;
    border-left: 5px solid #092c61;
    border-radius: 15px;
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 400;
    color: #333;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* === DATE === */
.text-muted {
    text-align: right;
    font-size: 0.95rem;
    font-style: italic;
    color: #6c757d;
}

/* === BACK BUTTON === */
.back-button {
    display: inline-block;
    background: linear-gradient(135deg, #092c61, #02034e);
    color: white;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    font-size: 1.05rem;
}

.back-button:hover {
    background: linear-gradient(135deg, #092c61, #02034e);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(230, 57, 70, 0.4);
}

/* === ANIMATION === */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .detail-berita-section {
        padding: 40px 25px;
    }

    .detail-berita-section h1 {
        font-size: 2.2rem;
    }

    .content-description {
        font-size: 1rem;
    }

    .back-button {
        font-size: 0.95rem;
        padding: 10px 24px;
    }
}

 /* General Body Style (from footer, can be overridden by detail.css if needed) */
        body {
          font-family: 'Poppins', sans-serif;
          /* margin: 0; padding: 0; -  Likely handled by Bootstrap or detail.css */
        }

        /* Navbar Styles */
        .navbar {
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            /* Add some padding-top to body if using fixed-top navbar to prevent content overlap */
            /* body { padding-top: 70px; } /* Adjust 70px based on your navbar height */
        }

        .navbar-nav .nav-item .nav-link {
            position: relative;
            font-size: 1rem;
            font-weight: 500;
            padding: 10px 15px;
            color: #333;
            margin-right: 20px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-item .nav-link::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: rgb(8, 38, 69);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-item .nav-link:hover::after {
            width: 100%;
        }

        .navbar-nav .nav-item .nav-link:hover {
            color: #002147;
        }

        .navbar-nav .nav-item .nav-link.active {
            color: #002147;
            font-weight: 700;
        }

        .navbar-nav .nav-item .nav-link.active::after {
            width: 100%;
        }

        .btn-login {
            background-color: #002147 !important;
            color: white !important;
            border: none !important;
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background-color: transparent !important;
            color: #002147 !important;
            border: 2px solid #002147 !important;
            transform: scale(1.05);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                text-align: left;
            }
            .navbar-nav {
                align-items: flex-end !important;
            }
            .navbar-nav .nav-item {
                width: 100%;
            }
            .navbar-nav .nav-link {
                display: inline-block;
                width: auto;
            }
            .btn-login {
                margin-right: auto;
            }
            .navbar .d-flex.ms-4 {
                justify-content: flex-end;
                width: 100%;
                margin-top: 10px;
            }
        }

        /* Footer Styles */
        footer {
          background: #002147;
          color: white;
          padding-top: 3rem;
          padding-bottom: 1.5rem;
          border-top: 2px solid #fff;
        }

        footer h5 {
          font-weight: 600;
          margin-bottom: 0.5rem;
          font-size: 1rem;
          text-transform: uppercase;
          letter-spacing: 1px;
          opacity: 0.8;
        }

        footer ul {
          padding-left: 0;
          margin-bottom: 0;
        }

        footer ul li {
          list-style: none;
          margin-bottom: 0.4rem;
          font-weight: 300;
          font-size: 0.85rem;
        }

        .footer-icon {
          display: flex;
          gap: 1.5rem;
          font-size: 1.8rem;
          justify-content: flex-start;
          margin-bottom: 0.5rem;
        }

        .footer-icon a {
          color: white;
          transition: color 0.3s ease, transform 0.3s ease;
          text-decoration: none;
        }

        .footer-icon a:hover {
          color: #ffc107;
          transform: scale(1.2);
        }

        .contact-text {
          font-weight: 300;
          font-size: 0.9rem;
          color: white;
        }

        footer img {
          width: 70px;
          height: 70px;
          object-fit: contain;
          background-color: white;
          padding: 6px;
          border-radius: 8px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          margin: 0 10px 1rem;
        }

        hr.footer-hr { /* Added class to differentiate from other hr if any */
          border-top: 2px solid rgba(255, 255, 255, 0.3);
          margin: 1.5rem 0;
        }

        @media (max-width: 767.98px) {
          .footer-icon {
            justify-content: center;
            flex-wrap: wrap;
          }
          .contact-text {
            text-align: center;
          }
          footer .col-md-2,
          footer .col-md-3 {
            text-align: center;
            margin-bottom: 1rem;
          }
          footer img {
            width: 60px;
            height: 60px;
          }
        }