/* PJ Mason Portfolio - Main Stylesheet */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Navigation */
nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
}

/* Header */
header {
    padding: 60px 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-links a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #004499;
}

/* Main Content */
main {
    padding: 60px 0;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #222;
}

.intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
}

/* Experience Highlights */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    padding: 30px;
    background: #f9f9f9;
    border-left: 3px solid #0066cc;
}

.experience-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
}

.experience-card .role {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.experience-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.award-item {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.award-item strong {
    display: block;
    color: #222;
    margin-bottom: 5px;
}

.award-item span {
    color: #666;
    font-size: 14px;
}

/* Skills */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-tag {
    padding: 10px 20px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
}

/* Buttons */
.btn-download {
    display: inline-block;
    padding: 12px 30px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #004499;
}

.resume-actions {
    margin: 30px 0;
}

/* Contact Info */
.contact-info {
    font-size: 18px;
    line-height: 2;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
}
