/* CSS Variables for easy theme management */
:root {
    --primary-color: #0070f3;
    --aws-color: #ff9900;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --border-radius: 12px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-color);
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    background: #f9f9f9;
    padding: 2px;
}

.company-name a {
    display: block;
    font-size: 0.9em;
    color: var(--primary-color);
    text-decoration: none;
}

.company-name a:hover {
    text-decoration: underline;
}

.badge-adobe {
    text-decoration: none;
    transition: background 0.3s;
}

.badge-adobe:hover {
    background: #d0e7ff;
}

.task-list ul {
    margin-top: 5px;
    padding-left: 25px; 
    list-style-type: circle;
}

.task-list ul li {
    margin-bottom: 5px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-top: 5px solid var(--primary-color);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e1f0ff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.name {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.headline {
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Badge Styles */
.badge-container {
    margin-top: 20px;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    margin: 5px;
    border: 1px solid transparent;
}

.badge-adobe { background: #e1f0ff; color: var(--primary-color); }
.badge-aws { background: #fff4e1; color: var(--aws-color); border-color: rgba(255,153,0,0.2); }
.badge-shopify { background: #e7f9ed; color: #28a745; }

/* Section Styles */
.info-section {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.section-title {
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Experience Items */
.exp-item {
    border-bottom: 1px dotted #ddd;
    padding: 20px 0;
}

.exp-item:last-of-type {
    border-bottom: none;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.job-title {
    font-weight: bold;
    font-size: 1.15em;
}

.company {
    color: var(--primary-color);
    font-weight: 600;
}

.date {
    color: var(--text-gray);
    font-size: 0.85em;
    font-style: italic;
    margin-bottom: 10px;
}

.task-list {
    padding-left: 20px;
}

.task-list li {
    margin-bottom: 8px;
}

/* Skills Grid */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--text-dark);
}

/* Footer */
.main-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85em;
    margin-top: 40px;
}

.main-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .name { font-size: 1.8em; }
    .container { padding: 20px 15px; }
    .exp-header { flex-direction: column; }
}
