/* ==========================================
   ABOUT ME — GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070d16;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --gold: #d4af37;
    --gold-light: #f5cf5b;
    --dark: #070d16;
    --dark-2: #0b121d;
    --dark-3: #101927;
    --cream: #f7f1e8;
    --text-dark: #182231;
    --muted: #aeb7c5;
    --border: rgba(212, 175, 55, 0.35);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}

.container {
    width: min(1120px, 90%);
    margin: auto;
}

section {
    position: relative;
    overflow: hidden;
}


/* ==========================================
   HEADER
========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: rgba(7, 13, 22, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    border-right: 2px solid var(--gold);
    padding-right: 9px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text strong {
    font-size: 14px;
}

.logo-text small {
    color: var(--muted);
    font-size: 9px;
}


/* Navigation */

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar > a {
    position: relative;
    font-size: 13px;
    color: #dce2ea;
    transition: 0.3s ease;
}

.navbar > a:not(.hire-btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.navbar > a:hover,
.navbar > a.active {
    color: var(--gold-light);
}

.navbar > a:hover::after,
.navbar > a.active::after {
    width: 100%;
}


/* Hire / Talk button */

.hire-btn {
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 10px 20px;
    color: #ffffff !important;
    transition: 0.3s ease;
}

.hire-btn i {
    margin-left: 7px;
    color: var(--gold);
}

.hire-btn:hover {
    background: var(--gold);
    color: #111 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.hire-btn:hover i {
    color: #111;
}


/* Mobile button */

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}


/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {
    min-height: 720px;
    padding-top: 76px;
    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(212, 175, 55, 0.10),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(30, 80, 130, 0.12),
            transparent 35%
        ),

        var(--dark);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 50px;
}


/* Small title */

.about-small-title {
    color: var(--gold-light);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-small-title span {
    width: 18px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}


/* Main heading */

.about-hero-content h1 {
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.about-hero-content h1 span {
    color: var(--gold);
}


/* Description */

.about-description {
    max-width: 540px;
    color: var(--muted);
    margin-top: 20px;
    font-size: 15px;
}


/* ==========================================
   BUTTONS
========================================== */

.about-buttons {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s ease;
}

.btn-primary {
    background: var(--gold);
    color: #111;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: #ffffff;
}

.btn-outline:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-4px);
}


/* ==========================================
   SOCIAL ICONS
========================================== */

.about-socials {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}

.about-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.about-socials a:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background: rgba(212, 175, 55, 0.08);
}


/* ==========================================
   HERO IMAGE
========================================== */

.about-hero-image {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Glow */

.about-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    background: rgba(212, 175, 55, 0.16);
    filter: blur(80px);
    border-radius: 50%;
}


/* Rotated decoration */

.about-decoration {
    position: absolute;
    width: 290px;
    height: 390px;
    border: 1px solid var(--gold);
    border-radius: 40px;
    transform: rotate(10deg);
    opacity: 0.55;
}


/* Photo */

.about-photo {
    width: 300px;
    height: 390px;
    border-radius: 40px 40px 30px 30px;
    background: linear-gradient(
        145deg,
        #182231,
        #090e17
    );
    border: 1px solid var(--border);
    padding: 8px;
    position: relative;
    z-index: 2;

    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.08),
        inset 0 0 50px rgba(212, 175, 55, 0.04);

    animation: floatImage 5s ease-in-out infinite;
}

.about-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 34px 34px 24px 24px;
}


/* ==========================================
   WHO I AM
========================================== */

.about-intro {
    padding: 95px 0;
    background: #0a111c;
}

.section-title p {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 7px;
}

.section-title h2 {
    font-size: 34px;
    line-height: 1.15;
}

.section-title.center {
    text-align: center;
}


/* Cards */

.about-intro-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.intro-card {
    padding: 30px 25px;
    background: #0c1521;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    transition: 0.4s ease;
}

.intro-card:hover {
    transform: translateY(-9px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.10);
}

.intro-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 18px;
}

.intro-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.intro-card p {
    color: var(--muted);
    font-size: 12px;
}


/* ==========================================
   MY STORY
========================================== */

.my-story {
    padding: 95px 0;
    background: #070d16;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 70px;
    align-items: center;
}


/* Story image */

.story-image-box {
    height: 330px;
    border-radius: 30px;
    background: linear-gradient(
        145deg,
        #182536,
        #090e17
    );
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 90px;
    color: var(--gold);
    transition: 0.4s ease;
}

.story-image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
}


/* Story text */

.story-content > p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px;
}


/* Features */

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.story-features div {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
}

.story-features i {
    color: var(--gold);
}


