*{margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
box-sizing: border-box;}
body {
    background-color: rgba(222, 216, 216, 0.803)
    }
nav {
    background: #ffae00;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: rgb(17, 17, 17);
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: rgb(255, 251, 0);
    text-decoration: none;
}
#toggle-dark-mode{
    background-color: #010101e6;
    color: whitesmoke;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #ff9900e6;
    transition: background-color 0.3s ease;
}
body.dark-mode{
    background-color: #121212;
    color: #ffffff;
}
#hero{
    background: url('https://wallpaperaccess.com/full/1567679.jpg');
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-content{
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}
.hero-content h1{
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.hero-content p{
    font-size: 2rem;
    margin-bottom: 3rem;
}
.ajluudvzeh-towch{
   background-color: #ffbb00dc;
   text-decoration: none;
   font-weight: bold;
   font-size: 1rem;
    padding: 1rem, 1rem;
    border-radius: 100px;
    margin: 2rem;
   color: rgb(2, 2, 2);
}

section{
    padding: 5rem, 2rem;
    max-width: 1900px;
    margin: 0 auto;
}
section h2{
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #000;
}
.About-content{
  display: flex;
  align-items:center ;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.profile-zurag {
  width: 200px;
  height: 200px;
  
}
#about p{
    font-size: 1.5rem;
    line-height: 1.6;
    color: #eca815;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.skill-grid{
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(242, 142, 12, 0.992);
    transition: transform 0.3s ease;
}
.skill-grid:hover{
    transform: translateY(-5px);
    cursor: pointer;

}
.skill-grid h3{
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #080808;
}
.skill-grid p{
    font-size: 1rem;
    color: #a39797;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.project-grid{
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(242, 142, 12, 0.992);
    transition: transform 0.3s ease;
}
.project-grid:hover{
    transform: translateY(-5px);
}
.project-grid h3{
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #080808;
}
.project-grid p{
    font-size: 1rem;
    color: #a39797;
}

#Contact, form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#Contact input, #contact textarea {
    padding: 0.75rem;
    border: 1px solid #6b5757;
    border-radius: 5px;
    font-size: 1rem;
}
#Contact button {
    padding: 0.75rem;
    background: #ffae00;
    border: none;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s ease;
}
#Contact button:hover {
    background: #82da59dc;
    box-shadow: 0 4px 6px rgba(242, 142, 12, 0.992);
    cursor: pointer;
}
footer {
    background: #ffae00;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;

}
#admin-panel{
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}
#login-section{
    max-width: 400px;
    margin:  auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #f9f9f9;
    text-align: center;
}
#login-section h2{
    margin-bottom: 20px;
    color: #333;
}
#login-section input{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}