:root {
    --tittle:#cba135;
    --tittle-shadow:#b39230;
    --paragraph:#6f6f6f;
    --paragraph-black:#5f5f5f;
    --borders:#d4af91;
    --gallery-back:#faf5ed;
    --btns:#3c7573;
    --btn-text:#ffffff;
    --btn-hovver:#e0c28f;
    --lines:#8e9775;
    --sidebar:#3c75733f;;
 
 
 }

 .a{
    width: 100%;
    height: 100%;
 }

 .iconimg{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
 }

body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background:url(img/background.PNG) repeat center center fixed;
    
    color: #333;
    padding: 0 20px;
}

/* Header */
header{
    width: 900px;
    max-width: 100%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}
nav{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav img{
    max-width: 120px;
    margin: auto;
    border-radius: 50%;
}
nav ul{
padding-left: 7rem;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    font-size: 20px;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--gallery-back);
    font-weight: 900 bold;

}
nav a:hover{
    border-bottom: 1px solid var(--borders);
    text-shadow: 1px 1px 1px var(--tittle-shadow);


}
.sidebar{

    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 1210;
    background-color: var(--sidebar);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
#menu{
    display: none;
}
.sidebar li , .sidebar a{
    width: 100%;

}

/* Categories Section */
.categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.category {
    display: flex;
    align-items: center;
    background: rgba(0, 139, 139, 0.322);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    
}


.category .info h2 {
    color: #4CAF50;
    margin: 0 0 5px;
}

.category .info p {
    margin: 0;
    color: #555;
}

.category a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    color: #fff;
    border-top: 4px solid #4CAF50;
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
    #show{
        display: none;
    }
    #menu{
        display: flex;
        margin-right: 30px;
    }
    .thumbnail{
        display: none;
    }

}