* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

nav {
    background-color: #a1b6cb5d; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.navbar {
    padding: 15px 0; 
}


nav .navbar {
    padding: 30px 0;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar img {
    height: 60px; 
    width: auto;  
    transition: transform 0.3s; 
}

.navbar img:hover {
    transform: scale(1.1); 
}

.navbar .logo {
    font-size: 28px; 
    font-weight: bold; 
    color: #007bff; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-right: 20px; 
    transition: color 0.3s; 
}

.navbar .logo:hover {
    color: #0056b3; 
}



nav .navbar .nav-links a {
    text-decoration: none;
    color: #007bff;
    margin-right: 30px;
    font-weight: 500;
    position: relative;
}

nav .navbar .nav-links::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: #222;
    bottom: -10px;
    left: 0;
    transition: 0.4s;
}

nav .navbar .nav-links a:hover::after {
    width: 100%;
}

.container {
    display: flex;
}

.container .div-text {
    width: 50%;
    height: 100vh;
    position: relative;
}

.container .div-text .cont {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.container .div-text .cont h1 {
    font-size: 70px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.container .div-text .cont h1 span {
    color: transparent;
    -webkit-text-stroke: 2px #000;   
}

.container .div-text .cont p {
    color: #555;
    font-size: 18px;
    margin-right: 15px;
}

.container .div-text .soc-links a {
    color: #555;
    font-size: 22px;
    margin-right: 15px;
    position: relative;
    top: 0;
    transition: 0.4s;
}

.container .div-text .soc-links a:hover {
    color: #000;
    top: 18px;
}

.div-img {
    width: 50%;  
    background: url(aya.jpg);
    height: 100vh;
    background-position: center;
    background-size: cover;
    -webkit-clip-path: ellipse(70% 80% at 70% 50%);
    clip-path: ellipse(70% 80% at 70% 50%);
}

#about {
    padding: 40px;
    background-color: #f7bdec34;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about-text {
    flex: 1; 
    color: #333; 
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #0056b3;
    text-decoration: double;
}

#about h3 {
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0056b3;
}

#about p, #about ul {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

#about ul {
    padding-left: 20px;
}

#about li {
    margin-bottom: 10px;
}

#projects {
    padding: 60px 20px;
    background-color: #ffffff;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

#projects h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff;
    text-align: center;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.project-link:hover {
    background-color: #0056b3;
}

#antek {
    padding: 60px 20px;
    background-color: #ffffff;
    margin: 20px 0;
    min-height: 100vh;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#antek h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff;
    text-align: center;
}

.antek-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.antek-list {
    list-style-type: none;
    padding-left: 0;
}

.antek-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.antek-list h4 {
    font-size: 1.5em;
    color: #0056b3;
}

.antek-list p {
    font-size: 1.1em;
    line-height: 1.6;
}

#contact {
    padding: 60px 20px;
    background-color: #f9f9f9;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-form label {
    text-align: left;
    font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-info {
    margin-top: 30px;
}

.contact-info h3 {
    margin-bottom: 10px;
    color: #0056b3;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #007bff;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}