/* Reset dan Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, black);
    color: #ffffff;
    overflow-x: hidden;
}
h1, h2, h3 {
    font-weight: bold;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin: 0 1rem;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}
nav a:hover {
    color: #8a2be2;
}

/* Hero Section dengan 3D Effect */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    perspective: 1000px;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left:50%;
    width:auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur (10px) brightness(0.6);
    z-index: -1 ;
    
}
   
.hero-content {
    transform-style: preserve-3d;
    animation: float 3s ease-in-out infinite;
}
.hero h1 {
    font-size: 3rem;
    color: #555456;
    transform: translateZ(50px);
}
.hero p {
    font-size: 1rem;
    font-style: italic;
    margin: 1rem 0;
    transform: translateZ(30px);
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Umum */
section {
    padding: 6rem 2rem;
}
.hero {
    height: 90vh;
}
.container {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

/* About Section */
.about {
    background-color: black;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.about .container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding-top: 120px;
}

.about h2 {
    font-size: 3rem;
    color:#555456;
    text-align: center;
    margin-bottom: 3rem;
    display: block;
    width: 100%;
}

.about p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
   
/* Gallery */
.gallery {
    background: black;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.gallery-item {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    transform: rotateY(0deg);
    transition: transform 0.5s;
    box-shadow: 0 10px 30px black;
}
.gallery-item:hover {
    transform: rotateY(10deg) scale(1.05);
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Testimonials */
.testimonials {
    background: rgb(24, 24, 24);
}
.testimonial {
    background: #1a1a1a;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px black;
    transform: translateZ(0);
    transition: transform 0.5s;
}
.testimonial:hover {
    transform: translateZ(20px);
}
.highlights{
            background: black;
        }
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .highlight-item {
            background: black;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgb(37, 37, 37);
            transform: translateZ(0);
            transition: transform 0.5s;
        }
        .highlight-item:hover {
            transform: translateZ(20px);
        }
        .highlight-item i {
            font-size: 3rem;
            color: #d9d7d7;
            margin-bottom: 1rem;
        }
        .highlight-item h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .technologies {
            background: rgb(24, 24, 24);
        }
        .technologies-grid {
            display: grid;
            grid-template-columns: repeat(3, 150px);
            gap: 1.5rem;
            justify-content: center
        }
        .technology-item {
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1;
        }
        .technology-item:hover {
            transform: translateZ(20px);
        }
        .technology-item i {
            font-size: 3rem;
            color: whitesmoke;
            margin-bottom: 1rem;
        }
        .technology-item h3 {
            font-size: 1.2rem;
        }

     /* Find Me (sebelumnya Contact) */
        .contact {
            background: black;
        }
        .contact .container {
            max-width: 600px; /* Kontainer diperkecil agar tidak terlalu besar */
        }
        .contact h2 {
            color: #ffffff; /* Judul "Find Me On" warna putih */
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .contact .subtitle {
            color: #222222; /* Subjudul warna ungu */
            font-size: 1rem; /* Ukuran lebih kecil */
            text-align: center;
            margin-bottom: 2rem;
        }
        /* Social Media Icons */
        .social-media {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 0;
        }
        
        .social-media a {
            color: #ffffff;
            font-size: 2rem;
            transition: color 0.3s, transform 0.3s;
            text-decoration: none;
        }
        .social-media a:hover {
            color: #0e0e0e;
            transform: scale(1.2);
        }
        /* Footer */
        footer {
            background: #000000;
            text-align: center;
            padding: 1rem;
        }
        /* 3D Scroll Animation */
        .scroll-element {
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
            transition: all 1s ease;
        }
        .scroll-element.in-view {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
        }
        #technologies h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 3rem;
            color: #555456;
        }

        #highlights h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 3rem;
            color:#555456
        }

        #testimonials h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 3rem;
            color: #555456;
        }

        #gallery h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 3rem;
            color:#555456;
        }

