/* ===================== IMPORT ===================== */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@0,400;0,500;0,600;0,700&display=swap');

/* ======================= CSS VARIABLES ======================= */
:root {
    /* Header Dimensions */
    --header-height: 70px;
    --header-width: 50%;
    --header-radius: 40px;
    --circle: 50%;

    /* Colors */
    --first-color: rgba(252, 67, 3, 1);
    --black-color: rgba(0, 0, 0, 1);
    --black-color-light: rgba(102, 102, 102, 1);
    --white-color: rgba(242, 242, 242, 1);
    --title-color: rgba(0, 0, 0, 1);
    --text-color: rgba(89, 89, 89, 1);
    --text-color-light: rgba(163, 163, 163, 1);
    --body-color: rgba(222, 222, 222, 1);
    --container-color: rgba(212, 212, 212, 1);

    /* Font Sizes */
    --body-font: "Bai Jamjuree", sans-serif;
    --biggest-font-size: 72px;
    --h1-font-size: 28px;
    --h2-font-size: 20px;
    --h3-font-size: 18px;
    --normal-font-size: 15px;
    --small-font-size: 13px;
    --smaller-font-size: 12px;

    /* Font Weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
}

/* ======================= RESET CSS ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    background-color: var(--body-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======================= HEADER ======================= */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--header-width);
    max-width: 1200px;
    height: var(--header-height);
    background-color: var(--black-color);
    border-radius: var(--header-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.nav__center {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__logo {
    width: 50px;
    height: 50px;
    border-radius: var(--circle);
    object-fit: cover;
}

.nav__menu {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--white-color);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--first-color);
    transition: width 0.3s ease;
}

.nav__link:hover {
    font-size: var(--h3-font-size);
}

.nav__link:hover::after {
    width: 100%;
}

/* ======================= MAIN CONTENT ======================= */
main {
    margin: 0;
    padding-top: 0;
}

.section {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding-top: calc(var(--header-height) + 60px);
}

.section__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    color: var(--title-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    width: 100%;
}

/* ======================= HOME SECTION ======================= */
#home {
    background-image: url('../img/home_bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0;
    padding-top: calc(var(--header-height) + 20px);
    justify-content: center;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.home__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.home__container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4rem;
}

.home__img {
    width: 350px;
    object-fit: cover;
    border: 4px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home__text {
    display: flex;
    flex-direction: column;
}

.home__name {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.home__description {
    font-size: var(--h2-font-size);
    color: var(--white-color);
    line-height: 1.8;
}

.home__description b {
    color: var(--first-color);
    font-weight: var(--font-bold);
}

/* Home Social Links */
.home__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.home__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--white-color);
    border-radius: var(--circle);
    color: var(--black-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.home__social-link:hover {
    background-color: var(--first-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Decorative Images */
.home__decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.home__decoration--1 {
    top: 120px;
    left: 10%;
    width: 80px;
    opacity: 0.8;
}

.home__decoration--2 {
    bottom: 100px;
    right: 10%;
    width: 100px;
    opacity: 0.8;
}

/* ======================= ABOUT ME SECTION ======================= */
#about {
    background-color: var(--container-color);
}

/* About Me Container - Image on right, content on left */
.about__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    flex-direction: row-reverse;
}

/* About Me Image (Right Side) */
.about__image {
    position: relative;
    flex: 0 0 auto;
}

.about__image img:first-child {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--black-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about__decoration {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100px;
    z-index: -1;
    opacity: 0.5;
}

/* About Me Info (Left Side) */
.about__info {
    flex: 1;
    max-width: 600px;
}

.about__description {
    font-size: var(--h2-font-size);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about__description b {
    color: var(--first-color);
    font-weight: var(--font-bold);
}

/* About Me List - Black background with rounded border radius and white text */
.about__list {
    margin-bottom: 1.5rem;
    background-color: var(--black-color);
    border-radius: 15px;
    padding: 1.5rem;
}

.about__item {
    font-size: var(--normal-font-size);
    color: var(--white-color);
    line-height: 1.6;
}

.about__item b {
    font-weight: var(--font-bold);
    color: var(--first-color);
}

/* About Me Buttons */
.about__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: rgba(252, 67, 3, 0.8);
    transform: translateY(-2px);
}

.button i {
    font-size: 18px;
}

.button__ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid var(--black-color-light);
}

.button__ghost:hover {
    background-color: var(--first-color);
    color: var(--white-color);
    border-color: var(--first-color);
}

/* ======================= CERTIFICATIONS SECTION ======================= */
#certifications {
    background-image: url('../img/certifications_bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.certifications__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    flex-wrap: wrap;
}

.certifications__card {
    position: relative;
    width: 260px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid var(--black-color);
    overflow: hidden;
}

.certifications__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.certifications__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--body-color);
    transition: filter 0.3s ease;
}

