/* Modern UI/UX improvements inspired by Brooks Portfolio - Minimalist Neutral Palette */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f6f6f3;
    min-height: 100vh;
    color: #222;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 48px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    overflow: hidden;
    padding: 0 0 48px 0;
    transition: box-shadow 0.3s;
}

.container:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.12);
}

.header {
    background: #fff;
    color: #222;
    padding: 56px 32px 32px 32px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.name {
    font-family: 'Inter', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    letter-spacing: 0.5px;
    text-align: center;
}

.title {
    font-size: 1.3em;
    opacity: 0.85;
    margin-bottom: 24px;
    font-weight: 500;
    color: #444;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 18px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f6f6f3;
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 1em;
    color: #222;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
    transition: background 0.2s;
}

.contact-item:hover {
    background: #ececec;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 40px 0 40px;
}

.section {
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ececec;
    position: relative;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f59e42;
    border-radius: 2px;
}

.objective {
    background: #f6f6f3;
    padding: 28px;
    border-radius: 14px;
    border-left: 5px solid #222;
    margin: 40px 40px 32px 40px;
    grid-column: 1 / -1;
    box-shadow: 0 1px 8px rgba(44,62,80,0.04);
}

.objective p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #222;
    text-align: left;
}

.experience-item, .course-item {
    background: #f6f6f3;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 14px;
    border-left: 4px solid #222;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
}

.experience-item:hover, .course-item:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
}

.company-name, .course-name {
    font-weight: 700;
    color: #222;
    font-size: 1.1em;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.position, .course-details {
    color: #444;
    font-weight: 600;
    margin-bottom: 5px;
}

.period {
    background: #f59e42;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.95em;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.description {
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.skill-category {
    background: #fff;
    color: #222;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
    border: 1px solid #ececec;
    transition: box-shadow 0.2s, transform 0.2s;
}

.skill-category:hover {
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
    transform: scale(1.01);
}

.skill-category h4 {
    margin-bottom: 8px;
    font-size: 1em;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.skill-category p {
    font-size: 0.95em;
    opacity: 0.92;
}

.education-item {
    background: #f6f6f3;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #f59e42;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
}

.school-name {
    font-weight: 700;
    color: #222;
    font-family: 'Inter', sans-serif;
}

.degree {
    color: #666;
    font-size: 0.95em;
}

/* Button styles for minimalist UI */
.button {
    display: inline-block;
    background: #222;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 24px;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
    border: none;
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.button:hover {
    background: #444;
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
}

.whatsapp-btn {
    padding: 0;
    background: none;
    box-shadow: none;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    border-radius: 24px;
    padding: 8px 20px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-link:hover {
    background: #1ebe57;
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
    transform: scale(1.03);
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    filter: none;
}

.profile-photo {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.language-switch {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.lang-btn {
  background: #f6f6f3;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 4px 16px;
  font-size: 1em;
  cursor: pointer;
  color: #222;
  transition: background 0.2s, border 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}

@media (max-width: 900px) {
    .container {
        margin: 12px;
        padding: 0 8px 24px 8px;
        border-radius: 16px;
    }
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 4px 0 4px;
    }
    .objective {
        margin: 16px 4px 16px 4px;
        padding: 16px;
    }
    .header {
        padding: 32px 8px 16px 8px;
        border-radius: 16px 16px 0 0;
    }
    .profile-photo {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }
    .name {
        font-size: 2em;
    }
    .title {
        font-size: 1.1em;
    }
    .contact-info {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 0;
        padding: 0 8px 12px 8px;
        border-radius: 0;
        box-shadow: none;
    }
    .header {
        padding: 20px 4px 10px 4px;
        border-radius: 0;
    }
    .main-content {
        padding: 8px 2px 0 2px;
        gap: 8px;
    }
    .objective {
        margin: 8px 2px 8px 2px;
        padding: 8px;
    }
    .profile-photo {
        width: 56px;
        height: 56px;
        margin-bottom: 8px;
    }
    .name {
        font-size: 1.4em;
    }
    .title {
        font-size: 1em;
    }
    .contact-info {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 1.1em;
        margin-bottom: 12px;
        padding-bottom: 4px;
    }
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .experience-item, .course-item, .education-item {
        padding: 12px;
        border-radius: 8px;
        font-size: 0.95em;
    }
}