/* Theme: Vintage - Day 22, letter V: Inspired by 1950s diners, retro signage, vinyl records, classic automobiles, mid-century modern design, pastel colors, chrome accents, checkered patterns, vintage typography, nostalgic Americana */

@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Yantramanav:wght@300;400;500;700&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: 'Yantramanav', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2d2d2d;
    background: #fdf5e6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 182, 193, 0.03) 35px, rgba(255, 182, 193, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(135, 206, 235, 0.03) 35px, rgba(135, 206, 235, 0.03) 70px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #ff6b9d 0%, #ff4081 100%);
    border-bottom: 5px solid #2d2d2d;
    box-shadow: 
        0 0 0 2px #ffd700,
        0 8px 30px rgba(45, 45, 45, 0.5);
    transition: all 0.3s ease;
}

#topnav.scrolled {
    box-shadow: 
        0 0 0 2px #ffd700,
        0 12px 40px rgba(45, 45, 45, 0.6);
}

.nav-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo h1 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #ffd700;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 
        3px 3px 0 #2d2d2d,
        4px 4px 0 rgba(45, 45, 45, 0.5);
    transform: rotate(-2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu li a {
    display: block;
    padding: 1rem 1.8rem;
    color: #fdf5e6;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(45, 45, 45, 0.4);
    border: 3px solid #2d2d2d;
    border-radius: 25px;
    box-shadow: 0 4px 0 #2d2d2d;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: #87ceeb;
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #2d2d2d;
}

.nav-menu li a:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d2d2d;
}

.mobile-toggle {
    display: none;
    background: linear-gradient(180deg, #ffd700 0%, #ffb700 100%);
    border: 4px solid #2d2d2d;
    color: #2d2d2d;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 5px 0 #2d2d2d;
}

.mobile-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #2d2d2d;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 120px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '★';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 20rem;
    color: rgba(255, 215, 0, 0.08);
    animation: twinkle 4s ease-in-out infinite;
}

#hero::after {
    content: '♫';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 16rem;
    color: rgba(255, 182, 193, 0.08);
    animation: bounce 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(180deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.hero-content {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-family: 'Righteous', cursive;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    color: #ff4081;
    letter-spacing: -1px;
    text-shadow: 
        4px 4px 0 #ffd700,
        8px 8px 0 #2d2d2d;
    transform: rotate(-1deg);
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    font-weight: 500;
    background: linear-gradient(90deg, #ffb6c1 0%, #87ceeb 100%);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid #2d2d2d;
    box-shadow: 5px 5px 0 #2d2d2d;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    border-radius: 50px;
    font-family: 'Righteous', cursive;
    text-transform: uppercase;
    border: 4px solid #2d2d2d;
}

.btn-primary {
    background: linear-gradient(180deg, #ffd700 0%, #ffb700 100%);
    color: #2d2d2d;
    box-shadow: 0 6px 0 #2d2d2d;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #2d2d2d;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #2d2d2d;
}

.btn-secondary {
    background: #fdf5e6;
    color: #2d2d2d;
    box-shadow: 0 6px 0 #2d2d2d;
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #87ceeb 0%, #5fa8d3 100%);
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #2d2d2d;
}

.hero-image {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-card {
    background: linear-gradient(135deg, #ffb6c1 0%, #ff6b9d 100%);
    padding: 2.5rem;
    box-shadow: 
        0 0 0 4px #2d2d2d,
        0 0 0 8px #ffd700,
        10px 10px 0 8px #2d2d2d;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 30px;
    border: 4px solid #2d2d2d;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.3) 10px, rgba(255, 215, 0, 0.3) 20px);
    border-radius: 35px;
    z-index: -1;
}

.profile-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 
        0 0 0 4px #2d2d2d,
        0 0 0 8px #ffd700,
        15px 15px 0 8px #2d2d2d;
}

.profile-card img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 4px solid #2d2d2d;
    box-shadow: 5px 5px 0 #2d2d2d;
}

.profile-details h3 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fdf5e6;
    font-weight: 400;
    text-shadow: 
        3px 3px 0 #2d2d2d;
}

.profile-details p {
    color: #fdf5e6;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    background: rgba(45, 45, 45, 0.3);
    padding: 1rem;
    border-radius: 15px;
}

.social-links a {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(180deg, #ffd700 0%, #ffb700 100%);
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: 'Righteous', cursive;
    border: 4px solid #2d2d2d;
    box-shadow: 0 5px 0 #2d2d2d;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #2d2d2d;
}

section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 7rem;
    position: relative;
}

.section-header::before {
    content: '◆◆◆';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ff4081;
    letter-spacing: 1rem;
}

.section-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ff4081;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-shadow: 
        4px 4px 0 #ffd700,
        8px 8px 0 #2d2d2d;
    transform: rotate(-1deg);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: 
        repeating-linear-gradient(90deg, #ff4081 0px, #ff4081 20px, #ffd700 20px, #ffd700 40px, #87ceeb 40px, #87ceeb 60px);
    border-radius: 3px;
    border: 2px solid #2d2d2d;
}

#experience {
    background: linear-gradient(180deg, rgba(255, 182, 193, 0.1) 0%, rgba(135, 206, 235, 0.1) 100%);
}

.timeline {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 260px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: 
        repeating-linear-gradient(0deg, #ff4081 0px, #ff4081 30px, #ffd700 30px, #ffd700 60px, #87ceeb 60px, #87ceeb 90px);
    border-radius: 4px;
    border: 2px solid #2d2d2d;
}

.timeline-item {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
    position: relative;
}

.timeline-year {
    font-family: 'Righteous', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    color: #ff4081;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 5.5rem;
    letter-spacing: -2px;
    text-shadow: 
        3px 3px 0 #ffd700,
        6px 6px 0 #2d2d2d;
}

.timeline-year::after {
    content: '★';
    position: absolute;
    right: -104px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 0 #2d2d2d;
}

.timeline-content {
    background: #fdf5e6;
    padding: 3.5rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 0 0 4px #2d2d2d,
        8px 8px 0 4px #2d2d2d;
    position: relative;
    border-radius: 25px;
    border: 4px solid #2d2d2d;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff4081 0%, #ffd700 50%, #87ceeb 100%);
    border-radius: 20px 20px 0 0;
}

.timeline-content:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 
        0 0 0 4px #2d2d2d,
        12px 12px 0 4px #2d2d2d;
}

.timeline-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 400;
}