.certifications__card:hover .certifications__img {
    filter: blur(5px);
}

.certifications__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certifications__card:hover .certifications__overlay {
    opacity: 1;
}

.certifications__text {
    color: var(--white-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    text-align: center;
    padding: 1rem;
    line-height: 1.4;
}


@keyframes border-draw {
    0% {
        clip-path: inset(0 100% 0 0);
        border-color: var(--first-color);
    }
    25% {
        clip-path: inset(0 0 100% 0);
        border-color: var(--first-color);
    }
    50% {
        clip-path: inset(0 0 0 100%);
        border-color: var(--first-color);
    }
    75% {
        clip-path: inset(100% 0 0 0);
        border-color: var(--first-color);
    }
    100% {
        clip-path: inset(0 0 0 0);
        border-color: var(--first-color);
    }
}

/* ======================= PROJECTS SECTION ======================= */
#projects {
    background-color: var(--container-color);
    overflow: hidden;
}

/* Projects Carousel Container */
.projects__carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 2rem 0;
    overflow: hidden;
}

.projects__track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
}

.projects__card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.projects__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--body-color);
}

.projects__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects__card:hover .projects__img {
    transform: scale(1.08);
}

.projects__button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.projects__card:hover .projects__button {
    opacity: 1;
    transform: translateY(0);
}

.projects__content {
    padding: 1rem 1.25rem;
}

