/* ############################# GLOBAL STYLES ############################# */
:root {
    --primary-color: #FFB600;
    --secondary-color: #1c1c1c;
    --background-color: #121212;
    --text-color: #cfcfcf;
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

a{
    text-decoration: none;
}

/* ############################# TITLES CONTAINER STYLES ############################# */
.title-sections {
    text-align: center;
    color: var(--primary-color);
    font-family: 'Fira Code', monospace;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.title-sections h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0;
    animation: glow-text 3s ease-in-out infinite;
}

/* ############################# SCROLL TOP STYLES ############################# */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-size: 32px;
    border: none;
    padding: 18px;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #1f1f1f;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
    font-size: 40px;
}

.scroll-to-top.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top.visible {
    transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .scroll-to-top i {
        font-size: 25px;
    }
}


/* ############################# GLOBAL STYLES ############################# */
body {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    color: #1a1a1a;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2px 50px;
    z-index: 1000;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    box-shadow: 0 9px 8px rgba(0, 0, 0, 0.4);
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.navbar .navbar-brand img {
    width: 50px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
    z-index: 1;
    pointer-events: none;
}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.collapse ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-item a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.nav-item a.active,
.nav-item a:hover {
    color: var(--primary-color) !important;
}

.sect h2{
    margin-top: -23px;
}

/* ############################# SECTION HOME ############################# */
#home {
    display: flex;
    flex-wrap: wrap;
    background: var(--background-color);
    background-image: url('./../img/JHOMT_FONT.png');
    background-size: cover;
    background-position: left;
    background-attachment: fixed;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.8);
    background-repeat: no-repeat;
    color: var(--white-color);
    min-height: 100vh;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

.home-left, .home-right{
    width: 100%;
    flex: 1;
    flex-direction: column;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card {
    background-color: #1a1a1a;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 3px solid var(--white-color);
    border-top: 3px solid var(--white-color);
    padding: 30px;
    text-align: center;
    width: 250px;
    box-shadow: 0 9px 8px rgba(0, 0, 0, 0.4);
}

.profile-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.profile-card h2 {
    color: var(--primary-color);
}

.download-btn {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--secondary-color);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.1);
}

.socials {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials li a {
    color: var(--white-color);
    font-size: 20px;
}

.home-right {
    max-width: 600px;
    text-align: left;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.home-right h1 {
    width: 100%;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--white-color);
    text-shadow: 0 2px 10px rgba(255, 182, 0, 0.1);
}

.home-right .accent {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(255, 182, 0, 0.4);
}

.home-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 550px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.talk-btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 182, 0, 0.1);
}

.talk-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 14px rgba(255, 182, 0, 0.4);
    transform: translateY(-2px);
}

.container-info {
    width: 100%;
    max-width: 300px;
    padding: 30px 25px;
    border-radius: 30px;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.container-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container-info div:last-child {
    border-bottom: none;
}

.container-info .number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 40px;
    text-shadow: 0 0 5px rgba(255, 182, 0, 0.3);
}

.container-info .label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 1px;
}

.container-info div {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.6s ease forwards;
}

.container-info div:nth-child(1) { animation-delay: 0.1s; }
.container-info div:nth-child(2) { animation-delay: 0.2s; }
.container-info div:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    #home {
        padding: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-left, .home-right, .info-box {
        width: 100%;
        max-width: 600px;
        align-items: center;
        text-align: center;
    }

    .home-right {
        text-align: center;
        padding: 10px;
    }

    .home-right h1 {
        font-size: 2.2rem;
    }

    .home-right p {
        font-size: 1rem;
        padding: 12px 15px;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        border-radius: 10px;
    }

    .talk-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .profile-card {
        margin-bottom: 30px;
    }

    .container-info {
        align-items: center;
        text-align: center;
        border-radius: 30px;
    }

    .container-info div {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #home{
        padding: 100px 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .home-right h1 {
        font-size: 1.8rem;
    }

    .home-right p {
        font-size: 0.95rem;
    }

    .talk-btn {
        width: 100%;
        font-size: 1rem;
    }

    .container-info .number {
        font-size: 1.5rem;
    }
}


/* ############################# SECTION ABOUT ############################# */
#about {
    padding: 50px 30px;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 9px 16px rgba(0, 0, 0, 0.5);
}

