/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f1e3;
    color: #26332c;
    line-height: 1.6;
}


/* =========================
   COLORS
========================= */

:root {
    --forest: #1f4d3a;
    --forest-dark: #16392b;
    --sage: #7a9b82;
    --cream: #f7f1e3;
    --light-cream: #fffdf7;
    --text: #26332c;
    --beige: #d8c9a7;
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(247, 243, 231, 0.92);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(31, 77, 58, 0.08);
}

.navbar {
    max-width: 1200px;

    height: 78px;

    margin: auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

/* =========================
   NAVIGATION
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247, 241, 227, 0.95);
    border-bottom: 1px solid rgba(31, 77, 58, 0.1);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.logo {
    text-decoration: none;
    color: var(--forest);
    font-size: 28px;
    font-weight: 800;
}

.logo span {
    color: var(--sage);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    position: relative;
    color: var(--forest);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--sage);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu {
    list-style: none;

    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}

.nav-menu a:hover {
    color: var(--forest);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--forest);
    font-size: 28px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    max-width: 1200px;
    margin: auto;

    padding: 140px 30px 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.hero-content {
    flex: 1;
}

.hero-small-text {
    color: var(--sage);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    color: var(--forest);
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--sage);
}

.hero h2 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 25px;
    max-width: 650px;
}

.hero-description {
    max-width: 600px;
    font-size: 17px;
    color: #58635d;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 5px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: var(--forest);
    color: var(--light-cream);
}

.btn-primary:hover {
    background: var(--forest-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid var(--forest);
    color: var(--forest);
}

.btn-secondary:hover {
    background: var(--forest);
    color: var(--light-cream);
}


/* =========================
   PROFILE IMAGE
========================= */

.hero-image { 
    width: 420px; 
    height: 500px; 
    position: relative; 
 
    display: flex; 
    align-items: center; 
    justify-content: center; 
 
    filter: drop-shadow(0 20px 40px rgba(31, 77, 58, 0.10)); 
} 

.image-frame { 
    width: 350px; 
    height: 430px; 
 
    border-radius: 180px 180px 35px 35px; 
 
    overflow: hidden; 
 
    border: none; 
 
    box-shadow: 
        0 25px 60px rgba(31, 77, 58, 0.20); 
 
    position: relative; 
    z-index: 2; 
} 
 
.image-frame img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;

    /* Smooth zoom effect */
    transition: transform 0.6s ease, filter 0.6s ease;
} 

