        :root {
            --primary-gradient: #1a1a1a;
            --secondary-gradient: #2d2d2d;
            --accent-color: goldenrod;
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        /* Custom Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.8s ease-out;
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        /* Header */
        .navbar {
            background: var(--primary-gradient);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            background-clip: text;
            background: linear-gradient(45deg, #fff, #f0f8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            /* transition: all 0.3s ease; */
            margin: 0 5px;
            /* font-size: 18px; */
        }

        .navbar-nav .nav-link:hover {
            color: goldenrod !important;
        }

        .navbar-nav .nav-link.active {
            color: goldenrod !important;
        }

        /* Hero Section */
        .hero {
            background: var(--primary-gradient);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .btn-custom {
            background: var(--secondary-gradient);
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            color: white;
        }

        /* Section Styling */
        .section-padding {
            padding: 40px 0;
        }

        .section-title {
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            /* margin-bottom: 15px; */
        }

        .page-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
        }

        /* About Section */
        .about {
            background: #f8f9fa;
        }

        /* Articles Section */
        .article-card {
            border: none;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            background: #fff;
            color: var(--secondary-gradient);
        }

        .article-card:hover {
            transform: scale(1.03);
            background-color: var(--secondary-gradient);
            color: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Untuk memastikan semua teks ikut jadi putih saat hover */
        .article-card:hover .card-title,
        .article-card:hover .article-meta,
        .article-card:hover .btn {
            color: #fff;
            border-color: #fff;
        }

        .article-card img {
            height: 200px;
            object-fit: cover;
            transition: all 0.1s ease;
        }

        .article-card:hover {
            transform: scale(1.05);
            /* Bisa 1.05 atau sesuai keinginan */
            background-color: var(--secondary-gradient);
            color: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            z-index: 2;
            /* Tambahan agar naik di atas elemen lain */
            position: relative;
        }

        /* Photos Gallery */
        .photo-card {
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: white;
        }

        .photo-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .photo-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }

        .photo-card:hover .photo-overlay {
            transform: translateY(0);
        }

        .price-tag {
            background: var(--accent-color);
            color: black;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        

        /* Footer */
        .footer {
            background: var(--primary-gradient);
            color: white;
            padding: 50px 0 20px;
        }

        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 10%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-gradient);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }
