:root {
    --color-bg-main: #181A1B;
    --color-bg-secondary: #23243A;
    --color-primary: #5865F2;
    --color-secondary: #8B5CF6;
    --color-text-main: #F4F4F4;
    --color-text-secondary: #B0B3B8;
    --color-white-translucent: #f4f4f4cc;
}

/*index.css*/
/* Responsive CSS file styles defined for smaller width devices */
/* CSS for tablet devices */
@media screen and (min-width: 576px) and (max-width: 820px) {
    .logo {
        padding: 0 3rem;
    }

    .menu {
        position: static;
        padding: 0 1rem;
        background: none;
        display: block !important;
    }

    .menu .menu-list {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }

    /* Eliminar menú hamburguesa */
    .hamburger {
        display: none !important;
    }

    .portfolio {
        padding: 0;
    }

    .about {
        flex-direction: column;
    }

    .about .about-text {
        padding: 2rem;
    }

    .about .about-image img {
        padding: 2rem;
    }

    .services {
        padding: 0;
    }

    .my-row {
        gap: 10px;
    }

    .my-row .my-col {
        text-align: center;
        width: 35%;
    }

}


/* CSS for mobile devices */
@media screen and (min-width: 280px) and (max-width: 576px) {
    .hero {
        justify-content: center;
        color: var(--color-text-main);
        background-image: radial-gradient(circle, rgb(15 14 14 / 30%), rgb(102 96 96 / 40%), rgb(163 160 160 / 16%)), url('./Images/heroImg3.avif');
    }

    .sub-heading {
        color: var(--color-text-secondary);
    }

    .hero .intro-buttons {
        gap: 20px;
    }

    .btn {
        padding: 10px 30px;
    }

    .logo {
        padding: 0 1rem;
    }

    .menu {
        position: static;
        padding: 0;
        background: none;
        display: block !important;
        width: 100vw;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu .menu-list {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        overflow-x: auto;
        width: 100vw;
        gap: 0.1rem;
        padding: 0;
        margin: 0;
        white-space: nowrap;
    }

    .menu-list .menu-list-items {
        padding: 0.2rem 0.2rem;
    }

    .menu-list .menu-list-items .links {
        box-sizing: border-box;
        padding: 0.25rem 0.5rem;
        font-size: 0.90rem;
        min-width: unset;
        max-width: 100vw;
        word-break: break-word;
        white-space: normal;
        border-radius: 18px;
    }

    /* Eliminar menú hamburguesa */
    .hamburger {
        display: none !important;
    }

    .portfolio {
        padding: 0;
    }

    .about {
        flex-direction: column;
    }

    .about .about-text {
        width: 90%;
        padding: 1rem;
    }

    .about .about-image img {
        width: 90%;
        padding: 1rem;
    }

    .services {
        padding: 0;
    }

    .my-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        margin: 2rem 0;
        gap: 1rem;
    }

    .my-row .my-col {
        text-align: center;
        width: 100%;
    }

    .contact {
        padding: 0;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact-form-container {
        width: 80%;
    }

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

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

    .contact-details {
        width: 80%;
    }

    .footer-menu {
        padding: 0 2rem;
    }

    .footer-list-items {
        margin: 0;
    }
}