        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        :root {
            --primary-color: #2C3E50;
            --secondary-color: #D4AF37; /* Warna emas klasik */
            --bg-color: #F8F9FA;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Navigasi --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(44, 62, 80, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../Gallery/10.jpeg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Efek Parallax */
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            color: var(--text-light);
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards 0.5s;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--secondary-color);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* --- About Section --- */
        .about {
            padding: 100px 10%;
            display: flex;
            align-items: center;
            gap: 50px;
            background-color: var(--text-light);
        }

        .about-text {
            flex: 1;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #666;
            text-align: justify;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        span {
            color: var(--secondary-color);
            font-style: italic;
            font-weight: 650;
            
        }
        

        /* --- Features Section --- */
        .features {
            padding: 100px 10%;
            background-color: var(--bg-color);
            text-align: center;
        }

        .features .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--text-light);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background-color: var(--secondary-color);
        
        }
        

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background-color: #f0f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-card h3 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }


        /* Gallery Section */
        .gallery {
            padding: 100px 10%;
            background-color: var(--text-light);
            text-align: center;
        }

        .gallery .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.8);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay h3 {
            transform: translateY(0);
        }

        /* --- CSS Tambahan untuk Fitur Modal/Lightbox Preview --- */
        .modal {
            display: none; /* Sembunyikan secara default */
            position: fixed;
            z-index: 2000; /* Pastikan berada di atas navbar */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9); /* Latar belakang gelap transparan */
            opacity: 0;
            transition: opacity 0.3s ease;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
            transform: scale(0.8);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        #caption {
            margin-top: 15px;
            color: var(--text-light);
            font-family: var(--font-heading);
            font-size: 1.5rem;
            text-align: center;
            letter-spacing: 1px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: color 0.3s ease;
            cursor: pointer;
            z-index: 2001;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: var(--secondary-color);
            text-decoration: none;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
            padding: 30px 20px;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* --- Utilities & Animations --- */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsif untuk HP */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .about { flex-direction: column; }
            .nav-links { display: none; /* Sembunyikan menu di HP untuk kesederhanaan */ }
        }
