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

body {
    background: #f8f8f8;
    font-family: 'Cormorant Garamond', serif;
    color: #222;
}

/* ================= HERO ================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info h3 {
    color: #555;
    margin-bottom: 10px;
}

.info h1 {
    font-size: 48px;
    font-style: italic;
    margin-bottom: 15px;
}

.info p {
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn {
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
}

.primary {
    background: black;
    color: white;
}

.secondary {
    border: 1px solid black;
    color: black;
}

.socials {
    display: flex;
    gap: 18px;
}

.socials a {
    font-size: 26px;
    color: #444;
    transition: 0.3s;
}

.socials a:hover {
    transform: scale(1.2);
    color: black;
}

.image-wrapper img {
    width: 420px;
    border-radius: 20px;
    object-fit: cover;
}

/* ================= TOOLS ================= */
.section {
    text-align: center;
    padding: 40px 0;
}

.section h2 {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 30px;
}

.tech-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-icons i {
    font-size: 32px;
}

/* ================= CV ================= */
.cv-section {
    max-width: 900px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background: #e0e0e0;
    padding: 30px 40px;
    border-radius: 8px;
}

.card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .image-wrapper img {
        width: 300px;
        margin-bottom: 30px;
    }
}
