/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
    color: #000;
    background-color: #D9CFC1;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-square {
    width: 12px;
    height: 12px;
    background-color: #0066FF;
    display: inline-block;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.tagline {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066FF;
}

/* Home Page */
.home-page {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    padding: 60px 40px;
}

.home-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.profile-card {
    background: #F5F0EB;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.monogram {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.monogram-sub {
    font-size: 8px;
    letter-spacing: 1px;
    margin-top: -5px;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.divider {
    width: 60px;
    height: 3px;
    background: #0066FF;
    margin: 20px auto;
}

.profile-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: #000;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0066FF;
}

.intro-section {
    padding: 40px 0;
}

.intro-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
}

.intro-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0066FF;
    color: #fff;
}

.btn-primary:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 600px;
}

/* Resume Page */
.resume-page {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    padding: 60px 40px;
}

.resume-header {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 16px;
    height: 16px;
    background: #0066FF;
    display: inline-block;
}

.download-btn {
    padding: 10px 25px;
    font-size: 13px;
}

.resume-section {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.content-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.card-header {
    margin-bottom: 20px;
}

.job-title {
    color: #0066FF;
    font-size: 20px;
    font-weight: 700;
}

.card-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.job-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.company {
    font-size: 14px;
    margin: 5px 0;
}

.job-type {
    font-size: 13px;
    color: #666;
}

.job-description ul {
    list-style: none;
    padding: 0;
}

.job-description li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.job-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: 700;
}

.skills-card {
    padding: 50px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.skill-bullet {
    width: 10px;
    height: 10px;
    background: #0066FF;
    display: inline-block;
}

/* Contact Page */
.contact-page {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    padding: 60px 40px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container .page-title {
    text-align: center;
    margin-bottom: 40px;
    justify-content: center;
}

.contact-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #0066FF;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#contactForm .btn-primary {
    margin-top: 20px;
    padding: 12px 40px;
    border-radius: 25px;
}

/* Footer */
.footer {
    background: #D9CFC1;
    padding: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}

.footer-left a {
    color: #000;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    gap: 60px;
}

.contact-item {
    text-align: right;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 13px;
    color: #666;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    color: #000;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #0066FF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .card-body {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-title {
        font-size: 48px;
    }
    
    .contact-form-card {
        padding: 40px 30px;
    }
}
