﻿footer {
    width: 100%;
    height: 110px; /* Increased height for better spacing */
    background-color: #EDEBEF; /* For visibility */
    color: #1e0b38;
    display: flex;
    flex-direction: column; /* Ensures stacked layout */
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    flex-shrink: 0; /* Ensures footer does not shrink */
}

/* ✅ Footer Text */
.footer-text {
    /*font-size: 1.1em;*/    
    background: linear-gradient(90deg, #4F2A84 0%, #D1005D 25%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 100%; /* Adjust as needed */
    text-align: left;
    white-space: normal; /* Ensures text wraps */
    margin-bottom: 5px; /* Adds space between text and links */
    font-size:clamp(1rem, 1.5023474178vw + 1.6478873239rem, 2rem);
    line-height:1.2;
}

/* ✅ Footer Bottom Section */
.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ✅ Copyright */
.copyright {
    font-size: 1.125rem;
    text-align: left !important;
}

/* ✅ Footer Links */
.varo-links {
    display: flex;
    gap: 15px; /* Adds spacing between links */
    justify-content: flex-end;
}

    .varo-links a {
        text-decoration: none;
        color: #1e0b38;
        font-size: 1.125rem;
    }

        .varo-links a:hover {
            text-decoration: underline;
        }