@keyframes glow-text {
    0% {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
    50% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    }
    100% {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-info {
    flex: 1;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 20px;
    color: var(--text-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.profile-info:hover {
    transform: scale(1.03);
}

.profile-info p {
    font-size: 1.1rem;
    margin: 8px 0;
    line-height: 1.5;
    font-weight: 500;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-cv {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #121212;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-info a.btn-cv:hover {
    background-color: #ffd700;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(255, 182, 0, 0.4);
}

.profile-image {
    flex: 1;
    position: relative;
    padding: 20px;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

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

.image-overlay:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .profile-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .profile-image {
        width: 100%;
    }
}

/* ############################# SECTION SERVICES ############################# */
#services {
    padding: 100px 20px;
    background-color: var(--background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

#services h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    animation: glow-text 3s ease-in-out infinite;
}

@keyframes glow-text {
    0% {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
    50% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    }
    100% {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Grid para disposición flexible */
    justify-items: center;
    gap: 50px;
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.service-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 35px;
    border-radius: 25px;
    width: 100%;
    max-width: 300px;
    height: auto;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
    position: relative;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

.service-box p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    opacity: 0.8;
}

.service-box p strong {
    color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.service-box:hover .service-icon {
    transform: scale(1.2) translateX(-50%) translateY(-10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.service-icon i {
    font-size: 42px;
    color: var(--white-color);
}

@media (max-width: 1024px) {
    #services h2 {
        font-size: 2.5rem;
    }

    .service-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .service-box {
        width: 80%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    #services h2 {
        font-size: 2rem;
    }

    .service-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-box {
        width: 100%;
        padding: 25px;
        margin-top: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .service-icon i {
        font-size: 35px;
    }

    .service-box p {
        font-size: 14px; /* Reducir tamaño de texto en móviles */
    }
}


/* ############################# SECTION PROJECTS ############################# */
#projects {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#projects h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    justify-content: center;
    padding-top: 30px;
}

.project-box {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-icon {
    font-size: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.project-box:hover .project-icon {
    transform: scale(1.1);
}

.project-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.project-box p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.project-box a.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #121212;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.project-box a.btn-primary:hover {
    background-color: #ffd700;
}

.frontend-project .project-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.backend-project {
    background-color: #222222;
    color: #fff;
}

.backend-project .project-icon {
    color: #ff6f00;
}

.more-projects {
    text-align: center;
    margin-top: 40px;
}

.more-projects a.btn-secondary {
    background-color: #333;
    color: var(--white-color);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.more-projects a.btn-secondary:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    #projects h2 {
        font-size: 2.5rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-box {
        width: 100%;
        padding: 30px;
    }
}

@media (min-width: 768px) {
    .about-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }


}


@media (min-width: 992px) {
    .service-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ############################# SECTION SKILLS ############################# */
#skills {
    padding: 100px 20px;
    background-color: var(--background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#skills h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    margin: 0 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.tab-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.tab-content {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.tab-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn-languages {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    margin: 0 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.tab-btn-languages.active {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.skills-container.frontend {
    display: none;
}

.skills-container.backend {
    display: none;
}

.skills-container.active {
    display: flex;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    height: 180px;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.skill:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3);
}

.skill .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.skill:hover .icon {
    transform: scale(1.2);
}

.skill span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
}

.progress {
    width: 100%;
    max-width: 400px;
    height: 17px;
    background-color: #6C757D;
    border-radius: 50px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-top: 10px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #fffec3, var(--primary-color));
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(232, 223, 38, 0.6);
    transition: width 1s ease-in-out;
}

.percentage {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: var(--white-color);
}

@media screen and (max-width: 1024px) {
    .tabs {
        flex-direction: column;
    }

    .skills-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .skill {
        width: 120px;
        height: 150px;
        span{
            font-size: 10px;
        }
    }

    .progress-bar {
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        margin: 5px 0;
    }
}

@media screen and (max-width: 768px) {
    .skill {
        width: 100px;
        height: 130px;
        padding: 15px;
    }

    .progress-bar {
        width: 80%;
    }

    .progress {
        max-width: 300px;
    }

    .skill .icon {
        width: 40px;
        height: 40px;
    }

    .tab-btns {
        flex-direction: column;
    }

    .tab-btn-languages {
        width: 100%;
        margin: 5px 0;
    }
}

/* ############################# SECTION FOOTER ############################# */
#footer {
    background-color: #1c1c1c;
    color: var(--white-color);
    padding: 60px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Asegura que las formas no sobresalgan */
    z-index: 10;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 25%, transparent 50%);
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
    width: 30%;
}

.footer-logo img {
    width: 80px;
}

.footer-logo p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 10px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.footer-links ul li a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-links ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-contact p {
    font-size: 1rem;
    color: var(--text-color);
}

.footer-contact .email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-contact .email-link:hover {
    color: #e5b700;
}

.footer-contact .social-links a {
    margin: 0 15px;
    font-size: 2rem;
    color: var(--white-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact .social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-bottom {
    background-color: #e5b700;
    padding: 20px;
    color: var(--background-color);
    font-size: 0.9rem;
    border-top: 2px solid var(--background-color);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo img {
        width: 90px;
    }

    .footer-links ul li {
        font-size: 1.2rem;
    }

    .footer-contact .social-links a {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 60px;
    }

    .footer-links ul li {
        font-size: 1.1rem;
    }

    .footer-contact .social-links a {
        font-size: 2rem;
    }
}