/* ====================================================== */
/* GLOBAL */
/* ====================================================== */



:root{

    --bg:#050505;
    --surface:#0D0D0D;

    --text:#FFFFFF;
    --muted:#9CA3AF;

    --accent:#7C5CFF;
    --accent-soft:#A78BFA;

    --line:rgba(255,255,255,.06);

}


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

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;

    background: #050505;

    color: white;

    overflow-x: hidden;
}

/* ====================================================== */
/* HEADER */
/* ====================================================== */

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 5%;

    background:
        rgba(5, 5, 5, 0.72);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    z-index: 1000;
}

/* ====================================================== */
/* LOGO */
/* ====================================================== */

.logo-link {

    display: flex;

    align-items: center;

    gap: 18px;

    text-decoration: none;
}

/* DP WRAPPER */

.dp-wrapper {

    position: relative;

    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* DP IMAGE */

.dp-wrapper img {

    width: 80px;
    height: 80px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid rgba(99, 102, 241, 0.45);

    box-shadow:
        0 0 30px rgba(99, 102, 241, 0.20);

    position: relative;

    z-index: 2;
}

/* ORBIT RING */

.dp-wrapper::before {

    content: "";

    position: absolute;

    width: 92px;
    height: 92px;

    border-radius: 50%;

    border:
        2px solid transparent;

    border-top:
        2px solid #6366F1;

    opacity: 0;

    transition: 0.35s;

    animation:
        orbitSpin 2s linear infinite;
}

/* HOVER */

.logo-link:hover .dp-wrapper::before {

    opacity: 1;
}

/* ORBIT ANIMATION */

@keyframes orbitSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* ====================================================== */
/* LOGO TEXT */
/* ====================================================== */

.logo-text h1 {

    font-size: 2rem;

    font-weight: 700;

    line-height: 1;

    display: flex;

    align-items: center;

    gap: 0;
}

.logo-white {
    color: white;
}

.logo-accent {
    color: #6366F1;
}

.logo-text p {

    margin-top: 8px;

    color: #8A8A95;

    font-size: 0.95rem;
}

/* ====================================================== */
/* NAVIGATION */
/* ====================================================== */

.main-nav {

    display: flex;

    align-items: center;

    gap: 42px;
}

.main-nav a {

    position: relative;

    text-decoration: none;

    color: #A1A1AA;

    font-size: 1rem;

    font-weight: 500;

    transition: 0.3s;
}

.main-nav a:hover {
    color: white;
}

/* UNDERLINE */

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0%;
    height: 2px;

    background: #6366F1;

    transition: 0.35s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ====================================================== */
/* RIGHT */
/* ====================================================== */

.header-right {

    display: flex;

    align-items: center;

    gap: 25px;
}

/* RESUME BUTTON */

.resume-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 52px;

    padding: 0 28px;

    border-radius: 16px;

    text-decoration: none;

    color: white;

    font-size: 0.95rem;

    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition: 0.3s;
}

.resume-btn:hover {

    background:
        rgba(99, 102, 241, 0.15);

    border-color:
        rgba(99, 102, 241, 0.35);

    transform:
        translateY(-2px);
}

/* ====================================================== */
/* MOBILE BUTTON */
/* ====================================================== */

.mobile-menu-btn {

    display: none;

    font-size: 2rem;

    cursor: pointer;

    color: white;
}

/* ====================================================== */
/* HERO SECTION */
/* ====================================================== */

.hero-section {

    width: 100%;

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    align-items: center;

    gap: 80px;

    padding:
        150px 5% 120px;

    position: relative;

    overflow: hidden;
}

/* BACKGROUND GLOW */

.hero-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(99, 102, 241, 0.12),
            transparent 70%);

    top: -200px;
    right: -150px;

    z-index: 0;
}

.hero-section::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(circle,
            rgba(236, 72, 153, 0.08),
            transparent 70%);

    bottom: -300px;
    left: -200px;

    z-index: 0;
}

/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;
}

