/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a5f;
    --accent-blue: #2563eb;
    --light-blue: #eff6ff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --border: #e5e7eb;
}

body {
    font-family: 'Crimson Pro', 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-blue);
}

/* Introduction Section */
.introduction {
    padding: 3rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.intro-text h1 {
    margin-bottom: 1.25rem;
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Experience Section */
.experience {
    padding: 4rem 0;
    background: var(--light-gray);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-text p {
    margin-bottom: 1rem;
}

.experience-text p:last-child {
    margin-bottom: 0;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-caption {
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--white);
}

.contact h2 {
    margin-bottom: 1rem;
}

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

.contact-info {
    margin-top: 1rem;
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

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

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image {
        text-align: center;
    }
    
    .intro-image img {
        max-width: 250px;
    }
    
    nav {
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Load Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;600;700&family=Inter:wght@400;500;600;700&display=swap');