.timeline-content h4 {
    color: #ff4081;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: #2d2d2d;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.timeline-content a {
    color: #ff4081;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content a:hover {
    border-bottom-color: #ff4081;
}

#ai {
    background: linear-gradient(180deg, rgba(135, 206, 235, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
}

.ai-projects {
    display: grid;
    gap: 4.5rem;
}

.project-card {
    background: #fdf5e6;
    padding: 4.5rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 0 0 4px #2d2d2d,
        10px 10px 0 4px #2d2d2d;
    border-radius: 30px;
    border: 4px solid #2d2d2d;
    overflow: visible;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: 
        repeating-linear-gradient(90deg, #ff4081 0px, #ff4081 25px, #ffd700 25px, #ffd700 50px, #87ceeb 50px, #87ceeb 75px);
    border-radius: 25px 25px 0 0;
}

.project-card::after {
    content: '♫';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 5rem;
    color: #ffd700;
    text-shadow: 3px 3px 0 #2d2d2d;
    transform: rotate(15deg);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 0 0 4px #2d2d2d,
        15px 15px 0 4px #2d2d2d;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-header h3 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #2d2d2d;
    margin: 0;
    font-weight: 400;
}

.project-client {
    color: #ff4081;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.project-card > p {
    color: #2d2d2d;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(135, 206, 235, 0.3) 100%);
    padding: 2rem;
    color: #2d2d2d;
    line-height: 1.7;
    border-radius: 20px;
    border: 3px solid #2d2d2d;
    box-shadow: 5px 5px 0 #2d2d2d;
}

.project-impact strong {
    color: #ff4081;
    font-weight: 700;
}

#speaking {
    background: linear-gradient(180deg, rgba(255, 182, 193, 0.1) 0%, rgba(135, 206, 235, 0.1) 100%);
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.5rem;
}

.year-section {
    background: #fdf5e6;
    padding: 3.5rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 0 0 4px #2d2d2d,
        8px 8px 0 4px #2d2d2d;
    border-radius: 25px;
    border: 4px solid #2d2d2d;
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff4081 0%, #ffd700 50%, #87ceeb 100%);
    border-radius: 20px 20px 0 0;
}

.year-section:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 0 0 4px #2d2d2d,
        12px 12px 0 4px #2d2d2d;
}

.year-section h3 {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #ff4081;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 4px solid #2d2d2d;
    font-weight: 400;
    text-shadow: 
        2px 2px 0 #ffd700;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #87ceeb 0%, #5fa8d3 100%);
    box-shadow: 
        0 0 0 4px #2d2d2d,
        0 0 0 8px #ffd700,
        12px 12px 0 8px #2d2d2d;
}

