/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
        "slogan image"
        "subtitles image";
    gap: 3rem;
    margin-bottom: 1rem;
    align-items: start;
}

.hero-slogan {
    grid-area: slogan;
    text-align: left;
}

.hero-subtitles {
    grid-area: subtitles;
    text-align: left;
}

.hero-image {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.portrait {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.slogan {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Montserrat", "Comic Sans MS", "Marker Felt", "Bradley Hand", cursive;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    animation: sloganFadeInUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

@keyframes sloganFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan-subtitle {
    font-size: 1.125rem;  
    margin-top: 2rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.slogan-subtitle:first-of-type {
    margin-top: 0rem;
}

/* Expertise Section */
.expertise-section {
    padding: 2rem 2rem;
    background-color: var(--section-background);
}

.expertise-grid {
    max-width: 1200px;
     margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
   
}

/* Experience Section */
.experience-section {
    padding: 2rem 2rem;
}

.experience-grid {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
}

.experience-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
        "title image";
    align-items: start;
    gap: 1rem 3rem;
    width: 100%;
    padding-bottom: 0rem;           
}

.experience-title {
    grid-area: title;
    display: flex;
    flex-direction: column;  
    gap: 0.5rem; 
    text-align: left;   
}

.experience-job-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-blue);
}

.experience-company {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.4;
    text-decoration: underline;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.experience-localization {
    color: var(--text-color);
}

.experience-duration {
    color: #747272;
}



.experience-description {
    text-align: left;
    width: 100%;
    padding-top: 0rem;
}

.experience-description p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.experience-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.experience-description li {
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.experience-description li::before {
    content: "•";
    color: var(--primary-blue);
    font-size: 1.2em;
    position: absolute;
    left: -1.2rem;
    top: -0.2em;
}

.experience-description.hidden {
    display: none;
}

.experience-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    user-select: none;
    position: relative;
    gap: 0.5rem;
}

.experience-toggle-top::before {
    content: "See More";
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
}


.experience-toggle-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-toggle-bottom svg {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.experience-toggle:hover .experience-toggle-bottom svg {
    transform: translateY(2px);
}

.experience-toggle.expanded .experience-toggle-bottom svg {
    transform: rotate(180deg);
}

.experience-toggle.expanded .experience-toggle-top::before {
    content: "";
}

.experience-toggle:hover .experience-toggle-top::before {
    color: var(--text-color);
}



.experience-image-link {
    grid-area: image;
    justify-self: center;
}

/* Tech & Tools Section */
.tech-tools-section {
    padding: 2rem 2rem;
    background-color: var(--section-background);
} 

.tech-tools-grid {
    max-width: 1200px;
     margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
} 

.tech-tools-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-blue);
}

.tech-tools-image-grid {
    display: flex;                    
    flex-direction: row;
    justify-content: space-evenly;   
    align-items: center;             
    width: 100%;                     
    gap: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 2rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.contact-list {
    margin-top: 1rem;
    padding-left: 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-list a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

.linkedin-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-blue);
    vertical-align: middle;
    margin-right: 0.5rem;
}