.hero-tag {

    color: #7C7C88;

    font-size: 0.82rem;

    letter-spacing: 4px;

    margin-bottom: 28px;
}

.hero-title {

    font-size: 5.8rem;

    line-height: 1.0;

    font-weight: 800;

    margin-bottom: 34px;

    max-width: 900px;
}

.hero-description {

    max-width: 700px;

    color: #A1A1AA;

    font-size: 1.15rem;

    line-height: 1.9;

    margin-bottom: 42px;
}

/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 20px;
}

/* PRIMARY BUTTON */

.hero-btn-primary {

    height: 58px;

    padding: 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    text-decoration: none;

    background: #6366F1;

    color: white;

    font-weight: 600;

    transition: 0.3s;
}

.hero-btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.35);
}

/* SECONDARY BUTTON */

.hero-btn-secondary {

    height: 58px;

    padding: 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    text-decoration: none;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    color: white;

    font-weight: 600;

    transition: 0.3s;
}

.hero-btn-secondary:hover {

    transform:
        translateY(-3px);

    background:
        rgba(255, 255, 255, 0.08);
}

/* ====================================================== */
/* HERO VISUAL */
/* ====================================================== */

.hero-visual {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    align-items: center;
}

/* HERO IMAGE */

.hero-image-wrapper {

    width: 100%;

    height: 780px;

    border-radius: 34px;

    overflow: hidden;

    position: relative;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45);
}

/* IMAGE */

.hero-image-wrapper img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* ====================================================== */
/* ABOUT SECTION */
/* ====================================================== */

.about-section {

    position: relative;

    padding: 120px 5%;

}

/* ====================================================== */
/* SECTION HEADING */
/* ====================================================== */

.section-heading {

    max-width: 760px;

    margin-bottom: 50px;
}

.section-tag {

    color: #7C7C88;

    font-size: 0.82rem;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.section-title {

    font-size: 3.5rem;

    line-height: 1.05;

    font-weight: 800;

    max-width: 900px;
}

/* ====================================================== */
/* TOP GRID */
/* ====================================================== */

.about-top-grid {

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 70px;

    align-items: start;

    margin-bottom: 90px;
}

/* ====================================================== */
/* ABOUT CONTENT */
/* ====================================================== */

.about-intro {

    font-size: 1.5rem;

    line-height: 1.8;

    color: white;

    margin-bottom: 34px;

    font-weight: 500;
}

.about-text {

    color: #A1A1AA;

    font-size: 1.08rem;

    line-height: 2;

    margin-bottom: 28px;

    max-width: 760px;
}

/* ====================================================== */
/* ABOUT IMAGE */
/* ====================================================== */

.about-image-wrapper {

    width: 100%;

    height: 640px;

    border-radius: 32px;
    margin-top: -250px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35);
}

.about-image-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* ====================================================== */
/* STATS */
/* ====================================================== */

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;

    margin-bottom: 90px;
}

.stat-card {

    padding: 40px;

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
}

.stat-card h3 {

    font-size: 2.6rem;

    margin-bottom: 14px;

    color: #6366F1;
}

.stat-card p {

    color: #A1A1AA;

    line-height: 1.6;
}

/* ====================================================== */
/* EXPERTISE GRID */
/* ====================================================== */

.expertise-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

/* CARD */

.expertise-card {

    padding: 42px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    transition: 0.35s;
}

.expertise-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(99, 102, 241, 0.25);

    background:
        rgba(255, 255, 255, 0.05);
}

.expertise-card h3 {

    font-size: 1.4rem;

    margin-bottom: 22px;

    line-height: 1.4;
}

.expertise-card p {

    color: #A1A1AA;

    line-height: 1.9;

    font-size: 1rem;
}



/* ====================================================== */
/* EXPERIENCE SECTION */
/* ====================================================== */

.experience-section {

    position: relative;

    padding: 120px 5%;
}

/* ====================================================== */
/* HEADER */
/* ====================================================== */

.experience-heading {

    max-width: 850px;

    margin-bottom: 90px;
}

