/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    padding: 20px;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
}

/* Intro section with photo */
.intro-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #eee;
}

/* Typography */
h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    letter-spacing: 0.05em;
}

.intro-text {
    flex: 1;
    padding-top: 10px;
}

.intro-section h1 {
    margin-bottom: 0.25rem;
    padding-bottom: 0;
    border-bottom: none;
}

.intro-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 0;
}

p {
    margin-bottom: 1rem;
}

.section-divider {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}


/* Links section */
.links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    background-color: #4A90E2;
    border: 1px solid #4A90E2;
    border-radius: 25px;
    text-align: center;
    transition: background-color 0.2s, border-color 0.2s;
}

.button:hover {
    background-color: #357ABD;
    border-color: #357ABD;
}

/* Inline links */
a {
    color: #4A90E2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Inline button style */
.inline-button {
    display: inline-block;
    padding: 0 10px 2px 10px;
    border: 1px solid #4A90E2;
    border-radius: 15px;
    color: #4A90E2;
    text-decoration: none;
    font-size: inherit;
    line-height: 1.2;
    position: relative;
    top: 2px;
}

.inline-button:hover {
    text-decoration: none;
}

/* Company sections */
.company {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 80px;
}

.company:last-of-type {
    border-bottom: none;
}

.company h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.company h2 a {
    color: inherit;
    text-decoration: none;
}

.company h2 a:hover {
    color: #4A90E2;
    text-decoration: underline;
}

.company h2 a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.company h2 a:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A90E2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
}

.company-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.duration {
    font-style: italic;
    color: #666;
    margin-bottom: 0.25rem;
}

.role {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Breadcrumb navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.breadcrumb-home {
    display: inline-flex;
    width: 24px;
    height: 24px;
    transition: opacity 0.2s;
}

.breadcrumb-home:hover {
    opacity: 0.7;
}

.breadcrumb-home svg {
    width: 100%;
    height: 100%;
}

.breadcrumb a:not(.breadcrumb-home) {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:not(.breadcrumb-home):hover {
    color: #4A90E2;
    text-decoration: underline;
}

/* Copyright notice */
.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .intro-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .intro-subtitle {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    body {
        padding: 40px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .container {
        max-width: 700px;
    }
}