/* =========================================
   ROOT VARIABLES
========================================= */

:root {
    --primary-color: #fbbf24;
    --primary-dark: #d99b12;
    --secondary-color: #38bdf8;

    --bg-dark: #020617;
    --bg-main: #0f172a;
    --bg-card: #111c32;
    --bg-card-light: #17243d;

    --text-white: #f8fafc;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;

    --border-color: rgba(148, 163, 184, 0.2);

    --shadow-small: 0 8px 25px rgba(0, 0, 0, 0.18);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.35);

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;

    --transition: all 0.3s ease;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top left,
            rgba(56, 189, 248, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(251, 191, 36, 0.06),
            transparent 35%
        ),
        var(--bg-dark);

    color: var(--text-white);
    font-family:
        "Segoe UI",
        "Noto Sans",
        Arial,
        sans-serif;

    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    color: var(--bg-dark);
    background: var(--primary-color);
}


/* =========================================
   MAIN WRAPPER
========================================= */

.website-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}


/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    min-height: 100vh;
    width: 100%;
    padding: 70px 7% 90px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;

    position: relative;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;

    top: 80px;
    left: -180px;

    background: rgba(56, 189, 248, 0.08);
    filter: blur(2px);
    z-index: -1;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;

    bottom: -100px;
    right: -100px;

    background: rgba(251, 191, 36, 0.08);
    z-index: -1;
}


/* =========================================
   PROFILE PHOTO
========================================= */

.profile-photo-area {
    width: 360px;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.photo-card {
    width: 320px;
    height: 420px;

    perspective: 1200px;
    cursor: pointer;
    outline: none;
}

.photo-card-inner {
    width: 100%;
    height: 100%;

    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s ease;
}

.photo-card.flipped .photo-card-inner {
    transform: rotateY(180deg);
}

.photo-face {
    position: absolute;
    inset: 0;

    overflow: hidden;
    border-radius: 28px;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    border: 4px solid rgba(251, 191, 36, 0.75);

    box-shadow:
        0 0 0 8px rgba(251, 191, 36, 0.06),
        0 25px 70px rgba(0, 0, 0, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(56, 189, 248, 0.2),
            rgba(251, 191, 36, 0.1)
        );
}

.photo-face::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            transparent 35%,
            transparent 70%,
            rgba(0, 0, 0, 0.15)
        );

    pointer-events: none;
}

.photo-face img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.photo-card:hover .photo-face img {
    transform: scale(1.04);
}

.photo-back {
    transform: rotateY(180deg);
}

.photo-card:focus-visible {
    box-shadow:
        0 0 0 5px var(--bg-dark),
        0 0 0 8px var(--primary-color);
}

.photo-hint {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    max-width: 650px;
}

.small-intro {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            #fbbf24,
            #38bdf8
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content h2 {
    margin-top: 18px;

    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;

    color: var(--secondary-color);
}

.hero-description {
    max-width: 620px;
    margin-top: 25px;

    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    min-height: 50px;
    padding: 12px 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;
    border: 1px solid transparent;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    color: #111827;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.btn-primary:hover {
    color: #111827;
    background: #fcd34d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.3);
}

.btn-outline {
    color: var(--text-white);
    background: transparent;
    border-color: rgba(248, 250, 252, 0.35);
}

.btn-outline:hover {
    color: #111827;
    background: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-3px);
}


/* =========================================
   COMMON SECTION
========================================= */

.section {
    padding: 100px 7%;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-label {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading h2 {
    color: var(--text-white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 800;
}

.heading-line {
    width: 80px;
    height: 4px;
    border-radius: 50px;

    margin: 18px auto 0;

    background:
        linear-gradient(
            90deg,
            var(--secondary-color),
            var(--primary-color)
        );
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(15, 23, 42, 0.7)
        );
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 27px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 18px;
}

.about-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px 18px;

    background: rgba(17, 28, 50, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);

    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.45);
    background: var(--bg-card-light);
}

.highlight-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;
    background: rgba(251, 191, 36, 0.12);
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 2px;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 13px;
}


