
.web-content aside ul.nav-list a.nav-link li.nav-option,
.web-content aside ul.nav-list div.go-back-container {
    animation: animateNavOptionsLeft .35s forwards;
}


div.sticky-welcome {
    box-sizing: border-box;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    position: sticky;
    top: 0;
    z-index: 1;
    flex-direction: column;
}

.projects-content {
    transition: background-color 1s ease, color 1s ease;
    background-color: #000;
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.chevron-down-webs-done-container .fa-chevron-down {
    transition: color 1s ease;
    color: #fff;
    font-size: 4rem;
    
    animation: chevronGoDown 1.5s linear infinite;
}

body.theme-light .chevron-down-webs-done-container .fa-chevron-down {
    color: #000;
}

body.theme-light .projects-content {
    background-color: #fff;
    color: #000;
}

.sticky-welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

body.theme-light .sticky-welcome h1 {
    color: #000;
}

.sticky-welcome h1 {
    transition: color 1s ease;
    font-size: 72px;
    font-weight: bold;
    text-align: center;
    color: white;
}

body.theme-light .chevron-down-webs-done-container {
    color: #000;
}

.chevron-down-webs-done-container {
    transition: color 1s ease;
    margin-top: 20px;
    font-size: 32px;
    color: white;
}


.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

#searchInput {
    outline: none;
    border: none;
    padding: 0.5rem;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, .2);
    transition: box-shadow .5s ease;
}

#searchInput:focus {
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.5);
}


.custom-dropdown {
    position: relative;
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, .2);
}

.custom-dropdown:hover,
.custom-dropdown:focus-within {
    box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.3);
}

.custom-dropdown button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #111;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 180px;
}

.custom-dropdown svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

#dropdownMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    border-radius: 4px;
    margin-top: 0.5rem;
    flex-direction: column;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
}

#dropdownMenu.visible {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    display: flex;
}

#dropdownIcon.rotate-180 {
    transform: rotate(180deg);
}

#websContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


body.theme-light .web-card {
    background-color: #fff;
}

.web-card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 1s ease;
    opacity: 1;
    transform: scale(1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.web-card.opacity-0 {
    opacity: 0;
    transform: scale(0.95);
}

body.theme-light .iframe-wrapper {
    background-color: #fff;
}

.iframe-wrapper {
    transition: background-color 1s ease;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.load-iframe-btn {
    padding: 0.75rem 1.25rem;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 1s ease;
}

.load-iframe-btn:hover {
    background-color: #1663c7;
}

body.theme-light .web-card-info {
    background-color: #fff;
}

.web-card-info {
    background-color: #000;
    transition: background-color 1s ease;
    padding: 1rem;
}

body.theme-light .web-card-info h2 {
    color: #000;
}

.web-card-info h2 {
    transition: color 1s ease;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
}

body.theme-light .web-card-info p {
    color: #000;
}

.web-card-info p {
    transition: color 1s ease;
    font-size: 0.875rem;
    color: #ccc;
}

body.theme-light .visit-btn {
    background-color: #000;
    color: #fff;
}

.visit-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 1s ease, border-color 1s ease, color 1s ease;
    border: 1.5px solid transparent;
}

.visit-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}

body.theme-light .visit-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
}


.no-webs-message {
    background-color: #222;
    color: #ccc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem auto;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}


@media (max-width: 1024px) {
    div.sticky-welcome h1 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    div.sticky-welcome h1 {
        font-size: 60px;
    }
}

@media (max-width: 550px) {
    div.sticky-welcome h1 {
        font-size: 50px;
    }
}

@media (max-width: 460px) {
    div.sticky-welcome h1 {
        padding: 10px;
        overflow-x: hidden;
        font-size: 40px;
        text-wrap: nowrap;
    }
}

@media (max-width: 1024px) {
    .sticky-welcome h1 {
        font-size: 60px;
    }
}
@media (max-width: 768px) {
    .sticky-welcome h1 {
        font-size: 60px;
    }
}
@media (max-width: 550px) {
    .sticky-welcome h1 {
        font-size: 50px;
    }
}
@media (max-width: 460px) {
    .sticky-welcome h1 {
        padding: 10px;
        overflow-x: hidden;
        font-size: 40px;
        text-wrap: nowrap;
    }
}