.year-section.books h3 {
    color: #fdf5e6;
    text-shadow: 
        3px 3px 0 #2d2d2d;
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.5rem 0;
    color: #2d2d2d;
    border-bottom: 3px dashed rgba(45, 45, 45, 0.2);
    line-height: 1.7;
    position: relative;
    padding-left: 3rem;
    font-weight: 400;
}

.achievements li::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 1.5rem;
    font-size: 1.3rem;
    color: #ffd700;
    text-shadow: 1px 1px 0 #2d2d2d;
}

.year-section.books .achievements li {
    color: #fdf5e6;
    border-bottom-color: rgba(253, 245, 230, 0.3);
}

.achievements li:last-child {
    border-bottom: none;
}

.achievements strong {
    color: #ff4081;
    font-weight: 700;
}

.year-section.books .achievements strong {
    color: #ffd700;
}

#personal {
    background: linear-gradient(180deg, rgba(135, 206, 235, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
}

#contact {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15) 0%, rgba(135, 206, 235, 0.15) 100%);
}

.contact-card {
    background: linear-gradient(135deg, #ffb6c1 0%, #87ceeb 100%);
    padding: 7rem 6rem;
    text-align: center;
    box-shadow: 
        0 0 0 5px #2d2d2d,
        0 0 0 10px #ffd700,
        15px 15px 0 10px #2d2d2d;
    max-width: 1350px;
    margin: 0 auto;
    border-radius: 40px;
    border: 5px solid #2d2d2d;
    position: relative;
}

.contact-card::before {
    content: '★';
    position: absolute;
    top: -30px;
    left: 50px;
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 3px 3px 0 #2d2d2d;
    animation: twinkle 3s ease-in-out infinite;
}

.contact-card::after {
    content: '♫';
    position: absolute;
    bottom: -20px;
    right: 50px;
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 3px 3px 0 #2d2d2d;
    animation: bounce 3s ease-in-out infinite;
}

.contact-card h2 {
    font-family: 'Righteous', cursive;
    font-size: 5rem;
    margin-bottom: 3rem;
    color: #fdf5e6;
    font-weight: 400;
    text-shadow: 
        4px 4px 0 #2d2d2d;
}

.contact-card > p {
    font-size: 1.5rem;
    color: #fdf5e6;
    line-height: 1.7;
    margin-bottom: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    background: rgba(45, 45, 45, 0.3);
    padding: 1.5rem 3rem;
    border-radius: 50px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 5rem;
    background: linear-gradient(180deg, #ffd700 0%, #ffb700 100%);
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: 'Righteous', cursive;
    border: 4px solid #2d2d2d;
    box-shadow: 0 6px 0 #2d2d2d;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #2d2d2d;
}

.contact-link:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #2d2d2d;
}

.contact-link .icon {
    font-size: 2rem;
}

#footer {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fdf5e6;
    position: relative;
    border-top: 8px solid #ffd700;
    box-shadow: inset 0 8px 0 #ff4081;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: 
        repeating-linear-gradient(90deg, #ff4081 0px, #ff4081 30px, #ffd700 30px, #ffd700 60px, #87ceeb 60px, #87ceeb 90px);
}

#footer a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

#footer a:hover {
    color: #ffb6c1;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 550px;
        margin: 0 auto;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
    }

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2.5rem;
        height: 80px;
    }

    html {
        scroll-padding-top: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #ff6b9d 0%, #ff4081 100%);
        flex-direction: column;
        padding: 4rem;
        gap: 0;
        box-shadow: 0 15px 40px rgba(45, 45, 45, 0.5);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 5px solid #2d2d2d;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 6rem;
        padding-left: 7rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -104px;
        right: auto;
    }

    .contact-card {
        padding: 6rem 4.5rem;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 2rem;
    }

    .nav-container {
        padding: 0 2rem;
        height: 75px;
    }

    html {
        scroll-padding-top: 75px;
    }

    #hero {
        padding: 130px 0 100px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 90px 0;
    }

    .section-header {
        margin-bottom: 5.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .timeline-item {
        padding-left: 5rem;
    }

    .timeline-content {
        padding: 2.5rem;
    }

    .project-card {
        padding: 3.5rem 2.5rem;
    }

    .contact-card {
        padding: 5rem 2.5rem;
    }

    .contact-card h2 {
        font-size: 3rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
        padding: 1.5rem 2.5rem;
        font-size: 1rem;
    }
}