/* --- AQVE Footer Exact Replica Styles --- */
/* Define your custom font using @font-face */
@font-face {
    font-family: 'AQVE Font'; /* Choose a unique and descriptive name */
    src: url('/ts_custom_module/static/src/fonts/RobotoCondensed-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    /* You can add more formats if you have them (e.g., .woff, .woff2 for better browser compatibility) */
    /* src: url('/my_custom_theme/static/src/fonts/YourFontName-Regular.woff2') format('woff2'),
          url('/my_custom_theme/static/src/fonts/YourFontName-Regular.woff') format('woff'),
          url('/my_custom_theme/static/src/fonts/YourFontName-Regular.ttf') format('truetype'); */
}

/* Example: Apply the font to a specific element or globally */
body, h1, h2, h3, h4, h5, h6 {
    font-family: 'AQVE Font', sans-serif; /* Add a fallback font */
}

/* Or apply it to specific classes/elements */
.o_my_custom_font {
    font-family: 'AQVE Font', sans-serif;
}

/* Main container and background */
.aqve-footer {
    background: #a2c25a;
    color: #222;
    padding: 32px 0 0 0;
    font-family:'AQVE Font', sans-serif;
}

/* Section layout and border */
.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    /* border-bottom: 2px solid #222; */
    padding-bottom: 24px;
}

/* Remove extra spacing from columns */
.footer-menu,
.footer-contact {
    margin: 0;
    padding: 0;
}

/* Column titles */
.footer-menu h5,
.footer-contact h5 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #222;
    padding-bottom: 6px;
    letter-spacing: 1px;
}

/* LinkedIn icon */
.footer-social a[title="LinkedIn"] {
    background: #fff;
    color: #a2c25a;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: none;
    box-shadow: none;
    margin-bottom: 10px;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}
.footer-social a[title="LinkedIn"]:hover {
    background: #a2c25a;
    color: #fff;
}

/* Menu links */
.footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.footer-menu ul li {
    margin-bottom: 8px;
}
.footer-menu ul li a {
    color: #222 !important;
    text-decoration: none;
    font-size: 1.25rem;
    font-family:'AQVE Font', sans-serif;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-menu ul li a:hover {
    color: #4a9b4a !important;
    text-decoration: underline;
    font-weight: 700;
}

/* Ensure all menu items use the same font style */
.footer-menu ul li,
.footer-menu ul li a,
.footer-menu .col b,
.footer-menu .highlight,
.footer-menu .col ul li b,
.footer-menu .col ul li strong {
    font-family:'AQVE Font', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #222 !important;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.4;
}

/* Main menu bold sections */
.footer-menu .col b,
.footer-menu .highlight,
.footer-menu .col ul li b,
.footer-menu .col ul li strong {
    font-weight: 700;
    font-size: 1.5rem;
    color: #222;
}

/* Highlighted "Becoming a member" */
.highlight {
    background: yellow;
    font-weight: 700;
    color: #222;
    padding: 2px 4px;
    font-size: 1.5rem;
}

/* Contact section */
.footer-contact {
    margin-top: 40px;
    width: 100%;
}
.footer-contact h5 {
    font-size: 1.5rem;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #222;
    padding-bottom: 6px;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    width: 100%;
    display: block;
}
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}
.footer-contact-logo {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-contact-logo .logo {
    height: 90px;
    max-width: 160px;
    margin: 0;
}
.footer-contact-details {
    flex: 1 1 320px;
    font-size: 1.25rem;
    font-family:'AQVE Font', sans-serif;
    color: #222;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    align-items: center; /* <-- Add this line to center content horizontally */
    text-align: center;  /* <-- Add this line to center text */
}
.footer-contact-email {
    font-weight: 700;
    color: #222;
    display: block;
    margin-top: 12px;
}
.footer-contact-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.25rem;
    font-family:'AQVE Font', sans-serif;
    color: #222;
    margin: 0;
}
.footer-contact-right .label {
    font-weight: 700;
    color: #222;
    margin-right: 16px;
    display: inline-block;
    min-width: 110px; /* ensures alignment */
}
.footer-contact-right .value {
    font-weight: 400;
    color: #222;
    display: inline-block;
}

/* For each row */
.footer-contact-right .row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-section {
        flex-direction: column;
        gap: 24px;
        text-align: left;
    }
    .footer-menu h5,
    .footer-contact h5 {
        font-size: 1.2rem;
    }
    .footer-menu ul li a,
    .footer-menu .col b,
    .footer-menu .highlight {
        font-size: 1rem;
    }
    .footer-contact-info {
        font-size: 1rem;
    }
    .footer-contact-row {
        flex-direction: column;
        gap: 16px;
    }
    .footer-contact-logo .logo {
        height: 60px;
        max-width: 120px;
    }
    .footer-contact-details,
    .footer-contact-right {
        font-size: 1rem;
        min-width: unset;
    }
}

.footer-contact-email a:hover {
    color: #000 !important;
    text-decoration: none;
}
.footer-contact-email a {
    color: #000 !important;
}

.footer-menu ul li a:hover {
    color: #222 !important;
    text-decoration: none !important;
    font-weight: 300  !important;
    background: #ffffff !important;
}


.footer-menu ul li {
    padding: 0px 8px;
    width:95%;
}



