/* Amazing Portfolio Styles */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    color: #22223b;
}

header {
    background: linear-gradient(90deg, #b20b43 60%, #f72585 100%);
    color: #fff;
    padding: 30px 0 20px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(178,11,67,0.15);
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: left;
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
  
    justify-content: right;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 6px 14px;
    border-radius: 20px;
}

nav a:hover {
    background: #fff;
    color: #b20b43;
}

section {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(178,11,67,0.07);
    padding: 36px 32px;
}

h2 {
    color: #b20b43;
    margin-top: 0;
    font-size: 2rem;
    letter-spacing: 1px;
}

#about p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.project {
    background: linear-gradient(90deg, #f8fafc 60%, #e0e7ff 100%);
    border-left: 5px solid #b20b43;
    margin: 24px 0;
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(178,11,67,0.06);
}

.project h3 {
    margin: 0 0 8px 0;
    color: #22223b;
    font-size: 1.3rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#contact-form label {
    font-weight: 500;
    color: #b20b43;
}

#contact-form input,
#contact-form textarea {
    padding: 10px 12px;
    border: 1.5px solid #b20b43;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: border 0.2s;
    resize: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border: 1.5px solid #f72585;
    outline: none;
}

#contact-form button {
    background: linear-gradient(90deg, #b20b43 60%, #f72585 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

#contact-form button:hover {
    background: linear-gradient(90deg, #f72585 60%, #b20b43 100%);
    transform: translateY(-2px) scale(1.03);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
}

.skills-list li {
    background: linear-gradient(90deg, #b20b43 60%, #f72585 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(178,11,67,0.08);
    margin-bottom: 8px;
}

/* About section layout */
.about-section {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.about-content {
    flex: 2;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #b20b43;
    box-shadow: 0 4px 16px rgba(178,11,67,0.10);
}

@media (max-width: 700px) {
    .about-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-image {
        margin-top: 18px;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    section {
        padding: 18px 8px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #b20b43 60%, #f72585 100%);
    color: #fff;
    text-align: center;
    padding: 24px 0 16px 0;
    margin-top: 40px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -2px 12px rgba(178,11,67,0.10);
    font-size: 1.05rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

footer a:hover {
    color: #22223b;
    background: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    text-decoration: none;
}