   .custom-navbar {
        background-color: var(--white);
        height: 90px;
        display: flex;
        align-items: center;
        transition: all 0.4s ease;
        z-index: 1050;
        position: relative;
    }

    .navbar-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        animation: slideDown 0.3s ease forwards;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .custom-navbar .nav-link {
        color: var(--secondary-color);
        font-size: 14px;
        font-weight: 400;
        position: relative;
        transition: all 0.3s ease;
    }

    .custom-navbar .nav-link:hover,
    .custom-navbar .nav-link.active {
        color: var(--primary-color);
    }

    .custom-navbar .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .custom-navbar .nav-link.active::before,
    .custom-navbar .nav-link:hover::before {
        transform: scaleX(1);
    }

    .navbar-btn {
        background-color: var(--primary-color);
        color: var(--white);
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .navbar-btn:hover {
        background-color: var(--secondary-color);
        color: var(--white);
    }

    .animated-dropdown {
        background-color: var(--white);
        animation: fadeIn 0.3s ease-in-out;
        border: none;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .animated-dropdown .dropdown-item {
        color: var(--black);
        padding: 0.5rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .animated-dropdown .dropdown-item:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .arrow-down {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid var(--secondary-color);
        transition: transform 0.3s ease;
    }

    .dropdown-hover:hover .arrow-down {
        transform: rotate(180deg);
    }

    .dropdown-hover:hover .dropdown-menu {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

    /* footer */
.tlc-spain-footer {
    background-color: var(--primary-color);
    color: var(--white);
}
.tlc-spain-footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-social-icons a:hover ,
.tlc-spain-footer a:hover {
    color: #F4E2D8;
}
.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}
.footer-social-icons a {
    font-size: 1.25rem;
    color: var(--white);
    transition: color 0.3s ease;
}
.legal-section {
    background-color: #fff;
}
.legal-section h1 {
    font-size: 2.5rem;
}
.legal-content h4 {
    color: var(--secondary-color);
}
.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
}
.hero-banner {
 position: relative;
    min-height: 100vh;
    background: url('https://www.gokite.travel/wp-content/uploads/2024/08/3.-Discover-the-Architectural-Wonders-of-Barcelona.webp') center center / cover no-repeat;  background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
}

.hero-banner .hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--secondary-color);
}

.hero-banner h1,
.hero-banner p {
    color: var(--secondary-color);
}
