body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff9f4;
    color: #6b4f4f;
    overflow-x: hidden;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #f7e9e3, #fff9f4);
    color: #6b4f4f;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: fadeIn 2s ease;
}

header h1 {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
}

header p {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #8c6b6b;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff9f4;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

nav a {
    color: #6b4f4f;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #e8b4b8;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    animation: slideUp 1.5s ease;
}

h2 {
    color: #e8b4b8;
    margin-bottom: 20px;
    font-size: 2.2rem;
    border-bottom: 2px solid #f7e9e3;
    display: inline-block;
}

.about,
.projects,
.experience,
.contact {
    margin-bottom: 100px;
    background: #fff4f0;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.projects img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.projects img:hover {
    transform: scale(1.05);
}

.social-icons {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #6b4f4f;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e8b4b8;
}

footer {
    background: #fff9f4;
    text-align: center;
    padding: 20px 0;
    color: #8c6b6b;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 10px;
    border-radius: 50%;
    background: #fff4f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.social-icons a i {
    font-size: 1.5rem;
    color: #6b4f4f;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: #e8b4b8;
}

.social-icons {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}


.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.project-card {
background: #fff4f0;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.project-card img {
width: 100%;
border-radius: 10px;
margin-bottom: 15px;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.project-card h3 {
margin: 10px 0 5px;
color: #6b4f4f;
}
.project-card p {
color: #8c6b6b;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    header p {
        font-size: 1rem;
    }
    section {
        max-width: 100%;
        padding: 15px;
    }
    .about, .projects, .experience, .contact {
        padding: 20px;
        margin: 30px;
    }

    .social-icons a {
        width: 100px;
        height: 40px;
}
}