.fontbold {
  font-weight: 1000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: Black;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    min-height: 280vh;
    display: flex;
    flex-direction: column;
}

.bg-video {
    position: absolute;
    opacity: 0.4;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    pointer-events: none; 
    user-select: none;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25px, 1fr));
    overflow: hidden;
    opacity: 1;
    color: #ffffff;
    font-family: monospace;
    font-size: 18px;
    line-height: 1.2;
    pointer-events: none;
    user-select: none;
}
.bg-pattern span {
    text-align: center;
    font-weight: bold;
}

/* --- Layout Utama --- */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

/* --- Header / Navigasi --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5vw 4vw;
}

.logo {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 1px;
}

.logo .highlight {
    color: #ccff00; /* Warna kuning neon */
}

nav {
    display: flex;
    gap: 25px;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    font-weight: 300;
}

.imageone{
  width: 80%;
  height: 80%;
  position: relative;
  left:50%;
  top: 2%;
  transform: translateX(-50%);
  pointer-events: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

/* --- Main Content --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2.5vw;
}

/* --- Judul "I'M ZAKDEV" --- */
.hero-top {
    text-align: center;
    margin-top: 1vh;
}

.main-title {
    font-family: 'Arial Black';
    line-height: 1;
    letter-spacing: -2px;
    display: flex;
    margin-top: 10px;
    font-weight: 900;
    justify-content: center;
    gap: 2vw;
    text-transform: uppercase;
}

.main-title .text-im {
    font-size: 63px;
    background: linear-gradient(
        to bottom,
        #929ba8 0%,
        #c9cfd8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.main-title .text-im2 {
    font-size: 43px;
    background: linear-gradient(
        to bottom,
        #929ba8 0%,
        #c9cfd8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 2px;
}

.main-title .text-name  {
    font-size: 63px;
    background: linear-gradient(
        to bottom,
        #929ba8 0%,
        #c9cfd8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.hero-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Permanent Marker', cursive;
    color: #ffffff;
    /* Efek glow biru/cyan halus */
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(160, 220, 240, 0.6),
        0 0 30px rgba(160, 220, 240, 0.3);
    margin: 4vh 0;
}

.art-word {
    line-height: 0.8;
    letter-spacing: 2px;
}

.word-follow {
    font-size: clamp(4rem, 11vw, 12rem);
    transform: rotate(-3deg);
    margin-left: -4vw;
}

.word-zakdev {
    font-size: clamp(5rem, 14vw, 15rem);
    transform: rotate(2deg);
    margin-top: 1vw;
}

.word-pro {
    font-size: clamp(3.5rem, 10vw, 11rem);
    transform: rotate(-1deg);
    margin-left: 2vw;
    margin-top: 1vw;
}

/* --- Bagian Bawah --- */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4vw;
}

.description {
    font-size: clamp(0.7rem, 1.1vw, 1.2rem);
    line-height: 1.6;
    color: #e0e5eb;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.btn-contact {
    background: linear-gradient(135deg, #710a91 0%, #a91c89 100%);
    border-radius: 50px;
    width: 40%;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(169, 28, 137, 0.4);
}
.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(169, 28, 137, 0.4);
}

.btn-contact2 {
    background: linear-gradient(135deg, #710a91 0%, #a91c89 100%);
    border-radius: 50px;
    width: 40%;
    padding: 9px;
    color: #ffffff;
    border: solid 1px white;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(169, 28, 137, 0.4);
}
.btn-contact2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(169, 28, 137, 0.4);
}


.VideoX {
    display: block;
    width: 100%;
    margin-top: 64px;
    margin-bottom: 74px;
    pointer-events: none;
    z-index: 9;
}

/* --- Responsivitas untuk layar Mobile (Stacking) --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 5vw;
    }
    .hero-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 5vw 5vw;
    margin-top: 10px;
}
    .main-title {
        font-size: 15vw;
    }
}

.Efct-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    margin-top: 295%;
    margin-right: 100px;
    z-index: -1;
    gap: 190px;
    opacity: 0; /* awalnya disembunyikan */
}
.Efct-container.show{
    animation: Effect 1s ease-in-out forwards;
}
@keyframes Effect{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.mydecription {
  margin-top: 32px;
  text-align: center;
  position: relative;
  left:50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 20px;
  font-family: Sans-Serif;
  font-weight: 700;
  color: #e0e5eb;
  font-size: 17.5px;
}

.ftc {
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 140px;
  position: absolute;
  top: 260%;
  left: 52.5%;
  transform: translateX(-50%);
  margin-top: 0px;
  z-index: -1;
}

        .stack-card {
            background: linear-gradient(145deg, rgba(122,13,255,0.15), rgba(122,13,255,0.03));
            border-radius: 16px;
            padding: 30px 24px;
            box-shadow: 0 0 25px rgba(122,13,255,0.2);
        }
        .stack-card-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            color: #7a0dff;
            text-shadow: 0 0 15px rgba(122,13,255,0.7);
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 900;
        }
        .stack-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .stack-tag {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 13px;
            color: #fff;
            background: rgba(122,13,255,0.15);
            border: 1px solid rgba(122,13,255,0.5);
            border-radius: 20px;
            padding: 7px 16px;
        }
        .ai-card {
            background: #0d0d14;
            border-radius: 20px;
            padding: 34px 26px;
            animation: rainbowBorder 4s linear infinite;
            margin-top: 24px;
        }
        .ai-card-title {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            font-size: 22px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 18px;
            background: linear-gradient(90deg, #ff2d75, #ff9d2d, #f4ff2d, #2dffb0, #2d9dff, #ff2d75);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: rainbowShift 5s linear infinite;
        }
        @keyframes rainbowShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }
        .ai-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .ai-tag {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: #fff;
            padding: 9px 18px;
            border-radius: 20px;
            background: linear-gradient(90deg, rgba(255,45,117,0.25), rgba(45,157,255,0.25));
            border: 1px solid rgba(255,255,255,0.25);
        }
        .stack-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 700px) {
            .stack-grid { grid-template-columns: 1fr; }
        }