/* Version 2.0 - Updated travel image sizing */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --color-black: #000000;
    --color-watermelon: #FF3B3F;
    --color-sky: #CAEBF2;
    --color-lime: #E5E333;
    --color-off-white: #F7F5F0;
    --color-white: #FFFFFF;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    color: #000;
    background: var(--color-off-white);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-watermelon);
    z-index: 1000;
    transition: width 0.1s ease-out;
}

header {
    background: #2C2C2A;
    color: var(--color-off-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-off-white);
    letter-spacing: 0.02em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--color-off-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-watermelon);
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

section {
    padding: 3rem 0;
    position: relative;
}

section:not(#hero) {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpContent 0.8s ease-out forwards;
    animation-delay: 1.5s;
}

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

.section-content {
    max-width: 100%;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(78, 197, 193, 0.08);
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.0;
    color: #2C2C2A;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-name span {
    color: var(--color-watermelon);
}

.hero-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #5F5E5A;
    max-width: 400px;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.cta-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary,
.btn-secondary {
    background: transparent;
    color: var(--color-black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--color-black);
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
    display: inline-block;
}

.btn-primary:hover,
.btn-secondary:hover {
    border-color: var(--color-watermelon);
    color: var(--color-watermelon);
    transform: translateY(-2px);
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-sky);
    top: 10%;
    right: 15%;
    opacity: 0.7;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: var(--color-watermelon);
    bottom: 10%;
    right: 35%;
    opacity: 0.85;
    border-radius: 45% 55% 38% 62% / 60% 44% 56% 40%;
}

.blob-3 {
    width: 180px;
    height: 180px;
    background: #FEDCD2;
    top: 25%;
    right: 45%;
    opacity: 0.6;
    border-radius: 52% 48% 60% 40% / 44% 56% 44% 56%;
}

.blob-4 {
    width: 120px;
    height: 120px;
    background: var(--color-lime);
    bottom: 20%;
    right: 8%;
    opacity: 0.75;
    border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
}

/* Divider Strip */
.divider-strip {
    display: none;
}


h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2C2C2A;
    font-weight: 700;
    line-height: 1.2;
}

.section-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-watermelon);
    margin-top: 0.5rem;
}

h3 {
    color: #000;
}

/* About Section */
#about {
    padding: 6rem 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 280px;
}

.about-left {
    padding: 3rem 2.5rem;
    background: var(--color-off-white);
}

.section-label {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1D9E75;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #1D9E75;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #2C2C2A;
}

.about-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5F5E5A;
    margin-bottom: 1rem !important;
}

.about-body:last-of-type {
    margin-bottom: 0;
}

.skills-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.skill-pill {
    background: #2C2C2A;
    color: var(--color-off-white);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.skill-pill:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-right {
    background: var(--color-sky);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-right .section-label {
    color: #0F6E56;
}

.about-right .section-label::before {
    background: #0F6E56;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2C2C2A;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5F5E5A;
    margin-top: 0.25rem;
}

.career-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-style: italic;
}

.career-chapter {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 2rem;
}

.career-chapter:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(-2.4rem + 8px);
    top: 49px;
    bottom: -81px;
    width: 0;
    border-left: 2px dotted #1D9E75;
}

.career-chapter:nth-last-child(2)::after {
    bottom: -84px;
}

.career-chapter::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -2.4rem;
    width: 14px;
    height: 14px;
    background: white;
    border: 2px solid #1D9E75;
    border-radius: 50%;
    z-index: 1;
}

.career-chapter:last-child::before {
    background: #1D9E75;
    border: 3px solid #1D9E75;
    width: 18px;
    height: 18px;
    left: -2.5rem;
}

.timeline-label {
    position: absolute;
    left: -5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1D9E75;
}

.timeline-start {
    top: 40px;
}

.timeline-end {
    top: 40px;
}

.career-chapter:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.company-logo {
    min-width: 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-sky);
    padding: 8px;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.chapter-content {
    flex: 1;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.job-title-header {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.dates {
    color: #2C2C2A;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.company-name-sub {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}

.chapter-content .teaser {
    color: #000;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.expandable-content.expanded {
    max-height: 1000px;
}

.expandable-content p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expandable-content a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid var(--color-watermelon);
    transition: border-color 0.3s, background-color 0.3s;
    padding-bottom: 2px;
}

.expandable-content a:hover {
    border-bottom-color: var(--color-black);
    background-color: rgba(255, 59, 63, 0.1);
}

.expand-btn {
    background: none;
    border: none;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.expand-btn:hover {
    opacity: 0.7;
}

.expand-btn::after {
    content: ' ↓';
}

.expand-btn.expanded::after {
    content: ' ↑';
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.interest-card {
    padding: 2.5rem;
    background: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #999;
}

.interest-card h3 {
    margin-bottom: 1rem;
    color: #000;
}

.instagram-preview {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.instagram-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.instagram-handle {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.travel-count {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 0;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.placeholder-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-lime) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.travel-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.travel-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slide-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2C2C2A;
    margin-top: 0.5rem;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 44, 42, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--color-watermelon);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

#contact {
    text-align: center;
}

.contact-content {
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #000;
}

#contact-form button {
    padding: 1rem 2rem;
    background: var(--color-watermelon);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

#contact-form button:hover {
    background: #E02F33;
    transform: translateY(-2px);
}

.social-link {
    text-align: center;
}

.social-link a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link a:hover {
    color: var(--color-watermelon);
}

footer {
    background: #2C2C2A;
    color: var(--color-off-white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-content {
        max-width: 85%;
    }
    
    /* Scale down and reposition blobs for mobile */
    .blob-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        right: -5%;
        opacity: 0.5;
    }
    
    .blob-2 {
        width: 120px;
        height: 120px;
        bottom: 15%;
        right: 10%;
        opacity: 0.6;
    }
    
    .blob-3 {
        width: 100px;
        height: 100px;
        top: 30%;
        right: 25%;
        opacity: 0.4;
    }
    
    .blob-4 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 5%;
        opacity: 0.5;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    #hero p {
        font-size: 1.2rem;
    }
    
    #about h2,
    #career h2,
    #interests h2,
    #contact h2 {
        font-size: 1.5rem !important;
    }
    
    .job-title-header {
        font-size: 1.1rem;
    }
    
    .career-intro {
        font-size: 1rem;
    }
    
    .career-chapter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    section {
        padding: 1rem 0;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    main {
        padding: 0 1rem;
    }
}
