﻿
/* ==========================
           Home Map
        ========================== */

.map-section {
    position: relative; 
    background: var(--primary-bg);
    padding: 60px 85px;
    color: #ffffff;
    overflow: hidden;
}

    .map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100%);
        pointer-events: none; 
        z-index: 1; 
    }



    .map-section > * {
        position: relative;
        z-index: 3;
    }

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.map-row {
    align-items: flex-start; 
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.map-content {
    padding-top: 0;
}

.map-tagline {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-divider {
    width: 100%;
    height: 1.5px;
    background: #ffffff;
    margin-bottom: 30px;    
}

.map-description {
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--muted);
    margin-bottom: 40px;
    text-align: right;
}

.stats-wrap {   
    justify-content: flex-end;
    margin-top:0;
}

.stats-row {
    display: flex;
    justify-content: flex-end; 
    gap: 40px; 
    text-align: right;
}

.stat-item {
    min-width: 150px; 
}


.stat-number {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 4rem;
    line-height: 1;
    white-space: nowrap; 
}

.stat-currency {
    font-size: 24pt; 
    vertical-align: super; 
    margin-right: 2px; 
}

.stat-label {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;    
    margin-top: 6px;
    white-space: nowrap;
}


.stats-note {
    font-size: 1.3331rem;
    font-style: italic;
    text-align: right;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .stats-wrap {
        justify-content: flex-start;
    }

    .stats-row {
        flex-direction: row;
        gap: 28px;
        text-align: left;
        
    }

    .stat-number {
        font-size: 36pt;
    }
}


/*@media (max-width: 576px) {
    .map-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 22pt;
        text-align: center;
        margin-bottom: 30px;
    }

    .map-tagline {
        font-size: 15pt;
        text-align: center;
        margin-bottom: 20px;
    }

    .map-row {
        flex-direction: column;
        gap: 20px;
    }

    .map-wrapper {
        margin-bottom: 20px;
        text-align: center;
    }

    .map-content {
        display: flex;
        flex-direction: column;
    }

    .map-description {
        order: 1;
        font-size: 15pt;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: left;
    }

    .map-divider {
        order: 2;
        width: 100%;
        margin: 20px auto;
    }

    .read-more-btn {
        display: inline-block;
        margin-top: 10px;
        font-size: 14pt;
        background: none;
        border: none;
        color: #fff;        
    }

    .stats-wrap {
        order: 3;
        width: 100%;
        margin-top: 20px;
        justify-content: space-between;
    }

    .stats-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        text-align: center;
        width: 100%;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 22pt;
        line-height: 1.2;
        white-space: nowrap;
    }

    .stat-currency {
        font-size: 16pt;
        vertical-align: super;
        margin-right: 2px;
    }

    .stat-label {
        font-size: 11pt;
        margin-top: 4px;
        white-space: nowrap;
    }

    .stats-note {
        order: 4;
        font-size: 10pt;
        margin-top: 20px;
        text-align: left; 
        width: 100%;
    }
}
*/

