/* Navbar */
        .navbar {
            background: linear-gradient(90deg, #FAF3D6, #F5C77A);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .navbar-logo {
            width: 66px;
            height: 66px;
            object-fit: cover;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 32px;
            color: #000000;
        }

        .navbar-nav {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }

        .navbar-nav .nav-link {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 24px;
            color: #000000;
            text-decoration: none;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

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

        .navbar-nav .nav-link.active {
            color: #000000;
            border-bottom: 3px solid #E4947D;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(90deg, #FAF3D6, #F5C77A);
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 32px;
            color: #000000;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: #000000;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }


        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
        padding-top: 120px;
            background-color: #fff;
            color: rgb(255, 255, 255)fff;
        }

        .header {
            background-color: #f9f2d7;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ffffff;
        }

        .logo {
            width: 50px;
            height: 50px;
            margin-right: 10px;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .site-title {
            font-size: 24px;
            font-weight: bold;
            color: #000;
        }

        .breadcrumb {
            padding: 15px 20px;
            font-size: 16px;
            color: #ffffff;
        }

        .breadcrumb a {
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
        }

        .breadcrumb span {
            color: #ffffff;
        }

        .page-title {
            text-align: center;
            padding: 20px 0;
            font-size: 32px;
            font-weight: bold;
            text-transform: uppercase;
        }

      .gallery-container {
    padding: 20px;
    display: grid;                      /* wajib */
    grid-template-columns: repeat(3, 1fr);  /* 3 kolom */
    gap: 20px;
    max-width: 1200px;                  /* agar tidak melebar */
    margin: 0 auto;
}

.artikel-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .artikel-content {
        padding: 15px;
    }
}

        .footer {
            background-color: #FAF3D6;
            padding: 3rem 2rem 1rem;
            margin-top: 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            width: 102px;
            height: 102px;
            object-fit: cover;
        }

        .footer-text {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: #000000;
            line-height: 1.875;
            letter-spacing: 0.32px;
        }

        .footer-heading {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 30px;
            color: #000000;
            margin-bottom: 1rem;
        }

        .footer-info .info-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: #000000;
            letter-spacing: 0.32px;
            margin-bottom: 0.5rem;
        }

        .footer-info .info-text {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: #000000;
            line-height: 1.875;
            letter-spacing: 0.32px;
        }

        .footer-menu {
            list-style: none;
            padding: 0;
        }

        .footer-menu li {
            margin-bottom: 0.5rem;
        }

        .footer-menu li a {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: #000000;
            text-decoration: none;
            letter-spacing: 0.32px;
            transition: color 0.3s ease;
            display: block;
        }

        .footer-menu li a:hover {
            color: #E4947D;
        }

        .footer-social {
            list-style: none;
            padding: 0;
        }

        .footer-social li {
            margin-bottom: 0.75rem;
        }

        .footer-social li a {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: #000000;
            text-decoration: none;
            letter-spacing: 0.32px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-social li a:hover {
            color: #E4947D;
        }

        .footer-social li a i {
            font-size: 18px;
        }

        .footer-bottom {
            background-color: #F1B6A4;
            margin-top: 2rem;
            padding: 1rem 2rem;
            text-align: center;
        }

        .footer-bottom p {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: #000000;
            letter-spacing: 0.32px;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .navbar-brand {
                font-size: 24px;
            }

            .navbar-nav .nav-link {
                font-size: 18px;
                gap: 1rem;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .navbar-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero-title {
                font-size: 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
        }
