/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
}

.hero {
    width: 100%;
    max-width: 100%;     
    margin: 0;           
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2f5bd3, #6a8cff);
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    margin: 10px 0;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #2f5bd3;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: #ddd;
}

/* SECTIONS */
section {
    padding: 35px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* HEADINGS */
h2 {
    margin-bottom: 15px;
}

/* PROFILE IMAGE */
.profile-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 15px auto;
    border: 4px solid #2f5bd3;
}

.profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* TEXT */
#about p {
    max-width: 650px;
    margin: 8px auto;
    line-height: 1.5;
}

/* CARDS */
.card, .project-card {
    background: white;
    padding: 15px;
    margin: 12px auto;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* SKILLS */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.skill {
    background: #2f5bd3;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* LINKS */
.project-card a {
    display: inline-block;
    margin-top: 5px;
    color: #2f5bd3;
}

/* SOCIAL */
.social {
    margin-top: 10px;
}

.social a {
    margin: 0 8px;
    font-size: 20px;
    color: #2f5bd3;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: white;
    margin-top: 20px;
}