.projects__subtitle {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.projects__title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.projects__description {
    font-size: var(--smaller-font-size);
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.projects__buttons {
    padding: 0 1.25rem 1.25rem;
}

.projects__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--black-color);
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.projects__link:hover {
    background-color: var(--first-color);
    transform: translateX(3px);
}

.projects__link i {
    font-size: 16px;
}

/* Carousel Navigation */
.projects__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.projects__dots {
    display: flex;
    gap: 0.5rem;
}

.projects__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-color-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects__dot.active {
    background-color: var(--first-color);
    transform: scale(1.2);
}

.projects__arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.projects__arrow:hover {
    background-color: var(--first-color);
    transform: scale(1.1);
}

.projects__arrow--left {
    transform: rotate(180deg);
}

.projects__arrow--left:hover {
    transform: rotate(180deg) scale(1.1);
}


/* ======================= CONTACT ME SECTION ======================= */
#contact {
    background-image: url('../img/contact_bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

#contact .section {
    position: relative;
    z-index: 1;
}

#contact .section__title {
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Container */
.contact__container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

/* Contact Form (Left Side) */
.contact__form-container {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__label {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--title-color);
}

.contact__input {
    padding: 0.75rem 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    border: 2px solid var(--text-color-light);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: var(--body-color);
}

.contact__input:focus {
    border-color: var(--first-color);
}

.contact__input::placeholder {
    color: var(--text-color-light);
}

.contact__textarea {
    resize: none;
    min-height: 120px;
}

.contact__button {
    align-self: flex-start;
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--white-color);
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast--success {
    background-color: #16a34a;
}

.toast--error {
    background-color: #dc2626;
}

/* Contact Info (Right Side) */
.contact__info-container {
    flex: 0 0 40%;
    max-width: 40%;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__description-1 {
    font-size: var(--h2-font-size);
    line-height: 1.6;
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact__description-2 {
    font-size: var(--normal-font-size);
    line-height: 1.6;
    opacity: 0.9;
}

.contact__description-2 b {
    color: var(--first-color);
    font-weight: var(--font-bold);
}

/* Contact Social Data */
.contact__social-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact__social-description-1 {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--white-color);
    margin-bottom: 0.25rem;
}

.contact__social-description-2 {
    font-size: var(--normal-font-size);
    color: var(--white-color);
}

.contact__social-links {
    display: flex;
    gap: 1rem;
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--white-color);
    border-radius: 50%;
    color: var(--black-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    background-color: var(--first-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* ======================= FOOTER ======================= */
.footer {
    background-color: rgba(255, 140, 80, 1);
    padding: 1.5rem 2rem;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer__text {
    color: var(--white-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__link {
    color: var(--white-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: var(--black-color);
    transform: translateY(-2px);
}


/* ======================= RESPONSIVE ======================= */

/* Tablet */
@media screen and (max-width: 1260px) {
    :root {
        --header-width: 80%;
    }

    .nav__center {
        gap: 1.5rem;
    }
}

/* Tablet */
@media screen and (max-width: 992px) {
    :root {
        --header-width: 80%;
    }

    .nav__center {
        gap: 1.5rem;
    }
    
    .projects__card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .projects__track {
        gap: 2rem;
    }
}

/* Mobile */
@media screen and (max-width: 900px) {
    :root {
        --header-height: 60px;
        --header-width: 80%;
        --header-radius: 30px;
    }

    .nav {
        padding: 0 1rem;
    }

    .nav__logo {
        width: 40px;
        height: 40px;
    }

    .nav__center {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        height: 0;
        flex-direction: column;
        background-color: var(--black-color);
        transform: none;
        left: auto;
        gap: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        border-radius: 0 0 var(--header-radius) var(--header-radius);
    }

    .nav__center.active {
        height: auto;
        padding: 1rem 0;
    }

    /* Remove bottom border radius when menu is active */
    .header.menu-active {
        border-radius: var(--header-radius) var(--header-radius) 0 0;
    }

    .nav__center .nav__link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    /* Remove hover animations in mobile */
    .nav__center .nav__link::after {
        display: none;
    }

    .nav__center .nav__link:hover {
        font-size: var(--normal-font-size);
    }

    .nav__contact {
        display: none;
    }

    /* Hamburger Menu */
    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 101;
    }

    .nav__toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--white-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Home Section Responsive */
    .home__content {
        padding: 1rem;
    }

    .home__container {
        flex-direction: column;
        gap: 2rem;
    }

    .home__name {
        font-size: 36px;
        letter-spacing: 2px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .home__img {
        width: 200px;
        height: 250px;
    }

    .home__text {
        text-align: center;
        align-items: center;
    }

    .home__description {
        font-size: var(--normal-font-size);
    }

    /* Keep decorative images visible on mobile */
    .home__decoration {
        display: block;
    }

    .home__decoration--1 {
        top: 100px;
        left: 5%;
        width: 60px;
    }

    .home__decoration--2 {
        bottom: 80px;
        right: 5%;
        width: 70px;
    }

    /* About Section Responsive */
    .about__container {
        flex-direction: column;
    }

    .about__image img:first-child {
        width: 250px;
        height: 250px;
    }

    .about__info {
        text-align: center;
        max-width: 100%;
    }

    .about__buttons {
        justify-content: center;
    }

    /* Certifications Section Responsive */
    .certifications__container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .certifications__img {
        width: 300px;
    }

    .contact__container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact__form-container {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .contact__info-container {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .contact__social-data {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .projects__carousel {
        width: 100%;
        padding: 1rem 0;
    }

    .projects__track {
        gap: 0;
        width: 100%;
    }

    .projects__card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .footer__container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer__links {
        gap: 1rem;
    }

    .footer__text {
        font-size: var(--small-font-size);
    }

    .footer__link {
        font-size: var(--small-font-size);
    }
}

/* Extra small mobile */
@media screen and (max-width: 480px) {
    :root {
        --header-width: 95%;
        --header-radius: 25px;
    }

    .home__name {
        font-size: 28px;
    }

    .home__img {
        width: 150px;
        height: 200px;
    }
}