/* =========================================
   PERSONAL DETAILS
========================================= */

.details-section {
    background: rgba(15, 23, 42, 0.65);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1050px;
    margin: 0 auto;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 20px 22px;

    background: rgba(17, 28, 50, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);

    transition: var(--transition);
}

.detail-item:hover {
    border-color: rgba(56, 189, 248, 0.45);
    transform: translateY(-3px);
}

.detail-item-wide {
    grid-column: 1 / -1;
}

.detail-title {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}

.detail-value {
    color: var(--text-light);
    font-size: 15px;
    word-break: break-word;
}


/* =========================================
   SKILLS SECTION
========================================= */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.skill-card {
    padding: 32px 25px;
    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(23, 36, 61, 0.95),
            rgba(17, 28, 50, 0.9)
        );

    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);

    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: var(--shadow-small);
}

.skill-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 22px;
    background: rgba(56, 189, 248, 0.12);

    font-size: 35px;
}

.skill-card h3 {
    color: var(--text-white);
    font-size: 21px;
    margin-bottom: 12px;
}

.skill-card p {
    color: var(--text-muted);
    font-size: 14px;
}


/* =========================================
   EDUCATION SECTION
========================================= */

.education-section {
    background: rgba(15, 23, 42, 0.65);
}

.education-list {
    max-width: 950px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.education-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 25px;
    align-items: stretch;
}

.education-year {
    min-height: 135px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            var(--primary-color),
            var(--primary-dark)
        );

    color: #111827;
    font-size: 22px;
    font-weight: 800;

    box-shadow: var(--shadow-small);
}

.education-content {
    padding: 25px 28px;

    background: rgba(17, 28, 50, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
}

.education-content h3 {
    color: var(--text-white);
    font-size: 23px;
    margin-bottom: 4px;
}

.education-content h4 {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.education-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.education-result {
    display: inline-block;

    padding: 5px 12px;

    border-radius: 50px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--primary-color);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   EXPERIENCE SECTION
========================================= */

.experience-list {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-card {
    display: flex;
    gap: 25px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 36, 61, 0.95),
            rgba(17, 28, 50, 0.9)
        );

    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);

    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.45);
}

.experience-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 20px;
    background: rgba(56, 189, 248, 0.12);

    font-size: 30px;
}

.experience-content {
    flex: 1;
    min-width: 0;
}

.experience-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.experience-content h3 {
    color: var(--text-white);
    font-size: 23px;
    margin-bottom: 4px;
}

.experience-content h4 {
    color: var(--secondary-color);
    font-size: 16px;
}

.experience-duration {
    padding: 6px 12px;
    border-radius: 50px;

    background: rgba(251, 191, 36, 0.12);
    color: var(--primary-color);

    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.experience-location {
    color: var(--text-muted);
    font-size: 14px;
    margin: 10px 0;
}

.experience-content p:last-child {
    color: var(--text-light);
    font-size: 15px;
}


/* =========================================
   PROJECTS SECTION
========================================= */

.projects-section {
    background: rgba(15, 23, 42, 0.65);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.project-card {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(23, 36, 61, 0.95),
            rgba(17, 28, 50, 0.9)
        );

    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);

    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: var(--shadow-large);
}

.project-image {
    height: 210px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.project-image-board {
    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #0f172a
        );
}

.project-image-coaching {
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #0f172a
        );
}

.project-image-icon {
    position: relative;
    z-index: 1;

    font-size: 85px;

    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.project-content {
    padding: 28px;
}

.project-tag {
    display: inline-block;

    margin-bottom: 12px;
    padding: 5px 12px;

    border-radius: 50px;
    background: rgba(56, 189, 248, 0.12);

    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
}

.project-content h3 {
    color: var(--text-white);
    font-size: 25px;
    margin-bottom: 12px;
}

.project-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 22px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-color);
    font-size: 15px;
    font-weight: 800;

    transition: var(--transition);
}

.project-link span {
    font-size: 20px;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--secondary-color);
}

.project-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-intro h3 {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 20px;
}