.experience-title {

    font-size: 4rem;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 32px;
}

.experience-subtitle {

    color: #A1A1AA;

    font-size: 1.15rem;

    line-height: 1.9;

    max-width: 760px;
}

/* ====================================================== */
/* TIMELINE */
/* ====================================================== */

.timeline-wrapper {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 42px;
}

/* ITEM */

.timeline-item {

    position: relative;

    padding-left: 90px;
}

/* LINE */

.timeline-line {

    position: absolute;

    left: 18px;

    top: 0;

    width: 1px;

    height: 100%;

    background:
        rgba(255, 255, 255, 0.08);
}

/* DOT */

.timeline-dot {

    position: absolute;

    left: 8px;

    top: 26px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #6366F1;

    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.45);
}

/* CONTENT */

.timeline-content {

    padding: 42px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    transition: 0.35s;
}

.timeline-content:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(99, 102, 241, 0.25);

    background:
        rgba(255, 255, 255, 0.05);
}

/* TOP */

.timeline-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

    margin-bottom: 24px;
}

.timeline-top h3 {

    font-size: 1.8rem;

    line-height: 1.3;

    margin-bottom: 10px;
}

.timeline-role {

    color: #6366F1;

    font-size: 1rem;

    letter-spacing: 1px;
}

.timeline-year {

    color: #A1A1AA;

    font-size: 0.95rem;

    white-space: nowrap;
}

/* DESCRIPTION */

.timeline-description {

    color: #B5B5BE;

    line-height: 1.95;

    font-size: 1.02rem;

    margin-bottom: 28px;

    max-width: 900px;
}

/* TAGS */

.timeline-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.timeline-tags span {

    padding: 12px 18px;

    border-radius: 999px;

    background:
        rgba(99, 102, 241, 0.12);

    border:
        1px solid rgba(99, 102, 241, 0.18);

    color: #C7C8FF;

    font-size: 0.9rem;
}

/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media(max-width:900px) {

    .experience-title {

        font-size: 3rem;
    }

    .timeline-item {

        padding-left: 60px;
    }

    .timeline-top {

        flex-direction: column;
    }

}

@media(max-width:700px) {

    .experience-title {

        font-size: 2.4rem;
    }

    .timeline-content {

        padding: 32px;
    }

    .timeline-top h3 {

        font-size: 1.4rem;
    }

}


/* ====================================================== */
/* EXPLORATIONS SECTION */
/* ====================================================== */

.explorations-section {

    position: relative;

    padding: 120px 5%;
}

/* ====================================================== */
/* HEADER */
/* ====================================================== */

.explorations-heading {

    max-width: 950px;

    margin-bottom: 90px;
}

.explorations-title {

    font-size: 4rem;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 32px;
}

.explorations-subtitle {

    max-width: 760px;

    color: #A1A1AA;

    font-size: 1.15rem;

    line-height: 1.9;
}

/* ====================================================== */
/* GRID */
/* ====================================================== */

.exploration-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

/* ====================================================== */
/* CARD */
/* ====================================================== */

.exploration-card {

    position: relative;

    min-height: 520px;

    border-radius: 34px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    background: #0A0A0A;

    cursor: pointer;

    transition: 0.45s;
}

/* LARGE CARD */

.large-card {

    grid-column: span 2;

    min-height: 620px;
}

/* IMAGE */

.exploration-card img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

/* OVERLAY */

.exploration-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 8%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.15) 100%);
}

/* CONTENT */

.exploration-content {

    position: absolute;

    left: 42px;
    right: 42px;
    bottom: 42px;

    z-index: 2;
}

/* LABEL */

.exploration-label {

    color: #8B8CEB;

    font-size: 0.82rem;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

/* TITLE */

.exploration-content h3 {

    font-size: 2.5rem;

    line-height: 1.1;

    margin-bottom: 22px;
}

/* DESCRIPTION */

.exploration-content p {

    color: #C4C4CC;

    line-height: 1.9;

    font-size: 1rem;

    max-width: 720px;
}

/* ====================================================== */
/* HOVER */
/* ====================================================== */

.exploration-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(99, 102, 241, 0.28);
}

