/* Carter Rodriguez Inspired Resume Theme */
/* Clean, professional, two-column layout with blue accents */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    color: #000;
    background: #fff;
    max-width: 8.5in;
    margin: 0 auto;
    padding: 0.5in;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    background: none;
    padding: 0;
}

.header-left {
    flex: 1;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.header .subtitle {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-bottom: 2px;
}

.header .contact-info {
    font-size: 10px;
    color: #666;
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.header .contact-info a {
    color: #666;
    text-decoration: none;
}

/* Green Circle with Initials */
.header-right {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); /* Modern gradient teal-green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

/* Main Content Layout */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Full Width Section */
.full-width-section {
    width: 100%;
    margin-bottom: 0px;
}

/* Full Width Recognition Section */
.full-width-recognition {
    width: 100%;
    margin-top: 5px; /* Reduced space before Recognition section */
    margin-bottom: 20px;
}

.full-width-recognition .section-title {
    color: #11998e;
    border-bottom: 1px solid #11998e;
}

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 10px;
}

.recognition-item {
    text-align: center;
    padding: 10px;
}

.recognition-name {
    font-size: 10px;
    font-weight: 600;
    color: #11998e;
    margin-bottom: 4px;
}

.recognition-detail {
    font-size: 9px;
    color: #666;
    line-height: 1.3;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    margin-top: 25px; /* Added space between Summary and two-column sections */
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Right Column (Sidebar) */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduced gap between sections for better balance */
    margin-top: 0; /* Remove negative margin - align naturally */
}

/* Section Styles */
.section {
    margin-bottom: 5px; /* Reduced margin between sections */
}

/* Right column sections with balanced spacing */
.right-column .section {
    margin-bottom: 12px; /* Reduced margin for better balance */
}

.section-title {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2px;
}

/* Right column section titles with green accent */
.right-column .section-title {
    color: #11998e;
    border-bottom: 1px solid #11998e;
}

/* Experience */
.experience-item {
    margin-bottom: 15px;
}

.experience-header {
    margin-bottom: 6px;
}

.job-title {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.company-name {
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
}

.job-duration {
    font-size: 10px;
    color: #666;
    font-style: italic;
}

.job-description {
    margin-top: 6px;
}

.job-description ul {
    list-style: none;
    padding: 0;
}

.job-description li {
    font-size: 10px;
    color: #333;
    margin-bottom: 3px;
    padding-left: 8px;
    position: relative;
}

.job-description li:before {
    content: "•";
    color: #11998e;
    position: absolute;
    left: 0;
}

/* Skills */
.skills-category {
    margin-bottom: 10px; /* Balanced margin between skill categories */
}

.skills-category h3 {
    font-size: 10px;
    font-weight: 700;
    color: #11998e;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.skills-category h3:before {
    content: "🔧";
    font-size: 12px;
}

.skills-category:nth-child(2) h3:before {
    content: "❤️";
}

.skills-category:nth-child(3) h3:before {
    content: "⚡";
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    font-size: 10px;
    color: #333;
    margin-bottom: 3px;
    padding: 2px 0;
}

/* Projects */
.project-item {
    margin-bottom: 8px; /* Balanced margin between projects */
}

.project-title {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    margin-bottom: 3px;
}

.project-description {
    font-size: 9px;
    color: #666;
    line-height: 1.3;
}

/* Summary */
.summary-text {
    font-size: 10px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: -15px;
}

.summary-text li {
    margin-bottom: 12px;
}

/* Education */
.education-item {
    margin-bottom: 10px;
}

.education-degree {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.education-school {
    font-size: 9px;
    color: #666;
    margin-bottom: 1px;
}

.education-year {
    font-size: 9px;
    color: #666;
    font-style: italic;
}

/* Certifications */
.certification-item {
    margin-bottom: 8px;
}

.certification-name {
    font-size: 10px;
    font-weight: 600;
    color: #11998e;
    margin-bottom: 2px;
}

.certification-detail {
    font-size: 9px;
    color: #666;
}

/* Hide original header styling */
.header-content,
.contact-item,
.lead {
    display: none;
}

/* Override container styles */
.container {
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Hide cards and timeline styles */
.card,
.timeline-item,
.timeline-header,
.content-section,
.content-grid,
.main-column,
.sidebar,
.skills-grid,
.skill-category,
.accomplishments {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

/* Footer */
.footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
    background: none;
}

.footer-content p {
    font-size: 8px;
    color: #999;
    margin-bottom: 2px;
}

/* Print Styles */
@media print {
    body {
        margin: 0;
        padding: 0.3in;
        font-size: 10px;
    }
    
    .header h1 {
        font-size: 20px;
    }
    
    .main-content {
        gap: 20px;
    }
}