/* RESET & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    --bg-dark: #0F0F11;
    --accent-color: #E2B65A;
    --text-white: #F8FAFC;
    --text-muted: #b6b6b6;
    --font-poppins: "Poppins", sans-serif;
    --font-mono: "Roboto Mono", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-poppins);
    background-color: var(--bg-dark);
    background-image: url("https://www.transparenttextures.com/patterns/navy.png");
    color: var(--text-white);
}


/* HEADER & NAVBAR */
#main-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-radius: 50px;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.list-navbar {
    display: flex;
    gap: 30px;
}

.list-navbar a {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 15px;
    position: relative;
    white-space: nowrap;
}

.list-navbar a:hover,
.list-navbar a.active {
    color: var(--accent-color);
}

.list-navbar a.active {
    position: relative;
}
.list-navbar a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    border-radius: 50px;
}

.list-navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 50px;
    transition: width 0.3s ease;
}


/* HERO SECTION */
.hero {
    min-height: 100vh;
    width: 100%;
    background-image:
        radial-gradient(
            125% 100% at center 40%,
            #272011 9%,
            rgba(15, 15, 17, 0.6) 45%,
            #0F0F11 76%
        ), url("https://www.transparenttextures.com/patterns/navy.png");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  opacity: 1;
  mix-blend-mode: overlay;

  mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    black 35%,
    transparent 80%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    black 35%,
    transparent 80%
  );

  z-index: 1;
  pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(6rem, 12vw, 9rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-mono);
    color: var(--text-white);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 4px;
    margin-bottom: 56px;
    font-weight: 400;
}


/* BUTTONS HERO */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    width: 250px;
    padding: 10px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #d8a94a;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    width: 250px;
    padding: 10px;
    background-color: rgba(226, 182, 90, 0.1);
    color: var(--text-white);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}