.exploration-card:hover img {

    transform: scale(1.05);
}

/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media(max-width:1100px) {

    .exploration-grid {

        grid-template-columns: 1fr;
    }

    .large-card {

        grid-column: span 1;
    }

}

@media(max-width:700px) {

    .explorations-title {

        font-size: 2.5rem;
    }

    .exploration-card {

        min-height: 440px;
    }

    .large-card {

        min-height: 500px;
    }

    .exploration-content {

        left: 28px;
        right: 28px;
        bottom: 28px;
    }

    .exploration-content h3 {

        font-size: 2rem;
    }

}




/* ====================================================== */
/* CONTACT SECTION */
/* ====================================================== */

.contact-section {

    position: relative;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 90px;

    padding: 140px 5%;

    overflow: hidden;
}

/* ====================================================== */
/* GLOW */
/* ====================================================== */

.contact-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    bottom: -200px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(99, 102, 241, 0.18) 0%,
            rgba(99, 102, 241, 0) 72%);

    pointer-events: none;
}

/* ====================================================== */
/* LEFT */
/* ====================================================== */

.contact-left {

    position: relative;

    z-index: 2;
}

.contact-title {

    font-size: 4.2rem;

    line-height: 1.02;

    font-weight: 800;

    margin-bottom: 36px;
}

.contact-description {

    max-width: 720px;

    color: #A1A1AA;

    font-size: 1.15rem;

    line-height: 2;
}

/* ====================================================== */
/* RIGHT */
/* ====================================================== */

.contact-right {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 26px;
}

/* CARD */

.contact-card {

    padding: 34px;

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    transition: 0.35s;
}

.contact-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(99, 102, 241, 0.24);

    background:
        rgba(255, 255, 255, 0.05);
}

/* LABEL */

.contact-label {

    color: #7C7DF4;

    font-size: 0.82rem;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

/* VALUE */

.contact-value {

    color: #FFFFFF;

    text-decoration: none;

    font-size: 1.15rem;

    line-height: 1.7;

    transition: 0.3s;
}

a.contact-value:hover {

    color: #8B8CEB;
}




/* ====================================================== */
/* VISUAL ARCHIVE */
/* ====================================================== */

.archive-section {

    position: relative;

    padding: 120px 5%;
}

/* ====================================================== */
/* HEADER */
/* ====================================================== */

.archive-heading {

    max-width: 850px;

    margin-bottom: 80px;
}

.archive-title {

    font-size: 4rem;

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 30px;
}

.archive-subtitle {

    max-width: 760px;

    color: #A1A1AA;

    font-size: 1.15rem;

    line-height: 1.9;
}

/* ====================================================== */
/* GRID */
/* ====================================================== */

.archive-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}



/* ====================================================== */
/* ITEM */
/* ====================================================== */

.archive-item {

    position: relative;

    aspect-ratio: 1/2;

    overflow: hidden;

    object-fit: cover;


    background: #0A0A0A;

    border:
        1px solid rgba(151, 115, 115, 0.06);

    transition: 0.4s;

    cursor: pointer;
}

.archive-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.6s;
}

.archive-item:hover img {
    transform: scale(1.08);
}


.archive-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-item {
    position: relative;
    overflow: hidden;
}

.archive-slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-slide.active {
    display: block;
}

.carousel-btn {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(10, 10, 10, .55);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, .08);

    color: #fff;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    opacity: 0;
    transition: .25s;

    z-index: 20;
}


.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.archive-item:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, .8);
}





.carousel-dot.active {

    background: #7C5CFF;
    /* PixelVagrant Purple */

    transform: scale(1.35);

    box-shadow: 0 0 8px rgba(124, 92, 255, .7);
}



.carousel-dots {

    position: absolute;

    bottom: 12px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 6px;

    z-index: 5;
}

.carousel-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .4);

    transition: .25s;
}

.archive-item.single .carousel-btn,
.archive-item.single .carousel-dots {
    display: none;
}