/* ==========================================
   MISSION
========================================== */

.mission {
    padding: 100px 0;
    background: var(--cream);
    color: var(--text-dark);
    text-align: center;
}

.mission-content {
    max-width: 800px;
}

.mission-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: rgba(212, 175, 55, 0.16);
    display: grid;
    place-items: center;
    color: #a17d0e;
    font-size: 23px;
}

.mission-content > p:first-of-type {
    color: #a17d0e;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.mission h2 {
    font-size: 48px;
    margin: 8px 0 20px;
}

.mission-text {
    max-width: 700px;
    margin: auto;
    color: #69717b;
    font-size: 15px;
}


/* ==========================================
   VISION
========================================== */

.vision {
    padding: 95px 0;
    background: #0b121d;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.vision-content > p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 17px;
}


/* Vision card */

.vision-card {
    min-height: 260px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.12),
            transparent 60%
        ),
        #0e1723;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.10);
}

.vision-card i {
    font-size: 55px;
    color: var(--gold);
    margin-bottom: 18px;
}

.vision-card strong {
    font-size: 20px;
}

.vision-card span {
    color: var(--muted);
    font-size: 11px;
    margin-top: 4px;
}


/* ==========================================
   CALL TO ACTION
========================================== */

.about-cta {
    padding: 95px 0;
    background: #070d16;
    text-align: center;
}

.about-cta > .container > p:first-child {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-cta h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 8px auto 15px;
    max-width: 700px;
}

.cta-text {
    max-width: 600px;
    margin: auto;
    color: var(--muted);
    font-size: 14px;
}


/* ==========================================
   FOOTER
========================================== */

.footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #060b12;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    color: var(--gold);
    font-weight: 800;
}

.footer-logo strong {
    font-size: 12px;
}

.footer p {
    color: var(--muted);
    font-size: 10px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-3px);
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* Gentle glow animation */

@keyframes goldGlow {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.8;
    }

}

.about-glow {
    animation: goldGlow 4s ease-in-out infinite;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .navbar {
        gap: 18px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr 0.8fr;
    }

    .about-intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 40px;
    }

    .vision-grid {
        gap: 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .header {
        height: 68px;
    }

    .navbar {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        padding: 20px;

        background: #080f19;

        border-top: 1px solid rgba(255, 255, 255, 0.06);

        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .navbar.show {
        display: flex;
    }

    .hire-btn {
        width: 100%;
        text-align: center;
    }

    .menu-btn {
        display: block;
    }


    /* Hero */

    .about-hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-small-title {
        justify-content: center;
    }

    .about-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-buttons,
    .about-socials {
        justify-content: center;
    }

    .about-hero-image {
        height: 430px;
    }

    .about-image {
        position: relative;
        right: -30px;
    }


    /* Intro */

    .about-intro,
    .my-story,
    .vision,
    .about-cta {
        padding: 70px 0;
    }

    .my-story {
        text-align: center;
    }

    .vision {
        text-align: center;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }


    /* Story */

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image.reveal.show {
        position: relative;
        right: -35px;
        transform: translateX(0);
    }

    .story-features {
        margin-left: 40px;
    }

    #d {
        margin-left: 20px;
    }


    /* Mission */

    .mission {
        padding: 75px 0;
    }

    .mission h2 {
        font-size: 38px;
    }


    /* Vision */

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-image {
        position: relative;
        right: -35px;
    }


    /* CTA */

    .about-cta h2 {
        font-size: 34px;
    }


    /* Footer */

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 420px) {

    .logo-text small {
        display: none;
    }

    .about-hero-content h1 {
        font-size: 45px;
    }

    .about-photo {
        width: 280px;
        height: 370px;
    }

    .story-image-box {
        height: 280px;
    }

}

/* ==========================================
   SCROLL REVEAL ANIMATION
========================================== */

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* Hero text */

.about-hero-content.reveal {
    transform: translateX(-50px);
}

.about-hero-content.reveal.show {
    transform: translateX(0);
}


/* Hero image */

.about-hero-image.reveal {
    transform: translateX(50px);
}

.about-hero-image.reveal.show {
    transform: translateX(0);
}


/* Stagger the cards */

.intro-card:nth-child(1) {
    transition-delay: 0.1s;
}

.intro-card:nth-child(2) {
    transition-delay: 0.25s;
}

.intro-card:nth-child(3) {
    transition-delay: 0.4s;
}


/* Story */

.story-image.reveal {
    transform: translateX(-50px);
}

.story-image.reveal.show {
    transform: translateX(0);
}

.story-content.reveal {
    transform: translateX(50px);
}

.story-content.reveal.show {
    transform: translateX(0);
}
