*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    overflow:hidden;
    background:#f4f4f4;
}

#map{
    height:100vh;
    width:100%;
    z-index:1;
}

.menu-btn{
    position:fixed;
    top:20px;
    left:20px;
    background:white;
    padding:10px 15px;
    border-radius:10px;
    font-size:22px;
    cursor:pointer;
    z-index:5000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display:none;
}

.sidebar{
    position:fixed;
    top:0;
    left:0;
    width:340px;
    height:100%;
    background:
    linear-gradient(
        180deg,
        #ff8c69,
        #ff6f61
    );
    padding:20px;
    color:white;
    transform:translateX(-100%);
    transition:0.3s;
    overflow-y:auto;
    z-index:2500;
}

.sidebar.active{
    transform:translateX(0);
}

.logo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    margin:auto;
    border:4px solid white;
    margin-bottom:15px;
}

.main-logo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

.sidebar h1{
    text-align:center;
    margin-bottom:10px;
}

.tagline{
    text-align:center;
    margin-bottom:20px;
    line-height:1.5;
}

.sidebar > button{
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border:none;
    border-radius:10px;
    background:#2c3e50;
    color:white;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
    z-index: 4500;
}

.sidebar > button:hover{
    background:#1abc9c;
    transform:scale(1.02);
}

.search-bar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    display:none;
    gap:10px;
    background:white;
    padding:10px 15px;
    border-radius:50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index:4000;
}

.search-bar input{
    width:260px;
    padding:10px;
    border:none;
    outline:none;
    font-size:15px;
}

.search-bar button{
    padding:10px 20px;
    border:none;
    border-radius:30px;
    background:#3498db;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.search-bar button:hover{
    background:#2980b9;
}

.compass{
    position:fixed;
    top:100px;
    right:20px;
    width:65px;
    height:65px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index:3000;
}

.arrow{
    width:0;
    height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:20px solid red;
}

.label{
    font-weight:bold;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    margin-top:15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-3px);
}

.card-content{
    padding:12px;
}

.card-content h3{
    margin-bottom:8px;
}

.card-content p{
    margin-bottom:8px;
    line-height:1.4;
}

.rating{
    color:#f39c12;
    font-weight:bold;
    margin-bottom:10px;
}

.slideshow{
    position:relative;
    width:100%;
    height:230px;
    overflow:hidden;
    background:#ddd;
}

.slide-image{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.slideshow{
    position:relative;
    width:100%;
    height:230px;
    overflow:hidden;
    background:#ddd;
}

.slide-image{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.slide-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(4px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:28px;
    font-weight:bold;
    cursor:pointer;
    z-index:999;
    transition:0.3s;
    user-select:none;
}

.slide-btn:hover{
    background:rgba(255,255,255,0.45);
    transform: translateY(-50%) scale(1.08);
}

.prev{
    left:12px;
}
.next{
    right:12px;
}

.direction-btn{
    width:100%;
    padding:10px;
    border:none;
    border-radius:10px;
    background:#27ae60;
    color:white;
    font-weight:bold;
    cursor:pointer;
    margin-top:10px;
    transition:0.3s;
}

.direction-btn:hover{
    background:#1e8449;
}

.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.hidden{
    display:none !important;
}

.modal-content{
    width:350px;
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.modal-content h2{
    margin-bottom:10px;
}

.welcome-text{
    margin-bottom:20px;
    color:#555;
}

.modal-content input,
.modal-content select{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:14px;
}

.modal-content button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#3498db;
    color:white;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.modal-content button:hover{
    background:#2980b9;
}

.modal-content span{
    color:#3498db;
    cursor:pointer;
    font-weight:bold;
}

.register-box{
    max-height:85vh;
    overflow-y:auto;
}

.admin-dashboard{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    background:#ecf0f1;
    z-index:999999;
}

.admin-sidebar{
    width:260px;
    background:#2c3e50;
    padding:20px;
    color:white;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.admin-sidebar h2{
    margin-bottom:10px;
}

.admin-sidebar button{
    padding:12px;
    border:none;
    border-radius:8px;
    background:#34495e;
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.admin-sidebar button:hover{
    background:#1abc9c;
}

.admin-content{
    flex:1;
    padding:30px;
    overflow-y:auto;
}

.admin-section{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.admin-card{
    background:white;
    padding:15px;
    border-radius:12px;
    margin-bottom:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    line-height:1.8;
}

.admin-card h3{
    margin-bottom:10px;
    color:#2c3e50;
}

.loading-btn{
    background:#7f8c8d !important;
    opacity:0.8;
    cursor:not-allowed;
    transition:0.3s;
}

@media(max-width:768px){
    .sidebar{
        width:280px;
    }

    .search-bar{
        width:90%;
    }

    .search-bar input{
        width:100%;
    }

    .modal-content{
        width:90%;
    }
}

.card-content h3{
    color:#000;
    font-weight:bold;
}

.card-content p{
    color:#333;
}

.rating{
    color:#f39c12;
    font-weight:bold;
}