@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fcf9f7;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.header {
    text-align: center;
    padding: 40px 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    display: inline-block;
    transition: 0.4s ease;
    cursor: default;
}

.logo span {
    display: inline;
}


.hero {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px 60px;
    flex-wrap: wrap;
}

.photo img {
    width: 320px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info {
    max-width: 500px;
}

.info h2, .info h3 {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}
.skill-list span:hover {
    background: rgba(0,0,0,0.15);
    color: white;
    border-color: rgba(0,0,0,0.15);
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(181, 181, 181, 0.35);
}

.skills {
    text-align: center;
    padding: 40px 0;
}

.skills h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skill-list span {
    padding: 8px 20px;
    border: 1px solid #000;
    border-radius: 20px;
}


.footer {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    background: #eee;
    margin-top: 40px;
}

.footer-item h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}
