*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#0b0b0b;
    color:white;
    overflow-x:hidden;
}

.page-wrapper{
    position:relative;
    min-height:100vh;
    padding:20px;
}

/* GLOW */

.background-glow{
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
    opacity:0.15;
}

.glow-1{
    background:orange;
    top:-200px;
    left:-200px;
}

.glow-2{
    background:#ff3d00;
    bottom:-200px;
    right:-200px;
}

/* LAYOUT */

.map-layout{
    position:relative;
    z-index:2;
    display:flex;
    gap:20px;
    min-height:100vh;
}

/* RESTORANI */

.restaurants{
    width:320px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:16px;
}

/* CARD */

.restaurant-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border-radius:24px;
    overflow:hidden;
    transition:0.3s;
}

.restaurant-card:hover{
    border-color:orange;
    transform:translateY(-4px);
}

/* HEADER */

.accordion-header{
    position:relative;
    cursor:pointer;
}

.accordion-header img{
    width:100%;
    height:160px;
    object-fit:cover;
}

.restaurant-content{
    padding:16px;
}

.restaurant-content h3{
    font-size:20px;
    margin-bottom:8px;
}

.restaurant-content p{
    opacity:0.7;
    font-size:14px;
}

/* PLUS */

.accordion-icon{
    position:absolute;
    top:18px;
    right:18px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(0,0,0,0.5);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:0.3s;
}

/* BODY */

.accordion-body{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

.restaurant-card.active .accordion-body{
    max-height:500px;
}

.restaurant-card.active .accordion-icon{
    transform:rotate(45deg);
    background:orange;
    color:black;
}

.accordion-inner{
    padding:0 16px 20px;
}

.accordion-inner p{
    opacity:0.8;
    line-height:1.5;
    margin-bottom:16px;
}

.accordion-inner ul{
    padding-left:18px;
}

.accordion-inner li{
    margin-bottom:10px;
    opacity:0.75;
}

/* BUTTON */

.map-button{
    width:100%;
    margin-top:18px;
    border:none;
    background:orange;
    color:black;
    padding:14px;
    border-radius:14px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.map-button:hover{
    transform:translateY(-2px);
}

/* MAPA */

.map-container{
    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.08);
}

#map{
    width:100%;
    height:100%;
    min-height:900px;
}

/* OVERLAY */

.map-overlay{
    position:absolute;
    top:25px;
    left:25px;
    z-index:999;
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(12px);
    padding:20px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
}

.map-overlay h1{
    font-size:34px;
    margin-bottom:10px;
}

.map-overlay p{
    opacity:0.7;
}

/* POPUP */

.leaflet-popup-content-wrapper{
    background:#181818;
    color:white;
    border-radius:16px;
}

.leaflet-popup-tip{
    background:#181818;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .map-layout{
        flex-direction:column;
    }

    .restaurants{
        width:100%;
        flex-direction:row;
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:10px;
    }

    .restaurant-card{
        min-width:280px;
    }

    #map{
        min-height:650px;
    }

}

@media(max-width:768px){

    .page-wrapper{
        padding:10px;
    }

    .map-overlay{
        left:15px;
        right:15px;
        top:15px;
    }

    .map-overlay h1{
        font-size:24px;
    }

    #map{
        min-height:500px;
    }

}