:root {
    --brown: #a98d78;
    --brown-dark: #684a35;
    --brown-light: #c0a58f;
    --cream: #f5e7cf;
    --background: #faf7f1;
    --sage: #b8be91;
    --sage-dark: #899066;
    --text: #493629;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    height: 78px;
    background: var(--brown);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(72, 48, 32, 0.08);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-mark {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-size: 13px;
    letter-spacing: 2px;
}

.logo-text small {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cv-button {
    padding: 13px 20px;
    background: var(--background);
    color: var(--brown-dark);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cv-button:hover {
    transform: translateY(-3px);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 78px);
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(192, 165, 143, 0.25),
            transparent 28%
        ),
        var(--background);
}

.hero-container {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 52%;
    animation: heroEnter 0.8s ease forwards;
}

.hero-greeting {
    margin-bottom: 7px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-style: italic;
    color: var(--sage-dark);
}

.hero h1 {
    font-size: clamp(60px, 7vw, 92px);
    line-height: 0.9;
    letter-spacing: -5px;
    text-transform: uppercase;
    color: var(--brown-dark);
}

.hero h2 {
    margin-top: 25px;
    font-size: 17px;
    letter-spacing: 2px;
    color: var(--sage-dark);
}

.hero-description {
    max-width: 470px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #604b39;
}

/* =========================
   BUTTON
========================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.button.primary {
    background: var(--brown);
    color: white;
}

.button.primary:hover {
    background: var(--brown-dark);
    transform: translateY(-4px);
}

.button.secondary {
    border: 1px solid var(--brown);
    color: var(--brown-dark);
}

.button.secondary:hover {
    background: var(--brown);
    color: white;
    transform: translateY(-4px);
}

/* =========================
   SOCIAL
========================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c6aa92;
    border-radius: 50%;

    font-size: 10px;
    font-weight: bold;

    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--brown);
    color: white;
    transform: translateY(-4px);
}

/* =========================
   PROFILE
========================= */

.hero-visual {
    position: relative;
    width: 44%;
    height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    top: 70px;
    right: 20px;

    width: 430px;
    height: 430px;

    border-radius: 50%;
    background: rgba(184, 190, 145, 0.35);

    transition: transform 0.3s ease;
}

.profile-card {
    position: relative;
    z-index: 2;

    width: 380px;
    height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 190px 190px 0 0;

    background:
        linear-gradient(
            145deg,
            var(--brown-light),
            var(--brown)
        );

    box-shadow: 0 25px 60px rgba(90, 60, 40, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 30px 75px rgba(90, 60, 40, 0.22);
}

.profile-initial {
    font-family: Georgia, serif;
    font-size: 110px;
    color: rgba(255, 255, 255, 0.65);
}

/* =========================
   ABOUT PLACEHOLDER
========================= */

.section-placeholder {
    padding: 100px 0;
    text-align: center;
    background: var(--cream);
}

.section-placeholder h2 {
    margin-bottom: 15px;
    font-size: 32px;
    color: var(--brown-dark);
}

/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CURSOR GLOW
========================= */

.cursor-glow {
    position: fixed;

    width: 180px;
    height: 180px;

    pointer-events: none;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(184, 190, 145, 0.13),
            transparent 70%
        );

    z-index: 9999;
}

/* =========================
   ANIMATION
========================= */

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .nav-menu,
    .cv-button {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        padding-top: 70px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .social-links {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        height: 470px;
        margin-top: 30px;
    }

    .profile-card {
        width: 290px;
        height: 390px;
    }

    .hero-circle {
        width: 340px;
        height: 340px;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 500px) {

    .hero h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .hero-greeting {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;

    border-radius: 190px 190px 0 0;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.profile-card:hover .profile-image {
    transform: scale(1.04);
    filter: saturate(1.05);
}
/* =========================================
   ABOUT
========================================= */

.about-section {
    padding: 120px 0;
    background: var(--cream);
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 65px;
}

.section-number {
    font-family: Georgia, serif;
    font-size: 16px;
    color: var(--sage-dark);
    padding-top: 10px;
}

.section-label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--sage-dark);
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 500;
    color: var(--brown-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-content {
    max-width: 700px;
}

.about-content p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.9;
    color: #654c39;
}

.about-content .about-intro {
    font-size: 22px;
    line-height: 1.6;
    color: var(--brown-dark);
    font-family: Georgia, serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    padding: 30px 15px;
    text-align: center;
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(104,74,53,.12);
    border-radius: 15px;
    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: var(--brown);
    color: white;
}

.stat-card strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 35px;
    color: var(--brown-dark);
}

.stat-card:hover strong {
    color: white;
}

.stat-card span {
    display: block;
    margin-top: 7px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   SKILLS
========================================= */

.skills-section {
    padding: 120px 0;
    background: var(--background);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.skill-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    background: white;
    border: 1px solid #eadfce;
    border-radius: 15px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(90,60,40,.10);
    background: var(--cream);
}

/* =========================================
   SKILL ICON
========================================= */

.skill-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f5eee5;
    border: 1px solid rgba(104, 74, 53, 0.12);

    font-size: 30px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Ukuran logo */

.skill-icon i {
    font-size: 30px;
    line-height: 1;
    transition: transform 0.35s ease;
}


/* =========================================
   WARNA LOGO MASING-MASING
========================================= */

/* PHP */
.skill-icon .devicon-php-plain {
    color: #777BB4;
}

/* Laravel */
.skill-icon .devicon-laravel-original {
    color: #FF2D20;
}

/* Dart */
.skill-icon .devicon-dart-plain {
    color: #0175C2;
}

/* Flutter */
.skill-icon .devicon-flutter-plain {
    color: #02569B;
}

/* Python */
.skill-icon .devicon-python-plain {
    color: #3776AB;
}

/* JavaScript */
.skill-icon .devicon-javascript-plain {
    color: #F7DF1E;
}

/* HTML */
.skill-icon .devicon-html5-plain {
    color: #E34F26;
}

/* CSS */
.skill-icon .devicon-css3-plain {
    color: #1572B6;
}

/* C++ */
.skill-icon .devicon-cplusplus-plain {
    color: #00599C;
}

/* MySQL */
.skill-icon .devicon-mysql-original {
    color: #4479A1;
}

/* Git */
.skill-icon .devicon-git-plain {
    color: #F05032;
}


/* =========================================
   HOVER
========================================= */

.skill-card:hover .skill-icon {
    transform: translateY(-3px) scale(1.05);

    box-shadow:
        0 10px 25px rgba(90, 60, 40, 0.15);
}

.skill-card:hover .skill-icon i {
    transform: scale(1.12);
}

.skill-icon i {
    font-size: 30px;
}

.skill-card:hover .skill-icon {
    transform: scale(1.08) rotate(-3deg);
    background: var(--brown-dark);
}

.skill-info {
    flex: 1;
}

.skill-info h3 {
    margin-bottom: 5px;
    color: var(--brown-dark);
    font-size: 17px;
}

.skill-info p {
    color: #8a7562;
    font-size: 12px;
}

.skill-arrow {
    color: var(--sage-dark);
    font-size: 22px;
    transition: transform .3s ease;
}

.skill-card:hover .skill-arrow {
    transform: translateX(6px);
}
/* =========================================
   EXPERIENCE
========================================= */

.experience-section {
    padding: 120px 0 140px;
    background: var(--background);
}

.experience-section .section-heading {
    margin-bottom: 75px;
}


/* TIMELINE */

.experience-list {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}


/* GARIS TENGAH */

.experience-list::before {
    content: "";

    position: absolute;

    left: 145px;
    top: 10px;
    bottom: 20px;

    width: 1px;

    background: rgba(104, 74, 53, 0.20);
}


/* ITEM */

.experience-item {
    position: relative;

    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 55px;

    margin-bottom: 35px;
}


/* TAHUN */

.experience-year {
    padding-top: 30px;

    text-align: right;

    font-family: Georgia, serif;

    font-size: 17px;

    color: var(--sage-dark);
}


/* TITIK */

.experience-line {
    position: absolute;

    left: 138px;
    top: 32px;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: var(--brown);

    border: 4px solid var(--background);

    box-shadow:
        0 0 0 1px var(--brown);

    z-index: 2;
}


/* CONTENT */

.experience-content {
    padding: 30px 35px;

    background: white;

    border: 1px solid #eadfce;

    border-radius: 20px;

    box-shadow:
        0 8px 25px rgba(80, 55, 40, .04);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.experience-content:hover {
    transform: translateY(-6px);

    border-color: rgba(104, 74, 53, .25);

    box-shadow:
        0 20px 45px rgba(80, 55, 40, .10);
}


/* KATEGORI */

.experience-type {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--sage-dark);
}


/* JUDUL */

.experience-content h3 {
    margin-bottom: 12px;

    font-family: Georgia, serif;

    font-size: 30px;

    font-weight: 500;

    color: var(--brown-dark);
}


/* DESKRIPSI */

.experience-content p {
    max-width: 850px;

    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.8;

    color: #6d5948;
}


/* TECHNOLOGY */

.experience-tech {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.experience-tech span {
    padding: 8px 13px;

    border-radius: 30px;

    background: var(--cream);

    border: 1px solid rgba(104,74,53,.08);

    font-size: 10px;

    font-weight: 600;

    color: var(--brown-dark);

    transition: .3s ease;
}


.experience-tech span:hover {
    background: var(--brown);

    color: white;

    transform: translateY(-2px);
}


/* =========================================
   EXPERIENCE RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .experience-section {
        padding: 90px 0;
    }

    .experience-list {
        padding-left: 0;
    }

    .experience-list::before {
        display: none;
    }

    .experience-item {
        display: block;

        margin-bottom: 25px;
    }

    .experience-year {
        padding: 0;

        margin-bottom: 10px;

        text-align: left;
    }

    .experience-line {
        display: none;
    }

    .experience-content {
        padding: 25px;
    }

    .experience-content h3 {
        font-size: 26px;
    }

}
/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 120px 0 140px;
    background: var(--background);
}

.contact-section .section-heading {
    margin-bottom: 70px;
}


/* =========================================
   CONTACT GRID
========================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
    max-width: 550px;
}

.contact-small-title {
    display: block;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--sage-dark);
}


.contact-info h3 {
    margin-bottom: 25px;

    font-family: Georgia, serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 500;

    color: var(--brown-dark);
}


.contact-info h3 em {
    color: var(--sage-dark);

    font-weight: 400;
}


.contact-description {
    max-width: 500px;

    margin-bottom: 35px;

    font-size: 15px;

    line-height: 1.9;

    color: #6d5948;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.contact-items {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.contact-item {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 18px;

    background: white;

    border: 1px solid #eadfce;

    border-radius: 14px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.contact-item:hover {
    transform: translateX(7px);

    border-color: rgba(104, 74, 53, .25);

    box-shadow:
        0 12px 30px rgba(80, 55, 40, .08);
}


.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--cream);

    color: var(--brown-dark);

    font-size: 12px;

    font-weight: 700;

    transition:
        background .3s ease,
        color .3s ease;
}


.contact-item:hover .contact-icon {
    background: var(--brown);

    color: white;
}


.contact-item div:nth-child(2) {
    flex: 1;
}


.contact-item span {
    display: block;
}


.contact-item div:nth-child(2) span {
    margin-bottom: 4px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #9b8775;
}


.contact-item strong {
    font-size: 13px;

    font-weight: 600;

    color: var(--brown-dark);
}


.contact-arrow {
    font-size: 18px;

    color: var(--sage-dark);

    transition:
        transform .3s ease;
}


.contact-item:hover .contact-arrow {
    transform:
        translate(4px, -4px);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-wrapper {
    padding: 35px;

    background: var(--cream);

    border: 1px solid rgba(104, 74, 53, .12);

    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(80, 55, 40, .06);
}


.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: var(--brown-dark);
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid rgba(104, 74, 53, .18);

    border-radius: 10px;

    outline: none;

    background: rgba(255,255,255,.7);

    color: var(--text);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.form-group textarea {
    resize: vertical;

    min-height: 145px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aa9989;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brown);

    background: white;

    box-shadow:
        0 0 0 3px rgba(169,141,120,.12);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 16px 20px;

    border: none;

    border-radius: 10px;

    background: var(--brown);

    color: white;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.contact-submit strong {
    font-size: 18px;

    transition:
        transform .3s ease;
}


.contact-submit:hover {
    background: var(--brown-dark);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(90,60,40,.16);
}


.contact-submit:hover strong {
    transform:
        translate(4px, -4px);
}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-info {
        max-width: none;
    }

}


@media (max-width: 500px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-section .section-heading {
        margin-bottom: 45px;
    }

    .contact-info h3 {
        font-size: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .contact-item {
        padding: 14px;
    }

}
/* =========================================
   PROJECTS
========================================= */

.projects-section {
    padding: 120px 0;
    background: var(--cream);
}

.projects-section .section-heading {
    margin-bottom: 70px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {
    background: var(--background);

    border: 1px solid rgba(104, 74, 53, .12);

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    box-shadow:
        0 8px 25px rgba(80, 55, 40, .04);
}

.project-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(80, 55, 40, .13);
}


/* =========================================
   PROJECT SCREENSHOT
========================================= */

.project-preview {
    position: relative;

    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #ded1c1;
}

.project-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s ease,
        filter .6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.06);

    filter: brightness(.82);
}
/* KHUSUS PALM AI */
.project-image.palm-image {
    object-fit: contain;
    object-position: center;

    padding: 18px;

    box-sizing: border-box;

    background: #f4eee6;
}
/* =========================================
   TEMAN RINDU SCREENSHOT
========================================= */

.project-image.teman-image {
    object-fit: cover;
    object-position: center;
}

/* =========================================
   IMAGE OVERLAY
========================================= */

.preview-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(70, 50, 38, .45);

    opacity: 0;

    transition:
        opacity .35s ease;
}

.preview-overlay span {
    padding: 13px 22px;

    border:
        1px solid rgba(255,255,255,.75);

    border-radius: 30px;

    color: white;

    font-size: 12px;
    font-weight: 600;

    backdrop-filter: blur(8px);

    transform: translateY(15px);

    transition:
        transform .35s ease;
}

.project-card:hover .preview-overlay {
    opacity: 1;
}

.project-card:hover .preview-overlay span {
    transform: translateY(0);
}


/* =========================================
   PROJECT NUMBER
========================================= */

.project-number {
    position: absolute;

    right: 25px;
    top: 20px;

    z-index: 5;

    font-family: Georgia, serif;

    font-size: 42px;

    color:
        rgba(255,255,255,.9);

    text-shadow:
        0 2px 10px rgba(0,0,0,.25);
}


/* =========================================
   PROJECT WITHOUT SCREENSHOT
========================================= */

.project-no-image {
    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #a98d7a,
            #d3bca5
        );
}

