/* HERO */
/* Whole Header-Section */
#header {
    width:100%;
    height:20vh;
    position:absolute;
    top:0;
    z-index:1000;

}
.container-fluid {
    width:100%;
    height:100%;
    display:flex;
    justify-content:flex-end;
}

.container-fluid .logo {
    height:100%;
}
.container-fluid .logo .Logo:hover{
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.8) ,0 0 40px rgba(0, 242, 254, 0.6);
}

.container-fluid .logo .Logo img {
    height:50px;
    width: 150px;
    border-radius:10px;
}


#navbar{
    height:100%;
    padding-left:0 !important;
    padding-right:0 !important;
    justify-content:flex-start;
    
    
}

#navbar ul{
    height:100%;
    display:flex;
    list-style:none;
    width:100%;   
    align-items:center;
    justify-content:flex-start;
    margin-left:0;
    padding-left:0;

    
}

#navbar ul li {
    height:100%;
}
#navbar ul .hide-on-mobile a {
    height:100%;  
    padding: 0 15px;
    text-decoration: none;
    display: flex;
    align-items: center;  
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform:uppercase;
    color: rgba(255, 255, 255, 0.75); 
    position:relative;
    width:max-content;
    
}
#navbar ul .hide-on-desktop a{
    height:100%;  
    padding: 0 15px;
    text-decoration: none;
    display: flex;
    align-items: center;  
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);

}
#navbar ul .hide-on-desktop a:hover{
    color:white;

}


#navbar ul .hide-on-mobile a:hover{
    color:white;
}
#navbar ul .hide-on-mobile a::after{
    content:'';
    background:#DBAB44;
    width:0;
    height:3px;
    position:absolute;
    bottom:35%;   
    transition: width 0.3s ease;
}
#navbar ul .hide-on-mobile a:hover::after {
    width:70%;
}
#navbar ul .hide-on-mobile a.active::after{
    width:70%;
}

/* Whole side-header section */

#header-side{
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:380px;
    height:100vh;

    background:#0F172A;

    display:flex;
    flex-direction:column;

    transition:.35s ease;

    z-index:99999;

    box-shadow:-10px 0 30px rgba(0,0,0,.4);
}

#header-side.show{
    right:0;
}

/* Top */

.sidebar-top{

    height:75px;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    padding:0 25px;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.sidebar-top i{

    font-size:34px;

    color:white;

    cursor:pointer;
}

/* Navigation */

#navbar-side{

    display:flex;

    flex-direction:column;

    flex:1;
}

.menu-item{

    height:65px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 25px;

    color:white;

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    font-weight:600;

    letter-spacing:1px;

    transition:.25s;
}

.menu-item:hover{

    background:#1E293B;

    color:#3b82f6;
}

.menu-item i{

    font-size:20px;
}

.menu-item.active{

    color:#3b82f6;
}

/* Bottom */

.sidebar-bottom{

    padding:30px 25px;

    border-top:1px solid rgba(255,255,255,.08);
}

.sidebar-bottom img{

    width:120px;

    margin-bottom:25px;
}

.sidebar-social{

    display:flex;

    gap:20px;
}

.sidebar-social a{

    color:white;

    font-size:22px;

    transition:.3s;
}

.sidebar-social a:hover{

    color:#2563EB;
}



@media(max-width:800px) {
    .hide-on-mobile {
        display:none;
    }

}

@media(min-width:800px){
    .hide-on-desktop{
        display:none;
    }
}
@media(min-width:360px) and (max-width:800px){
    .container-fluid .logo .Logo img {
        width: 25vw ;
    }
    .footer-links {
        display:none;
    }
    .hide-on-desktop a i {
         font-size: 35px;
    }
}
@media(min-width:360px) and (max-width:500px) {
    .footer .footer-legal .credits .web-de-cr {
        display: block;
    }
}






.events-hero{

min-height:70vh;

display:flex;
align-items:center;
justify-content:center;

text-align:center;
color:#fff;

padding:150px 20px 100px 20px;

background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url("../img/collage.png") center/cover no-repeat;

}

.events-hero h1{

font-size:56px;
font-weight:700;
margin-bottom:20px;

}

.events-hero p{

font-size:18px;
max-width:650px;
margin:auto;

}

/* EVENT LIST */

.events-list{
min-height: 100vh;
padding:100px 0;

}

.event-card{

background:#1f2937;

padding:30px;

border-radius:12px;

box-shadow:0 15px 35px rgba(0,0,0,0.35);

transition:0.3s;

color:#e5e7eb;

}

.event-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,0.5);

}
.event-date{

display:block;

margin-top:10px;

font-weight:600;

color:var(--color-primary);

}
.service-item{

cursor:pointer;
transition:0.3s;

}

.service-item:hover{

transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);

}
/* SERVICES EVENT CARDS */

.services{

padding:100px 0;

}

.service-item{

background:#1f2937;

padding:40px;

border-radius:14px;

box-shadow:0 12px 35px rgba(0,0,0,0.35);

transition:all 0.35s ease;

height:100%;

color:#e5e7eb;

}

.service-item:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,0,0,0.5);

}
.service-item .icon{

font-size:36px;

color:var(--color-primary);

margin-bottom:20px;

}
.service-item h3{

font-weight:600;

margin-bottom:10px;

}

.service-item p{

color:#9ca3af;

}

.service-item .readmore{

margin-top:15px;

display:inline-block;

font-weight:600;

color:var(--color-primary);

}

.services .row{

max-width:1000px;

margin:auto;

}
#overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;
}

#overlay.show{

    opacity:1;

    visibility:visible;
}