/* 
============================================
GLOBAL STYLES & RESET (Lines 1-80)
Base styles, CSS reset, and root variables
Edit color scheme in :root section
============================================
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Edit these to change color scheme */
    --primary-color: #8b3030;
    --primary-dark: #5a1f1f;
    --primary-light: #708090;
    --gradient: linear-gradient(135deg, #8b3030, #708090);
    
    /* Neutral Colors */
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Accent Colors */
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 
============================================
HEADER & NAVIGATION (Lines 80-180)
Sticky header with responsive menu
Edit logo, nav links as needed
============================================
*/

.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.logo a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* 
============================================
BUTTONS (Lines 180-250)
Primary and secondary button styles
============================================
*/

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 48, 48, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* 
============================================
HERO SECTION (Lines 250-350)
Main landing section on homepage
Edit layout, spacing, image placement
============================================
*/

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(139, 48, 48, 0.3);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 
============================================
INTRO SECTION (Lines 350-420)
Brief overview with stats
============================================
*/

.intro-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* 
============================================
SECTION TITLES (Lines 420-450)
Reusable section header style
============================================
*/

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title .icon {
    margin-right: 0.5rem;
}
/* 
============================================
FEATURED PROJECTS SECTION (Lines 450-600)
Homepage project cards
Edit grid layout, card styles
============================================
*/

.featured-projects {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background-color: var(--bg-light);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 48, 48, 0.9), rgba(112, 128, 144, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tags span {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.project-link:hover {
    gap: 0.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* 
============================================
SKILLS SECTION (Lines 600-680)
Homepage skills grid
============================================
*/

.skills-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill-category {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.skill-category h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.skill-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 
============================================
CTA SECTION (Lines 680-740)
Call-to-action section
============================================
*/

.cta-section {
    padding: var(--section-padding);
    background: var(--gradient);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-content .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* 
============================================
FOOTER (Lines 740-860)
Site-wide footer
Edit contact info and links
============================================
*/

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-info p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* 
============================================
PAGE HEADER (Lines 860-920)
Header for internal pages (About, Projects, etc.)
============================================
*/

.page-header {
    padding: 80px 0 60px;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.download-btn {
    margin-top: 1.5rem;
    background-color: transparent;
    color: white;
    border-color: white;
}

.download-btn:hover {
    background-color: transparent;
    color: white;
    border-color: var(--primary-color);
}

/* 
============================================
ABOUT PAGE STYLES (Lines 920-1100)
About page specific sections
============================================
*/

.about-content {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.education-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.education-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.education-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.education-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: var(--border-color);
}

.education-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(139, 48, 48, 0.3);
}

.education-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.degree {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-medium);
    line-height: 1.8;
}

.certifications-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cert-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(112, 128, 144, 0.15);
}

.cert-card.in-progress {
    border-color: var(--accent-color);
}

.cert-badge {
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.cert-card.in-progress .cert-badge {
    background-color: var(--accent-color);
}

.cert-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cert-status {
    color: var(--text-light);
    font-size: 0.875rem;
}

.values-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.interests-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.interests-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.interest-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.interest-emoji {
    font-size: 2rem;
}

.interest-item p {
    margin: 0;
    color: var(--text-medium);
}

/* 
============================================
PROJECTS PAGE STYLES (Lines 1100-1280)
Projects page specific sections
============================================
*/

.projects-filter {
    padding: 2rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-light);
    color: var(--text-medium);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: var(--primary-light);
    color: white;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.projects-showcase {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.project-detail {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.project-detail:last-child {
    border-bottom: none;
}

.project-detail-header {
    margin-bottom: 2rem;
}

.project-detail-header h2 {
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 0.75rem;
}

.meta-item {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.project-detail-image {
    position: sticky;
    top: 100px;
}

.project-detail-text h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-detail-text h3:first-child {
    margin-top: 0;
}

.project-detail-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.project-detail-text li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.project-links {
    margin-top: 2rem;
}

.github-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    text-align: center;
}

.github-content {
    max-width: 700px;
    margin: 0 auto;
}

.github-content h2 {
    margin-bottom: 1rem;
}

.github-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
/* 
============================================
RESUME PAGE STYLES (Lines 1280-1500)
Resume page specific sections
============================================
*/

.resume-summary {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.summary-box {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.summary-box h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.summary-box p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.resume-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.resume-section:nth-child(even) {
    background-color: var(--bg-light);
}

.resume-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.resume-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.resume-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.resume-date {
    color: var(--text-light);
    font-weight: 600;
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.resume-item-content {
    color: var(--text-medium);
}

.resume-item-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.resume-item-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.skills-resume-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill-resume-category {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--primary-color);
}

.skill-resume-category h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.skill-resume-category p {
    color: var(--text-medium);
    line-height: 1.8;
}

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item-resume {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-status-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cert-status-badge.completed {
    background-color: var(--success-color);
    color: white;
}

.cert-status-badge.in-progress {
    background-color: var(--accent-color);
    color: white;
}

.cert-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.cert-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.projects-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-resume-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.project-resume-item h3 {
    margin-bottom: 1rem;
}

.project-resume-item p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.resume-cta {
    text-align: center;
    margin-top: 2rem;
}

/* 
============================================
CONTACT PAGE STYLES (Lines 1500-1700)
Contact form and info sections
============================================
*/

.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    margin: 0;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.availability-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.availability-box h3 {
    margin-bottom: 1rem;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--success-color);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.availability-text {
    margin-bottom: 1rem;
}

.availability-box ul {
    list-style: none;
    padding-left: 0;
}

.availability-box li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.availability-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 
============================================
RESPONSIVE STYLES (Lines 1700-2000)
Media queries for different screen sizes
Edit breakpoints as needed
============================================
*/

/* Tablet landscape and smaller desktops */
@media (max-width: 1024px) {
    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
        text-align: center;
    }
    
    .hero-image img {
        margin: 0 auto;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid,
    .values-grid,
    .projects-highlight,
    .skills-resume-grid {
        grid-template-columns: 1fr;
    }
    
    .project-detail-content {
        grid-template-columns: 1fr;
    }
    
    .project-detail-image {
        position: relative;
        top: 0;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .stats,
    .cert-grid,
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .education-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .education-item::after {
        display: none;
    }
    
    .education-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* 
============================================
UTILITY CLASSES (Lines 2000-2050)
Reusable utility classes
============================================
*/

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .cta-section,
    .hamburger {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .page-header {
        background: none;
        color: var(--text-dark);
    }
    
    .page-header h1 {
        color: var(--text-dark);
    }
}