/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 1;
    min-width: 280px;
}

/* Name styling */
.name {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.contact-info {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: left;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Profile styling */
.profile-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile-container {
    width: 200px;
    height: 230px;
    flex-shrink: 0;
}

.profile-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: #c5e8e0;
}

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

/* Header Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .header-content {
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .profile-section {
        justify-content: center;
        width: 100%;
    }

    .profile-container {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2.5rem;
    }
}