
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
    line-height: 1.6;
    color: #333;
    background-color: white;
}


.header {
    background-color: #2c3e50;
    padding: 15px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
}

.header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
}

.header a:hover {
    background-color: #34495e;
    border-radius: 5px;
}


.id {
    background-color: white;
    padding: 100px 20px 80px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.id-text {
    flex: 1;
}

.id h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.id h1 span {
    color: orange;
}

.id-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: normal;
}

.id-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.6;
}

.id-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100px;
    height: 100px;
}

.profile-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
}

.about {
    padding: 80px 20px;
    background-color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.about-text {
    flex: 2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    flex: 1;
}

.placeholder-image {
    width: 250px;
    height: 250px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    margin: 0 auto;
}

.skills {
    padding: 80px 20px;
    background-color: white;
}

.skills h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.skill-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.skill-item p {
    color: #666;
    font-size: 1rem;
}


.projects {
    padding: 80px 20px;
    background-color: white;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.project-image {
    margin-bottom: 20px;
}

.placeholder-project {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    border-radius: 5px;
    margin-bottom: 15px;
}

.project-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.project-item p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.project-link:hover {
    background-color: #2980b9;
}

.contact {
    padding: 80px 20px;
    background-color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-span{
    color: #e74c3c;
}

.footer p {
    font-size: 1rem;
}


html {
    scroll-behavior: smooth;
}