.archive-slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-slide.active {
    display: block;
}


.archive-item {
    position: relative;
    overflow: hidden;
}

/* ==============================
   ARCHIVE PROJECT CARD
============================== */

.archive-card {

    display: flex;
    flex-direction: column;

    width: 100%;
    text-align: center;
    gap: 14px;
}

/* Title */

.archive-project-title {

    margin: 0;

    font-size: 18px;

    font-weight: 600;

    color: #ffffff;
    text-align: center;
}

/* Description */

.archive-project-description {

    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #9a9a9a;
    text-align: center;
}

/* ====================================================== */
/* FOOTER */
/* ====================================================== */

.site-footer {

    padding: 50px 5%;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    text-align: center;
}

.site-footer p {

    color: #71717A;

    letter-spacing: 1px;

    font-size: 0.92rem;
}

/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media(max-width:1100px) {

    .contact-section {

        grid-template-columns: 1fr;

        gap: 70px;
    }

}

@media(max-width:700px) {

    .contact-title {

        font-size: 2.8rem;
    }

    .contact-card {

        padding: 28px;
    }

}



/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media(max-width:1200px) {

    .about-top-grid {

        grid-template-columns: 1fr;
    }

    .expertise-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:700px) {

    .section-title {

        font-size: 2.8rem;
    }

    .about-intro {

        font-size: 1.2rem;
    }

    .about-image-wrapper {

        height: 500px;
    }

    .expertise-grid {

        grid-template-columns: 1fr;
    }

    .about-stats {

        grid-template-columns: 1fr;
    }

    .stat-card,
    .expertise-card {

        padding: 32px;
    }

}










/* ====================================================== */
/* MOBILE MENU */
/* ====================================================== */

.mobile-menu {

    position: fixed;

    top: 100px;
    right: -100%;

    width: 100%;
    height: calc(100vh - 100px);

    background: #050505;

    padding: 40px 8%;

    transition: 0.4s;

    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

/* MOBILE HEADER */

.mobile-menu-header {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 50px;
}

.mobile-menu-header img {

    width: 82px;
    height: 82px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid rgba(99, 102, 241, 0.45);
}

.mobile-menu-header h2 {

    font-size: 2rem;

    margin-bottom: 6px;
}

.mobile-menu-header p {

    color: #888;
}

/* MOBILE NAV */

.mobile-nav {

    display: flex;

    flex-direction: column;

    gap: 28px;
}

.mobile-nav a {

    text-decoration: none;

    color: white;

    font-size: 1.4rem;

    padding-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

/* MOBILE BUTTON */

.mobile-resume-btn {

    margin-top: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 58px;

    border-radius: 18px;

    text-decoration: none;

    color: white;

    font-size: 1rem;

    font-weight: 600;

    background:
        rgba(99, 102, 241, 0.12);

    border:
        1px solid rgba(99, 102, 241, 0.25);
}

/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media(max-width:1400px) {

    .hero-title {
        font-size: 5rem;
    }

    .hero-image-wrapper {
        height: 680px;
    }

}

@media(max-width:1200px) {

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-image-wrapper {
        height: 620px;
    }

}

@media(max-width:1100px) {

    .main-nav,
    .resume-btn {

        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {

        grid-template-columns: 1fr;

        padding:
            180px 7% 100px;

        gap: 70px;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-image-wrapper {
        height: 700px;
    }

}

@media(max-width:700px) {

    .main-header {
        height: 90px;
    }

    .mobile-menu {

        top: 90px;

        height: calc(100vh - 90px);
    }

    .dp-wrapper {

        width: 70px;
        height: 70px;
    }

    .dp-wrapper img {

        width: 70px;
        height: 70px;
    }

    .logo-text h1 {
        font-size: 1.6rem;
    }

    .logo-text p {
        font-size: 0.82rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {

        font-size: 1rem;

        line-height: 1.8;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-secondary {

        width: 100%;
    }

    .hero-image-wrapper {
        height: 500px;
    }

}