.contact-intro p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 18px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px;

    background: rgba(17, 28, 50, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);

    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(251, 191, 36, 0.5);
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;
    background: rgba(251, 191, 36, 0.12);

    font-size: 23px;
}

.contact-item strong {
    display: block;
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-item small {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    word-break: break-word;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 45px 7% 30px;

    text-align: center;

    border-top: 1px solid var(--border-color);
    background: rgba(2, 6, 23, 0.8);
}

.footer-brand h2 {
    color: var(--primary-color);
    font-size: 25px;
    margin-bottom: 4px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin: 25px 0;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 13px;
}


/* =========================================
   INSTALL POPUP
========================================= */

.install-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(10px);
}

.install-overlay.show {
    display: flex;
}

.install-popup {
    width: 100%;
    max-width: 430px;

    position: relative;

    padding: 38px 30px 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #17243d,
            #0f172a
        );

    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 28px;

    box-shadow: var(--shadow-large);

    animation: popupShow 0.35s ease;
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(248, 113, 113, 0.2);
    color: #fca5a5;
}

.install-popup-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 25px;
    background: rgba(251, 191, 36, 0.12);

    font-size: 40px;
}

.install-popup h2 {
    color: var(--text-white);
    font-size: 27px;
    margin-bottom: 12px;
}

.install-popup p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
}

.install-popup-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        var(--secondary-color),
        var(--primary-color)
    );

    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .hero-section {
        gap: 50px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .profile-photo-area {
        width: 300px;
    }

    .photo-card {
        width: 280px;
        height: 370px;
    }

    .section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .hero-section {
        min-height: auto;

        padding: 55px 20px 75px;

        flex-direction: column;
        gap: 35px;

        text-align: center;
    }

    .profile-photo-area {
        width: 100%;
    }

    .photo-card {
        width: 245px;
        height: 325px;
    }

    .photo-hint {
        margin-top: 15px;
        font-size: 12px;
    }

    .hero-content {
        width: 100%;
    }

    .small-intro {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .hero-content h2 {
        font-size: 27px;
        margin-top: 12px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
        margin-top: 20px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 28px;
    }

    .btn {
        min-height: 46px;
        padding: 10px 21px;
        font-size: 14px;
    }

    .section {
        padding: 70px 20px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-highlight {
        gap: 12px;
    }

    .highlight-item {
        padding: 17px 12px;
        gap: 10px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 12px;
    }

    .highlight-item h4 {
        font-size: 13px;
    }

    .highlight-item p {
        font-size: 11px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .detail-item-wide {
        grid-column: auto;
    }

    .detail-item {
        padding: 17px;
    }

    .detail-value {
        font-size: 14px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-card {
        padding: 27px 22px;
    }

    .education-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .education-year {
        min-height: auto;
        padding: 12px;
        font-size: 19px;
    }

    .education-content {
        padding: 22px;
    }

    .education-content h3 {
        font-size: 21px;
    }

    .experience-card {
        flex-direction: column;
        gap: 18px;
        padding: 23px;
    }

    .experience-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .experience-top {
        flex-direction: column;
        gap: 12px;
    }

    .experience-content h3 {
        font-size: 21px;
    }

    .experience-duration {
        align-self: flex-start;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 180px;
    }

    .project-image-icon {
        font-size: 70px;
    }

    .project-content {
        padding: 23px;
    }

    .project-content h3 {
        font-size: 23px;
    }

    .contact-intro {
        text-align: center;
    }

    .contact-intro h3 {
        font-size: 26px;
    }

    .contact-intro p {
        font-size: 15px;
    }

    .contact-item {
        padding: 16px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .footer {
        padding: 35px 20px 25px;
    }

    .footer-links {
        gap: 15px;
        margin: 20px 0;
    }

    .footer-links a {
        font-size: 13px;
    }

    .install-popup {
        padding: 35px 22px 25px;
    }

    .install-popup h2 {
        font-size: 24px;
    }

    .install-popup p {
        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .photo-card {
        width: 215px;
        height: 285px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-highlight {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        justify-content: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .install-popup-actions {
        flex-direction: column;
    }

    .install-popup-actions .btn {
        width: 100%;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