/* ANIMATIONS HERO */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    color: var(--text-white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


/* PROJECTS SECTION */
.projects-section {
    padding: 25px 20px 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.projects-container {
    max-width: 1300px;
    width: 100%;
}

.projects-header {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.projects-title-bg {
    font-size: clamp(6rem, 10vw, 9rem);
    font-weight: bold;
    color: rgba(226, 182, 90, 0.05);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    filter: blur(2px);

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 40%,
        rgba(0, 0, 0, 0) 85%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 40%,
        rgba(0, 0, 0, 0) 85%
    );
}

.projects-title {
    font-size: clamp(4rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--accent-color);
    position: relative;
    transform: translateY(54px);
    z-index: 2;
    margin-top: 100px;
}

.projects-subtitle {
    font-family: var(--font-mono);
    font-size: 1.1em;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 64px;
}

.projects-subtitle span {
    color: var(--text-white);
    font-weight: bold;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.project-card {
    background-color: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 3px 42px;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.project-card:hover .badge-top {
    opacity: 1;
    visibility: visible;
}

.card-image-wrapper {
    position: relative;
    width: calc(100% - 34px); 
    height: 240px;
    border-radius: 18px 0 0;
    overflow: hidden;
    margin-top: 34px;
    margin-left: 34px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(226, 182, 90, 1) 10%, rgba(226, 182, 90, 0) 90%);
    mask-image: linear-gradient(to bottom, rgba(226, 182, 90, 1) 10%, rgba(226, 182, 90, 0) 90%);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(64,58,45,0.4) 0%, rgba(15,15,17,0) 100%);
}

.project-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 38px;
}

.software-badge {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(226, 182, 90, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(226, 182, 90, 0.2);
}

.software-badge img {
    width: 0.95rem;
    height: 0.95rem;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.projects-footer {
    display: flex;
    justify-content: center;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-explore {
    width: auto;
    padding: 12px 72px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-explore:hover {
    background-color: #d8a94a;
    transform: translateY(-3px);
    padding: 12px 78px;
}


/* SKILLS */
.skills-section {
    padding: 100px 20px 75px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.skills-container {
    max-width: 1300px;
    width: 100%;
}

.skills-header {
    text-align: start;
    position: relative;
    margin-bottom: 80px;
}

.skills-title-bg {
    font-size: clamp(6rem, 10vw, 9rem);
    font-weight: bold;
    color: rgba(226, 182, 90, 0.05);
    position: absolute;
    left: 0;
    z-index: 1;
    pointer-events: none;
    filter: blur(2px);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
}

.skills-title {
    font-size: clamp(4rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--accent-color);
    position: relative;
    transform: translateY(92px);
    z-index: 2;
}

.skills-subtitle {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 92px;
}

.skills-subtitle span {
    color: var(--text-white);
    font-weight: bold;
}

.skills-display {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: -30px;
}

.skills-row {
    border: 2px solid rgba(226, 182, 90, 0.4);
    border-radius: 4px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(226, 182, 90, 0.02) 0%, rgba(15, 15, 17, 0) 100%);
    transition: all 0.3s ease;
}

.skills-row:hover {
    background: linear-gradient(90deg, rgba(226, 182, 90, 0.1) 0%, rgba(15, 15, 17, 0.02) 80%);
    border-color: var(--accent-color);
    box-shadow: inset 0 0 15px rgba(226, 182, 90, 0.03);
}

.skills-info {
    position: relative;
    display: flex;
    align-items: center;
}

.bg-ampersand {
    font-size: 7rem;
    font-weight: 700;
    color: rgba(226, 182, 90, 0.1);
    position: absolute;
    left: -15px;
    user-select: none;
    font-family: var(--font-poppins);
}

.skills-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    margin-left: 28px;
}

.skills-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.skill-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background-color: transparent;
    transition: transform 0.2s ease;
}

.skills-row:hover .skill-icon-img {
    transform: scale(1.08);
}


/* ABOUT ME */
.about-section {
    padding: 140px 20px 125px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-avatar-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-circle-wrapper {
    width: clamp(375px, 30vw, 495px);
    height: clamp(375px, 30vw, 495px);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    background-color: rgba(226, 182, 90, 0.05);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.avatar-circle-wrapper:hover {
    background-color: rgba(226, 182, 90, 0.1);
}

.about-avatar-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-avatar-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.about-content-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

.about-header {
    position: relative;
    margin-bottom: 32px;
    width: 100%;
}

.about-title-bg {
    font-size: clamp(5rem, 9vw, 8rem);
    font-weight: bold;
    color: rgba(226, 182, 90, 0.03);
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 1;
    pointer-events: none;
    filter: blur(1px);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
}

.about-title {
    font-size: clamp(4rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--accent-color);
    position: relative;
    transform: translateY(48px);
    z-index: 2;
}

.about-badges-group {
    display: flex;
    gap: 12px;
    margin: 32px 0 22px;
}

.lang-badge {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lang-badge:hover {
    padding: 6px 18px;
}

.progress-badge {
    border: 1px solid #F56B08;
    color: var(--text-white);
    background-color: rgba(245, 107, 8, 0.2);
}

.native-badge {
    border: 1px solid #E2B65A;
    color: var(--text-white);
    background-color: rgba(226, 182, 90, 0.2);
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    margin-bottom: 48px;
}

.about-lead {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 200;
}

.about-lead strong {
    font-weight: 600;
}

.about-body {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 200;
}

.about-body strong {
    font-weight: 600;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-resume-download {
    display: inline-block;
    padding: 10px 36px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-resume-download:hover {
    background-color: #d8a94a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 182, 90, 0.15);
}

.linkedin-social-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #E2B65A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.linkedin-social-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.05);
}

.linkedin-social-btn img {
    width: 18px;
}


/* CONTACT */
.contact-section {
    width: 100%;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(to bottom, rgba(15, 15, 17, 0) 60%, var(--accent-color) 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-container {
    max-width: 1475px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.contact-card {
    background-color: var(--text-white);
    width: 100%;
    border-radius: 24px;
    padding: 50px 80px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    color: var(--bg-dark);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-header p {
    color: var(--bg-dark);
    font-family: var(--font-mono);
    font-size: 1.4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 65%;
    margin: -10px auto 0;
}

.form-row-top {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group label span {
    color: var(--accent-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 16px;
    background-color: transparent;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--bg-dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(226, 182, 90, 0.2);
}

.contact-form ::placeholder {
    color: #94A3B8;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-poppins);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d8a94a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 169, 74, 0.3);
}

.main-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px 20px;
    margin-top: auto;
}

.main-footer p {
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-social {
    transition: transform 0.3s ease;
}

.footer-social:hover {
    transform: scale(1.15);
}

.footer-social img {
    width: 20px;
}


/* RESPONSIVE DESIGN */

/* PC AND LAPTOPS */
@media screen and (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .project-card:nth-child(odd):last-child {
        grid-column: span 2;
        justify-self: center;
        width: 100%;
        max-width: 540px;
    }

    .skills-section {
        padding: 100px 60px 50px;
    }

    .about-section {
        padding: 125px 60px 30px;
    }

    .about-container {
        gap: 40px;
    }

    .contact-form {
        width: 85%;
    }
}


/* TABLETS */
@media screen and (max-width: 992px) {
    #main-header {
        top: 12px;
        width: 90%;
    }
    
    .navbar {
        padding: 0 20px;
    }

    .list-navbar a {
        font-size: 1rem;
        padding: 8px 10px;
    }

    .projects-title-bg, 
    .skills-title-bg, 
    .about-title-bg {
        display: none;
    }

    .projects-title {
        transform: none;
        margin-top: 0;
        text-align: center;
        width: 100%;
        padding: 72px 0 0;
        margin-bottom: -48px;
    }

    .skills-title {
        margin-top: -96px;
        padding: 0;
    }

    .about-title {
        margin-top: -60px;
        padding: 0;
    }

    .projects-header {
        margin-bottom: 50px;
        text-align: center;
    }

    .skills-header {
        margin-bottom: 75px;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-content-column {
        align-items: center;
        text-align: center;
    }

    .skills-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px;
    }

    .skills-info h4 {
        margin-left: 0;
    }

    .bg-ampersand {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }

    .skills-icons {
        justify-content: center;
    }

    .contact-form {
        width: 100%;
    }
}


/* MOBILE / PHONES */
@media screen and (max-width: 768px) {
    #main-header {
        width: 100%;
        top: 0;
        border-radius: 0;
        background-color: rgba(15, 15, 17, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    #main-header.scrolled {
        border-radius: 0;
        padding: 0;
    }

    .navbar {
        padding: 8px 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .navbar::-webkit-scrollbar {
        display: none;
    }

    .list-navbar {
        gap: 10px;
        padding: 10px 20px;
    }

    .list-navbar a {
        font-size: 0.95rem;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 12px;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr !important; 
        gap: 32px;
        justify-items: center;
    }

    .project-card {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .project-card, 
    .project-card:nth-child(odd):last-child {
        grid-column: span 1 !important;
        flex-direction: column !important;
        width: 100%;
        max-width: 450px;
        height: auto;
        margin: 0 auto;
    }

    .card-image-wrapper {
        margin-top: 24px;
        margin-left: 24px;
        width: calc(100% - 24px);
        height: 250px;
    }

    .card-content {
        padding: 0 28px 28px;
    }

    .project-name {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .btn-explore {
        width: 100%;
        max-width: 320px;
        padding: 12px 30px;
        text-align: center;
    }
    
    .btn-explore:hover {
        padding: 12px 30px;
    }

    .avatar-circle-wrapper {
        width: 280px;
        height: 280px;
    }

    .contact-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .contact-form {
        width: 90%;
    }

    .form-row-top {
        flex-direction: column;
        gap: 18px;
    }

    .contact-header p {
        font-size: 1.1rem;
    }

    .contact-section {
        background: linear-gradient(to bottom, rgba(15, 15, 17, 0) 45%, var(--accent-color) 45%);
    }

    .main-footer p {
        text-align: center;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 12px 16px;
        width: 100%;
    }

    .list-navbar {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        padding: 0;
    }

    .list-navbar a {
        font-size: 0.85rem;
        padding: 4px 6px;
        white-space: nowrap;
    }
}


/* SMALL SCREENS */
@media screen and (max-width: 400px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .skills-section {
        padding: 100px 25px 50px;
    }

    .about-section {
        padding: 115px 25px 30px;
    }

    .about-title {
        line-height: 64px;
        margin-bottom: 14px;
    }
    
    .about-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-resume-download {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        width: 95%;
    }
}