/* Zoom when mouse is over the photo */
.image-frame {
    width: 350px; 
    height: 430px; 
    border-radius: 180px 180px 35px 35px;
    overflow: hidden;

    border: none;

    box-shadow: 
        0 25px 60px rgba(31, 77, 58, 0.20);

    position: relative;
    z-index: 2;

    /* Smooth frame zoom */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-frame:hover {
    transform: scale(1.30);

    box-shadow:
        0 30px 70px rgba(31, 77, 58, 0.28);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-decoration { 
    position: absolute; 
 
    width: 350px; 
    height: 430px; 
 
    border: 2px solid var(--sage); 
 
    border-radius: 180px 180px 35px 35px; 
 
    top: 28px; 
    left: 48px; 
 
    z-index: 1; 
 
    opacity: 0.75; 
}

/* =========================
   SECTIONS
========================= */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 100px 30px;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading p {
    color: var(--sage);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--forest);
    line-height: 1.1;
}


/* =========================
   ABOUT
========================= */

.about-content {
    max-width: 800px;
    font-size: 19px;
    color: #53605a;
}

.about-content p {
    margin-bottom: 20px;
}

/* =========================
   ABOUT
========================= */

.about-section {
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-main {
    max-width: 760px;
}

.about-main p {
    color: #58635d;
    font-size: 16px;
    margin-bottom: 20px;
}

.about-main .about-lead {
    color: var(--forest);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 28px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-card {
    padding: 25px;

    background: var(--light-cream);

    border: 1px solid rgba(31, 77, 58, 0.10);

    border-radius: 12px;

    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);

    border-color: var(--sage);

    box-shadow:
        0 12px 30px rgba(31, 77, 58, 0.10);
}

.about-card span {
    display: block;

    color: var(--sage);

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 15px;
}

.about-card h3 {
    color: var(--forest);

    font-size: 19px;

    margin-bottom: 8px;
}

.about-card p {
    color: #657068;

    font-size: 14px;

    margin: 0;
}
@media (max-width: 700px) {

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-main .about-lead {
        font-size: 19px;
    }

}
/* =========================
   EXPERIENCE
========================= */

.experience-section {
    background: var(--light-cream);
}

.timeline {
    position: relative;

    max-width: 1000px;

    margin: auto;

    padding-left: 45px;
}


/* VERTICAL LINE */

.timeline::before {
    content: "";

    position: absolute;

    left: 10px;
    top: 0;
    bottom: 0;

    width: 2px;

    background: var(--sage);
}


/* TIMELINE ITEM */

.timeline-item {
    position: relative;

    margin-bottom: 60px;
}


/* DOT */

.timeline-dot {
    position: absolute;

    left: -42px;
    top: 5px;

    width: 18px;
    height: 18px;

    background: var(--forest);

    border: 4px solid var(--cream);

    border-radius: 50%;

    box-shadow:
        0 0 0 2px var(--sage);
}


/* DATE */

.timeline-date {
    color: var(--sage);

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 12px;
}


/* EXPERIENCE CARD */

.experience-card {
    padding: 35px;

    background: var(--cream);

    border: 1px solid rgba(31, 77, 58, 0.10);

    border-radius: 14px;

    transition: 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);

    border-color: var(--sage);

    box-shadow:
        0 15px 35px rgba(31, 77, 58, 0.10);
}


/* COMPANY */

.experience-company {
    display: inline-block;

    color: var(--sage);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 8px;
}


/* JOB TITLE */

.experience-card h3 {
    color: var(--forest);

    font-size: 27px;

    margin-bottom: 15px;
}


/* SUMMARY */

.experience-summary {
    color: #58635d;

    font-size: 16px;

    margin-bottom: 25px;
}


/* RESPONSIBILITIES */

.experience-list {
    padding-left: 20px;

    color: #657068;
}

.experience-list li {
    margin-bottom: 10px;

    padding-left: 5px;
}

.experience-list li::marker {
    color: var(--sage);
}
/* =========================
   SKILLS
========================= */

/* =========================
   SKILLS
========================= */

.skills-section {
    background: var(--light-cream);
}

.section-intro {
    max-width: 700px;
    margin-top: 20px;
    color: #657068;
    font-size: 17px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.skill-card {
    padding: 35px;

    background: var(--cream);

    border: 1px solid rgba(31, 77, 58, 0.10);
    border-radius: 14px;

    position: relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(31, 77, 58, 0.12);

    border-color: var(--sage);
}


/* NUMBER */

.skill-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: var(--forest);
    color: var(--cream);

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}


/* TITLE */

.skill-card h3 {
    color: var(--forest);

    font-size: 23px;

    margin-bottom: 12px;
}


/* DESCRIPTION */

.skill-card > p {
    color: #657068;

    font-size: 15px;

    margin-bottom: 22px;
}


/* SKILL TAGS */

.skill-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.skill-tags span {
    display: inline-block;

    padding: 7px 11px;

    background: var(--light-cream);

    color: var(--forest);

    border: 1px solid rgba(31, 77, 58, 0.12);

    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}

.skill-tags span:hover {
    background: var(--forest);
    color: var(--cream);

    border-color: var(--forest);
}
/* =========================
   EXPERIENCE
========================= */

.experience-container {
    max-width: 800px;
}

.experience-card {
    padding: 35px;

    background: var(--light-cream);

    border-left: 5px solid var(--forest);

    border-radius: 8px;
}

.experience-date {
    color: var(--sage);
    font-weight: 700;
}

.experience-card h3 {
    font-size: 28px;
    color: var(--forest);
    margin: 10px 0;
}


/* =========================
   PROJECTS
========================= */

.projects-section {
    background: var(--cream);
}

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* PROJECT CARD */

.project-card {
    overflow: hidden;

    background: var(--light-cream);

    border:
        1px solid rgba(31, 77, 58, 0.10);

    border-radius: 14px;

    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-7px);

    border-color: var(--sage);

    box-shadow:
        0 18px 40px rgba(31, 77, 58, 0.12);
}