.no-image-content {
    text-align: center;

    color: white;
}

.no-image-content span {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.no-image-content strong {
    font-family: Georgia, serif;

    font-size: 40px;

    font-weight: 500;
}


/* =========================================
   PROJECT BODY
========================================= */

.project-body {
    padding: 35px;
}

.project-category {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--sage-dark);
}

.project-body h3 {
    margin-bottom: 12px;

    font-family: Georgia, serif;

    font-size: 32px;
    font-weight: 500;

    color: var(--brown-dark);
}

.project-body p {
    margin-bottom: 22px;

    max-width: 560px;

    font-size: 14px;

    line-height: 1.8;

    color: #6d5948;
}


/* =========================================
   TECHNOLOGIES
========================================= */

.project-tech {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 28px;
}

.project-tech span {
    padding: 8px 13px;

    border-radius: 30px;

    background: var(--cream);

    border:
        1px solid rgba(104,74,53,.08);

    font-size: 10px;
    font-weight: 600;

    color: var(--brown-dark);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.project-tech span:hover {
    background: var(--brown);

    color: white;

    transform: translateY(-2px);
}


/* =========================================
   PROJECT FOOTER
========================================= */

.project-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 20px;

    border-top:
        1px solid rgba(104,74,53,.1);
}

.project-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    color: var(--brown-dark);

    font-size: 12px;

    font-weight: 700;

    transition: .3s ease;
}

.project-link span {
    transition: .3s ease;
}

.project-link:hover {
    color: var(--sage-dark);
}

.project-link:hover span {
    transform:
        translate(4px, -4px);
}

.project-type {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #9b8775;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 500px) {

    .projects-section {
        padding: 80px 0;
    }

    .project-preview {
        height: 230px;
    }

    .project-body {
        padding: 25px;
    }

    .project-body h3 {
        font-size: 28px;
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .about-section,
    .skills-section,
    .projects-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 30px;
    }

}
/* =========================================
   CONTACT MESSAGE
========================================= */

.contact-success {
    margin-bottom: 20px;

    padding: 15px 18px;

    border-radius: 12px;

    background: #e8ead8;

    border: 1px solid #c8cdb0;

    color: #59613b;

    font-size: 13px;

    line-height: 1.6;
}


.contact-error {
    margin-bottom: 20px;

    padding: 15px 18px;

    border-radius: 12px;

    background: #f5dfda;

    border: 1px solid #e3bdb4;

    color: #8b4639;

    font-size: 13px;

    line-height: 1.6;
}


.contact-error ul {
    margin: 0;

    padding-left: 18px;
}