

header{ color:rgb(226, 215, 126);
    font-weight: bold;
    font-size: 15px;
    font-family:  sans-serif;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

}

body{ background-color: rgb(30, 53, 45);
    font-family: sans-serif;
    font-size: 11px;
    color: #333;
    margin: 0;
    padding: 0;
    padding-top: 5px;
    
}
i{
    i {
        color: rgb(232, 230, 232); 
        font-size: 20px; 
        margin: 5px; 
        text-align: left;
    }
}
#contact {
    color: rgb(226, 215, 126);
    text-align: left;
    padding: 5px;
    left: 10px;
    top: 10px;
}
.top-menu
{ position:absolute;
    text-align: right;
    top:10px;
    right: 10px;
    color: black;
    
}
.top-menu button{
    color: rgb(219, 219, 57);
    text-decoration: none;
    margin: 5px;
   display: inline-block;
   font-weight: bold;
   transition: all 0.3s ease-in-out;
   cursor: pointer;
   
}

#about{
    display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
}

#about h1 {
   background-color:rgba(172, 131, 50, 0.967); 
   color: rgba(26, 14, 1, 0.834);
    font-weight:bold;
    margin-bottom:10px;
    font-size:32px;
    text-align: center;
    position: relative;
    top:-50px;
    margin-bottom: 10px;
    
}
#about p {
    line-height: 1.6;
    top: -20px; 
    text-align: center;
    font-size: 18px; 
     max-width: 60%; 
     margin: 0 auto;
     position:relative;
    
}
    
.image-container{
    position:relative;
    width: fit-content;
}
img.profile-image{
    width:400px;
    height: auto;
     display:block;
        margin-left: auto;
   
}

#skills{
    display:none;
    justify-content: center;
    flex-wrap: wrap;
    gap:20px;
    background-color: black(239, 23, 23);
}

.skills{
    background: rgb(219, 219, 257);
border-radius: 10px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
padding: 15px;
text-align: center;
width: 150px;
}

.skills img{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

#projects {
    text-align: center;
    padding: 30px 20px;
    display: none;
}

#projects h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e4b60b; /* Κίτρινο για να ταιριάζει με το μενού */
}

.projects {
    
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Απόσταση μεταξύ των projects */
    max-width: 800px;
    margin: 0 auto;
}

.projects.card {
    background: #1e3d32; /* Σκούρο πράσινο για να ταιριάζει */
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.projects.card h3 {
    font-size: 22px;
    color: #facc15; /* Ανοιχτό κίτρινο */
    margin-bottom: 10px;
}

.projects.card p {
    font-size: 16px;
    line-height: 1.5;
}

#recommendations {
    display: none;
    margin: 20px auto;
    width: 50%;
}


#recommendations h2 {
    font-size: 28px;
    font-weight: bold;
    color: #e4b60b; /* Κίτρινο χρώμα */
    margin-bottom: 20px;
}

.recommendation-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
}

.recommendation.card {
    background: #fff;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: left;
    border-left: 5px solid #e4b60b;
    
}

#recommend_btn {
    margin-top: 20px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #e4b60b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#recommend_btn:hover {
    background-color: #d1a508;
}

#recommendations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.recommendation-card {
    background-color: black;
    color: white;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

#home-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: purple;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}
#home-icon:hover {
    background-color: #5a2d82;
}


#popup {
    display: none; 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


#popup button {
    background-color: white; 
    color: black; 
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

#popup button:hover {
    background-color: #ddd;
}