/* PROJECT IMAGE */

.project-image {
    height: 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--forest),
            var(--sage)
        );

    position: relative;
}

.project-image span {
    color: var(--cream);

    font-size: 55px;

    font-weight: 800;

    opacity: 0.25;
}


/* PROJECT CONTENT */

.project-content {
    padding: 28px;
}

.project-category {
    display: block;

    color: var(--sage);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}

.project-content h3 {
    color: var(--forest);

    font-size: 21px;

    line-height: 1.35;

    margin-bottom: 12px;
}

.project-content p {
    color: #657068;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* PROJECT TAGS */

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.project-tags span {
    padding: 6px 10px;

    background: var(--cream);

    color: var(--forest);

    border:
        1px solid rgba(31, 77, 58, 0.10);

    border-radius: 20px;

    font-size: 11px;

    font-weight: 600;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 30px;
    text-align: center;

    background: var(--forest);
    color: var(--cream);

    font-size: 14px;
}

/* =========================
   CONTACT
========================= */

.contact-section {
    background: var(--forest);

    color: var(--cream);
}

.contact-container {
    max-width: 1100px;

    margin: auto;

    text-align: center;
}

.contact-section .section-heading p {
    color: var(--sage);
}

.contact-section .section-heading h2 {
    color: var(--cream);
}

.contact-intro {
    max-width: 650px;

    margin: 0 auto 50px;

    color: rgba(245, 240, 225, 0.75);

    line-height: 1.7;

    font-size: 16px;
}


/* CONTACT GRID */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    text-align: left;
}


/* CONTACT CARD */

.contact-card {
    padding: 30px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.08);
}

.contact-number {
    display: block;

    color: var(--sage);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--cream);

    font-size: 20px;

    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(245, 240, 225, 0.65);

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 18px;
}

.contact-card a {
    color: var(--sage);

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-location {
    color: var(--sage);

    font-size: 14px;

    font-weight: 700;
}


/* ACTION BUTTON */

.contact-action {
    margin-top: 45px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .nav-menu {
        gap: 15px;
    }

    .hero {
        gap: 30px;
    }

    .hero-image {
        width: 350px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .navbar {
        padding: 18px 20px;
    }

   .nav-menu {
    display: none;

    position: absolute;
    top: 70px;
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: center;

    gap: 0;

    padding: 15px 0;

    background: var(--cream);

    border-bottom: 1px solid rgba(31, 77, 58, 0.10);

    box-shadow: 0 10px 25px rgba(31, 77, 58, 0.08);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu a {
    display: block;
    padding: 14px 20px;
}

.menu-toggle {
    display: block;
}

    .hero {
        padding: 120px 20px 70px;

        flex-direction: column-reverse;

        text-align: center;
    }

    .hero-image {
        width: 100%;
        height: 420px;
    }

    .image-frame {
        width: 280px;
        height: 350px;
    }

    .image-decoration {
        width: 280px;
        height: 350px;
        left: calc(50% - 125px);
    }

    .hero-buttons {
        justify-content: center;
    }

    .section {
        padding: 75px 20px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}
.timeline {
    padding-left: 30px;
}

.timeline::before {
    left: 5px;
}

.timeline-dot {
    left: -33px;
}

.experience-card {
    padding: 25px;
}

.experience-card h3 {
    font-size: 23px;
}


    .logo img {
        height: 42px;
    }
.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu a {
    display: block;
    padding: 14px 20px;
}	
