
/* Footer Styles */
.footer {
    background-color: #fff; /* White background to match the image */
    padding: 40px 0;
    position: relative;
}

.footer-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.footer-horizontal-line-left {
    width: 100%;
    height: 1px;
    background-color: #e6e6f3;
    margin-bottom: 40px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative; /* Provide positioning context for absolute children */
    min-height: 100px; /* Ensure enough space for absolute positioning */
}

.footer-pages {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: center;
    gap: 20px; /* Space between buttons */
}

.footer-destination-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff; /* White text for contrast */
    background-color: #e6e6f3; /* Light blue background */
    padding: 8px 16px;
    border-radius: 4px;
}

.footer-destinations {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    gap: 20px;
}

.footer-link {
    position: relative;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
    background-color: #e6e6f3; /* Light blue background on hover */
    color: #fff; /* White text on hover */
}

.footer-link .link-text {
    position: relative;
    z-index: 1;
}

.footer-link .link-cover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #081c3a;
    transform: translate3d(0px, 0px, 0px) scale3d(0, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-link:hover .link-cover {
    transform: translate3d(0px, 0px, 0px) scale3d(0, 1, 1); /* Keep underline hidden on hover */
    opacity: 0;
}

.footer-logo-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

.footer-logo div {
    font-size: 24px;
    font-weight: 700;
    color: #081c3a;
}

.footer-logo .thin-span {
    font-weight: 300;
}

.footer-credit-text {
    font-size: 12px;
    color: #666;
    text-align: right;
    margin-top: 5px;
}

.footer-delete-me {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-delete-me:hover {
    color: #081c3a;
}

.footer-delete-me .hide-wrapper {
    display: inline-block;
}

.footer-delete-me .delete-me_text-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-delete-me .delete-me_text-title {
    font-size: 14px;
    font-weight: 500;
}
