/* ===================================
   Kappy Perry Portfolio - Stylesheet
   Design System: Carolina Blue + Rose Pink
   =================================== */

/* Color Palette */
:root {
    /* Light Blue Palette from Image */
    --bg-gradient-top: #DCEEF7;     /* Top left - Light blue */
    --bg-gradient-bottom: #BEE1F0;  /* Bottom - Medium light blue */
    --welcome-text: #64828C;        /* Muted blue-gray for "WELCOME" */
    --im-text: #508296;             /* Blue for "I'm" */
    --name-text: #FFFFFF;           /* White for name */
    --desc-text: #464646;           /* Dark gray for description */
    --button-text: #285064;         /* Dark blue for buttons */
    --button-bg: #FFFFFF;           /* White for buttons */
    --button-border: #E6E6E6;       /* Light gray border */
    --icon-bg: #FFFFFF;             /* White for icons */
    --icon-color: #508296;          /* Blue for icon symbols */
    
    /* Hover colors */
    --button-hover-bg: #508296;     /* Deeper blue background on hover */
    --button-hover-text: #FFFFFF;   /* White text on hover */
    --icon-hover-bg: #508296;       /* Deeper blue on icon hover */
    --icon-hover-color: #FFFFFF;    /* White icon on hover */
    
    /* Legacy for compatibility */
    --primary: #A8D0E6;
    --secondary: #B8DFE8;
    --accent-pink: #F5B8C9;
    --neutral-white: #FFFFFF;
    --neutral-charcoal: #333333;
    --navy: #285064;
    --light-gray: #E8F4F8;
    --text-dark: #464646;
    --text-light: #FFFFFF;
    --soft-gray: #D1D9E0;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary);
}

h2 {
    font-size: 2rem;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--neutral-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo a {
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a {
    position: relative;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"],
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a[aria-current="page"]::after,
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
    border-radius: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Glass Effect */
.glass-effect {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-primary:hover {
    background: #b0286f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 48, 135, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 48, 135, 0.2);
}

/* NEW HERO STYLES */
.hero {
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 100%);
    color: var(--text-dark);
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

.hero__inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
}

.hero__eyebrow {
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--welcome-text);
    opacity: 1;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.02;
    font-size: clamp(36px, 6vw, 64px);
    margin: 0.25rem 0 1rem;
    color: var(--im-text);
}

.hero__title span {
    color: var(--name-text);
}

.hero__subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 52ch;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--desc-text);
}

.hero__quote {
    max-width: 52ch;
    margin: 32px 0 0 0;
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: var(--desc-text);
    line-height: 1.7;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.quote-author {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 400;
    color: var(--im-text);
    font-style: italic;
    display: block;
    text-align: right;
    letter-spacing: 0.5px;
}

.about-quote {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0;
    border: none;
}

.about-quote .quote-text {
    font-size: clamp(17px, 2vw, 20px);
}

.about-quote .quote-author {
    font-size: clamp(14px, 1.5vw, 16px);
}

.hero__cta-text {
    font-size: clamp(15px, 2vw, 18px);
    max-width: 52ch;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--desc-text);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
    align-items: center;
}

.hero__photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    aspect-ratio: 4/5;
    background: #f8fafc;
    border: 8px solid #527B8C;
    padding: 0;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.hero__photo {
    position: relative;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(82, 123, 140, 0.75) 0%, rgba(82, 123, 140, 0.5) 100%);
    color: white;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.hero__photo:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}

.hero__photo:hover img {
    opacity: 0.95;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
    text-decoration: none;
}

.btn--primary {
    background: var(--navy);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,.10);
    background: var(--button-hover-bg);
    color: var(--button-hover-text);
}

.btn--ghost {
    background: white;
    border: 1px solid var(--button-border);
    color: var(--navy);
}

.btn--ghost:hover {
    background: var(--light-gray);
    border-color: var(--im-text);
}

.menu-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.menu-stack .btn {
    height: 54px;
    background: var(--button-bg);
    color: var(--button-text);
    border: 1px solid var(--button-border);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.menu-stack .btn span {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.menu-stack .btn::before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    color: var(--button-hover-text);
}

.menu-stack .btn:hover span,
.btn:hover span {
    opacity: 0;
}

.menu-stack .btn:hover::before,
.btn:hover::before {
    opacity: 1;
}

.menu-stack .btn {
    position: relative;
}

.menu-stack .btn::before,
.btn::before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    color: var(--button-hover-text);
}

.menu-stack .btn:hover,
.btn:hover {
    position: relative;
}

.menu-stack .btn:hover {
    background: var(--button-hover-bg);
    border-color: var(--button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

.btn--primary:hover,
.btn--ghost:hover {
    position: relative;
}

.btn--primary:hover span {
    opacity: 0;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary::before,
.btn--ghost::before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn--primary:hover::before {
    color: white;
}

.btn--ghost:hover span {
    opacity: 0;
}

.btn--ghost:hover::before {
    opacity: 1;
}

.btn--ghost:hover::before {
    color: var(--navy);
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--icon-color);
    background: var(--icon-bg);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.icon-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: var(--icon-hover-bg);
    color: var(--icon-hover-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 20px 40px;
    }
    
    .hero__photo {
        max-width: 520px;
        margin: 0 auto;
    }
    
    .hero__title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .hero__subtitle {
        font-size: clamp(15px, 2vw, 18px);
    }
}

/* Page Header */
.page-header-about {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 100%);
    color: var(--navy);
}

.page-header-about h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--navy);
}

.header-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--desc-text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.header-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 8px;
}

.header-link:hover {
    color: var(--im-text);
}

.header-separator {
    color: var(--desc-text);
    font-size: 1rem;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: var(--bg);
}

.about-intro-content,
.leadership-content,
.entrepreneurship-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    grid-template-columns: 1.2fr 1fr;
}

.about-intro-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrapper h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title-wrapper h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--im-text) 0%, var(--accent-pink) 100%);
    margin: 1rem auto 0;
    border-radius: 5px;
}

.section-descriptor {
    font-size: 1.1rem;
    color: var(--desc-text);
    font-style: italic;
    margin-top: 0.5rem;
}

.leadership-text,
.entrepreneurship-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
}

.leadership-text p,
.entrepreneurship-text p {
    margin-bottom: 1.5rem;
}

.entrepreneurship-content {
    grid-template-columns: 1fr 1.1fr;
}

.about-leadership {
    background: var(--light-gray);
}

.about-leadership {
    background: var(--light-gray);
}

.leadership-grid {
    max-width: 1100px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.leadership-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.leadership-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--im-text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.org-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.leadership-card p {
    line-height: 1.8;
    color: var(--text-dark);
}

.leadership-images {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.leadership-image {
    width: 100%;
}

.leadership-photo-container {
    position: relative;
}

.leadership-photo-container:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}

.leadership-photo-container:hover .leadership-photo {
    opacity: 0.95;
}

.leadership-photo {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.leadership-photo-container .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(82, 123, 140, 0.75) 0%, rgba(82, 123, 140, 0.5) 100%);
    color: white;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

.about-entrepreneurship {
    background: var(--bg);
}

.about-values {
    background: linear-gradient(135deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content .btn--primary {
    margin-right: 1rem;
}

.cta-content .btn--ghost {
    color: var(--navy);
}

.initiative-item {
    margin-bottom: 2.5rem;
}

.initiative-item:last-child {
    margin-bottom: 0;
}

.initiative-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--im-text);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.initiative-item p {
    line-height: 1.8;
    color: var(--text-dark);
}

.pull-quote {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--im-text);
    padding: 24px 32px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.intro-link {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.intro-link-text {
    color: var(--im-text);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--im-text);
    text-underline-offset: 4px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.intro-link-text:hover {
    color: var(--navy);
    text-decoration-color: var(--navy);
}

.about-personal-alt {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--bg) 100%);
}

.personal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.personal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.personal-image {
    max-width: 800px;
    margin: 3rem auto 0;
}

.travel-photo-container {
    position: relative;
}

.travel-photo-container:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}

.travel-photo-container:hover .travel-photo {
    opacity: 0.95;
}

.travel-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.travel-photo-container .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(82, 123, 140, 0.75) 0%, rgba(82, 123, 140, 0.5) 100%);
    color: white;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

.centered {
    text-align: center;
}

/* More About Me Section */
.about-more {
    background: var(--light-gray);
}

/* Values Grid */
.values-grid {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-item {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(80, 130, 150, 0.2);
    background: linear-gradient(135deg, rgba(220, 238, 247, 0.4) 0%, rgba(190, 225, 240, 0.3) 100%);
    border-color: rgba(80, 130, 150, 0.25);
}

.value-item:hover .value-icon {
    color: var(--im-text);
    transform: scale(1.1) translateY(-4px);
    animation: iconBounce 0.6s ease;
}

.value-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--im-text);
    height: 48px;
    transition: color 0.3s ease, transform 0.3s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.1) translateY(-4px);
    }
    50% {
        transform: scale(1.1) translateY(-8px);
    }
}

@keyframes iconBounceSmall {
    0%, 100% {
        transform: scale(1.15) translateY(-3px);
    }
    50% {
        transform: scale(1.15) translateY(-6px);
    }
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--im-text);
    margin-bottom: 8px;
    font-weight: 700;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Hobbies Section */
.hobbies-section {
    max-width: 1100px;
    margin: 0 auto 50px;
}

.hobbies-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hobby-item {
    background: white;
    padding: 24px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.hobby-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(80, 130, 150, 0.18);
    background: linear-gradient(135deg, rgba(220, 238, 247, 0.35) 0%, rgba(190, 225, 240, 0.25) 100%);
    border-color: rgba(80, 130, 150, 0.2);
}

.hobby-item:hover .hobby-icon {
    color: var(--im-text);
    transform: scale(1.15) translateY(-3px);
    animation: iconBounceSmall 0.6s ease;
}

.hobby-item:hover .hobby-text {
    color: var(--im-text);
    font-weight: 600;
}

.hobby-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--im-text);
    height: 32px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hobby-icon svg {
    width: 32px;
    height: 32px;
}

.hobby-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

/* Fun Facts Section */
.fun-facts-section {
    max-width: 1100px;
    margin: 0 auto;
}

.fun-facts-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.fun-facts-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fun-facts-list-simple li {
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}

.fun-facts-list-simple li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(80, 130, 150, 0.18);
    background: linear-gradient(135deg, rgba(220, 238, 247, 0.35) 0%, rgba(190, 225, 240, 0.25) 100%);
    border-color: rgba(80, 130, 150, 0.2);
    color: var(--im-text);
    font-weight: 600;
}

.about-image-placeholder {
    width: 100%;
}

.portfolio-link {
    color: var(--im-text);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--im-text);
    text-underline-offset: 4px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.portfolio-link:hover {
    color: var(--navy);
    text-decoration-color: var(--navy);
}

.contact-info-card {
    max-width: 800px;
    margin: 0 auto;
}

.info-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.info-item-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-item-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-item-card a,
.info-item-card p {
    color: var(--im-text);
    font-size: 1rem;
    font-weight: 500;
}

.contact-form-wrapper {
    margin-top: 4rem;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper iframe {
    border-radius: 12px;
    min-height: 800px;
}

.placeholder-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--divider);
    border: 2px dashed #cbd5e0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1rem;
}

.intro-photo-container {
    position: relative;
}

.intro-photo-container:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}

.intro-photo-container:hover .intro-photo {
    opacity: 0.95;
}

.intro-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.intro-photo-container .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(82, 123, 140, 0.75) 0%, rgba(82, 123, 140, 0.5) 100%);
    color: white;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 968px) {
    .about-intro-content,
    .leadership-content,
    .entrepreneurship-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hobbies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .fun-facts-list-simple {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-header-about {
        padding: 80px 0 60px;
    }
    
    .page-header-about h1 {
        font-size: 2.5rem;
    }
    
    .about-intro-text h2,
    .section-title-wrapper h2,
    .personal-content h2 {
        font-size: 2rem;
    }
    
    .work-card {
        grid-template-columns: 1fr;
    }
    
    .work-image {
        margin-bottom: 1.5rem;
        order: -1;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hobbies-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header-about {
        padding: 60px 0 40px;
    }
    
    .page-header-about h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .section-descriptor {
        font-size: 0.95rem;
    }
}

.welcome-text {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 12px;
    text-transform: uppercase;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.intro-text {
    font-size: 5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    line-height: 1.1;
}

.small-text {
    font-size: 2.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-style: italic;
}

.name-text {
    font-size: 5.5rem;
    color: var(--neutral-white);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.25);
    color: var(--neutral-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icon:hover svg {
    fill: var(--neutral-white);
}

.hero-split-right {
    background: linear-gradient(135deg, #E8E8E8 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section - Simple */
.hero-simple {
    background: var(--neutral-white);
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-container-simple {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-image-simple {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-circle {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 15px 40px rgba(75, 156, 211, 0.25);
    transition: transform 0.3s ease;
}

.profile-image-circle:hover {
    transform: scale(1.02);
}

.hero-content-simple {
    animation: fadeInUp 0.8s ease;
}

.hello-greeting {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    position: relative;
}

.hello-greeting::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--secondary);
    margin-top: 0.5rem;
    border-radius: 5px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.hero-bio {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.profile-placeholder,
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.skills-grid {
    max-width: 800px;
    margin: 0 auto;
}

.skills-card {
    text-align: left;
}

.skills-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.skills-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.skills-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.skills-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.skills-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Background Section */
.background-section {
    padding: 80px 0;
}

.credentials-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cred-card {
    padding: 2rem;
}

.cred-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cred-card p {
    line-height: 1.8;
}

.link-text {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.link-text:hover {
    color: var(--secondary);
}

/* Personality Section */
.personality-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.personality-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.personality-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.personality-text h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.personality-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(75, 156, 211, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* About Section */
.about {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto 0;
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-grid-simplified {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.about-card-large {
    grid-column: 1;
}

.about-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.about-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-profile-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.skills-list {
    list-style: none;
}

.skills-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.skills-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
    background: var(--light-gray);
}

.credentials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.credential-card {
    text-align: center;
}

.credential-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.link-inline {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: var(--secondary);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-info-centered {
    max-width: 700px;
    margin: 0 auto;
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--button-border);
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--im-text);
    box-shadow: 0 0 0 3px rgba(80, 130, 150, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.social-card {
    margin-bottom: 2rem;
}

.info-card h2,
.social-card h3 {
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-item a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: var(--primary);
    font-weight: 600;
    padding: 10px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--text-light);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Work Samples Section */
.work-section {
    padding: 80px 0;
}

.work-section:nth-child(even) {
    background: var(--light-gray);
}

/* Portfolio page uses about-section styling */
.about-section:nth-child(odd) {
    background: var(--light-gray);
}

.work-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.work-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.work-card:not(:has(.work-image)) {
    grid-template-columns: 1fr;
}

/* Responsive styles for work cards */
@media (max-width: 768px) {
    .work-card {
        grid-template-columns: 1fr !important;
        padding: 1.5rem;
    }
    
    .work-image {
        margin-bottom: 1rem;
        order: -1;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .menu-stack .btn {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .hero__social {
        margin-top: 24px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero__inner {
        padding: 40px 15px 30px;
        gap: 24px;
    }
    
    .hero__title {
        font-size: clamp(28px, 10vw, 36px);
        margin: 0.15rem 0 0.75rem;
    }
    
    .hero__eyebrow {
        font-size: 0.8rem;
    }
    
    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .menu-stack {
        gap: 10px;
    }
    
    .menu-stack .btn {
        height: 48px;
        font-size: 0.85rem;
    }
    
    .icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .work-card {
        padding: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
        margin-top: 2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-actions button {
        width: 100%;
        max-width: none;
    }
}

.work-image {
    width: 100%;
}

.cert-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.work-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.work-meta {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.skill-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(75, 156, 211, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Career Impact Section */
.career-impact {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(80, 130, 150, 0.05) 0%, rgba(190, 225, 240, 0.1) 100%);
    border-left: 3px solid var(--im-text);
    border-radius: 8px;
}

.career-impact-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--im-text);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-impact-header svg {
    color: var(--im-text);
    transition: color 0.3s ease;
}

.career-impact-header:hover svg {
    color: #FFB800; /* Yellow for stars */
}

.transferable-skills {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transferable-skill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: transform 0.2s ease, color 0.2s ease;
}

.transferable-skill:hover {
    transform: translateX(4px);
    color: var(--im-text);
}

.transferable-skill svg {
    flex-shrink: 0;
    color: var(--im-text);
    opacity: 0.8;
    transition: color 0.3s ease;
}

.transferable-skill:hover svg {
    opacity: 1;
}

/* Icon-specific hover colors */
.transferable-skill[data-icon="star"]:hover svg {
    color: #FFB800; /* Yellow for stars */
}

.transferable-skill[data-icon="people"]:hover svg {
    color: #6366F1; /* Indigo for people/users */
}

.transferable-skill[data-icon="message"]:hover svg {
    color: #3B82F6; /* Blue for communication */
}

.transferable-skill[data-icon="phone"]:hover svg {
    color: #10B981; /* Green for phone/sales */
}

.transferable-skill[data-icon="sun"]:hover svg {
    color: #F59E0B; /* Amber for strategic/bright ideas */
}

.transferable-skill[data-icon="box"]:hover svg {
    color: #6366F1; /* Indigo for operations/management */
}

.transferable-skill[data-icon="chart"]:hover svg {
    color: #8B5CF6; /* Purple for analytics/charts */
}

.transferable-skill[data-icon="clock"]:hover svg {
    color: #06B6D4; /* Cyan for time */
}

.transferable-skill[data-icon="shield"]:hover svg {
    color: #14B8A6; /* Teal for trust/reliability */
}

.transferable-skill[data-icon="home"]:hover svg {
    color: #F97316; /* Orange for business/home */
}

.transferable-skill[data-icon="lightbulb"]:hover svg {
    color: #EAB308; /* Yellow for creativity/ideas */
}

.transferable-skill[data-icon="building"]:hover svg {
    color: #6B7280; /* Gray for organizations */
}

/* Welcome Letter Modal */
.welcome-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-modal.active {
    display: flex;
    opacity: 1;
}

.welcome-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.welcome-modal-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: auto;
    z-index: 10001;
    perspective: 1000px;
}

/* Envelope State */
.letter-envelope {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: envelopeDropIn 0.6s ease-out;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.letter-envelope:hover {
    transform: translateY(-5px);
}

@keyframes envelopeDropIn {
    0% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(10px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.envelope-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.envelope-icon {
    width: 120px;
    height: 100px;
    animation: envelopeFloat 2s ease-in-out infinite;
}

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

@keyframes letterClose {
    0% {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) rotateY(90deg);
        opacity: 0;
    }
}

.envelope-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--im-text);
    margin: 0;
    text-align: center;
}

.open-letter-btn {
    background: var(--im-text);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(80, 130, 150, 0.3);
}

.open-letter-btn:hover {
    background: var(--button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 130, 150, 0.4);
}

.open-letter-btn:active {
    transform: translateY(0);
}

/* Letter Content State */
.letter-content {
    display: none;
}

.letter-content.open {
    display: block;
    animation: letterOpen 0.6s ease-out;
}

@keyframes letterOpen {
    0% {
        transform: rotateY(-90deg) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: rotateY(-45deg) scale(0.9);
    }
    100% {
        transform: rotateY(0) scale(1);
        opacity: 1;
    }
}

.letter-paper {
    background: var(--neutral-white);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.letter-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e8e8e8 20%, transparent 20%, transparent 40%, #e8e8e8 40%, transparent 40%, transparent 60%, #e8e8e8 60%, transparent 60%, transparent 80%, #e8e8e8 80%, transparent 80%);
    opacity: 0.3;
}

.letter-header {
    text-align: right;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.letter-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--welcome-text);
    margin: 0;
}

.letter-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.greeting {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--im-text);
    margin: 0;
}

.welcome-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10002;
}

.welcome-modal-close:hover {
    background: var(--light-gray);
    color: var(--im-text);
    transform: rotate(90deg);
}

.letter-content .welcome-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10003;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

/* Letter-specific styles */
.letter-body .welcome-image {
    align-self: center;
    margin-bottom: 1rem;
}

.letter-body .welcome-message {
    text-align: left;
    margin-bottom: 1.25rem;
}

.welcome-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--im-text);
    box-shadow: 0 8px 20px rgba(80, 130, 150, 0.2);
    flex-shrink: 0;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text {
    width: 100%;
}

.welcome-text h2 {
    color: var(--im-text);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.welcome-message {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

.welcome-signature {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
    text-align: right;
}

.signature-text {
    color: var(--welcome-text);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.signature-name {
    color: var(--im-text);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Mobile styles for welcome letter modal */
@media (max-width: 768px) {
    .welcome-modal-content {
        width: 95%;
        max-width: 450px;
    }
    
    .letter-envelope {
        padding: 2.5rem 1.5rem;
    }
    
    .envelope-icon {
        width: 100px;
        height: 85px;
    }
    
    .envelope-label {
        font-size: 1.1rem;
    }
    
    .letter-paper {
        padding: 2rem 1.5rem;
    }
    
    .letter-paper::before {
        left: 40px;
    }
    
    .greeting {
        font-size: 1.5rem;
    }
    
    .welcome-image {
        width: 120px;
        height: 120px;
    }
    
    .welcome-message {
        font-size: 1rem;
    }
    
    .signature-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .letter-envelope {
        padding: 2rem 1.25rem;
    }
    
    .envelope-icon {
        width: 80px;
        height: 70px;
    }
    
    .envelope-label {
        font-size: 1rem;
    }
    
    .open-letter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .letter-paper {
        padding: 1.5rem 1rem;
    }
    
    .letter-paper::before {
        left: 30px;
    }
    
    .greeting {
        font-size: 1.3rem;
    }
    
    .welcome-image {
        width: 100px;
        height: 100px;
    }
    
    .welcome-message {
        font-size: 0.95rem;
    }
}

/* Site Footer */
.site-footer {
    margin-top: 4rem;
    padding: 0.75rem 20px;
    border-top: none;
    background: #10B981;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    width: 100%;
}

.copyright {
    color: #FFFFFF;
    font-size: 0.7rem;
}

.footer-name {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-smiley-icon {
    color: #FFFFFF;
    margin-left: 0.25rem;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.footer-smiley-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0.65rem 15px;
    }
    
    .footer-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 0.6rem 10px;
    }
    
    .footer-text {
        font-size: 0.6rem;
    }
    
    .copyright,
    .footer-name {
        font-size: 0.6rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-content a {
    color: var(--primary);
    font-weight: 600;
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.pull-quote-source {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-dark);
    margin-top: 0.5rem;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-links {
    justify-self: center;
}

.footer-copyright {
    justify-self: end;
    text-align: right;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.footer-contact p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-contact a {
    font-size: 0.9rem;
    display: block;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    display: flex;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-profile-img {
        max-width: 400px;
    }
    
    .about-grid,
    .about-grid-simplified {
        grid-template-columns: 1fr;
    }
    
    .about-card-large {
        grid-column: 1;
    }
    
    .credentials-grid,
    .credentials-grid-simple {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .personality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .personality-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    
    .work-card {
        grid-template-columns: 1fr;
    }
    
    .work-image {
        margin-bottom: 1.5rem;
    }
    
    .cert-img {
        max-width: 100%;
    }
}

/* Split Screen Responsive */
@media (max-width: 968px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        grid-template-rows: 0.6fr 0.4fr;
    }
    
    .hero-split-left {
        padding: 2rem;
    }
    
    .welcome-text {
        font-size: 3rem;
    }
    
    .intro-text {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .small-text {
        font-size: 2rem;
    }
    
    .name-text {
        font-size: 4rem;
    }
    
    .nav-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .social-icons {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-split-left {
        padding: 1.5rem;
    }
    
    .welcome-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .intro-text {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .small-text {
        font-size: 1.5rem;
    }
    
    .name-text {
        font-size: 3rem;
    }
    
    .nav-buttons {
        max-width: 250px;
    }
    
    .nav-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-split-container {
        grid-template-rows: 0.5fr 0.5fr;
    }
}

@media (max-width: 480px) {
    .hero-split-left {
        padding: 1rem;
    }
    
    .welcome-text {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .intro-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .name-text {
        font-size: 2rem;
    }
    
    .nav-buttons {
        max-width: 200px;
    }
}

@media (max-width: 968px) {
    .hero-container-simple {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image-simple {
        order: -1;
    }
    
    .profile-image-circle {
        max-width: 280px;
    }
    
    .hero-content-simple {
        text-align: center;
    }
    
    .hello-greeting {
        font-size: 3rem;
    }
    
    .hello-greeting::after {
        width: 60px;
        height: 4px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-bio {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--neutral-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero-simple {
        padding: 60px 0 40px;
    }
    
    .hello-greeting {
        font-size: 2.5rem;
    }
    
    .hello-greeting::after {
        width: 50px;
        height: 3px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-bio {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: center;
        order: -1;
        width: 100%;
    }
    
        .logo-img {
        height: 45px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .credentials-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .info-item {
        text-align: left;
    }
    
    /* New sections responsive */
    .skills-card h3,
    .cred-card h3,
    .personality-text h2 {
        font-size: 1.25rem;
    }
    
    .skills-card p,
    .cred-card p,
    .personality-text p {
        font-size: 1rem;
    }
    
    .credentials-grid-simple {
        gap: 1.5rem;
    }
    
    /* Career Impact mobile styles */
    .work-grid {
        gap: 1.5rem;
    }
    
    .work-card {
        padding: 1rem;
    }
    
    .career-impact {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .career-impact-header {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .career-impact-header svg {
        width: 18px;
        height: 18px;
    }
    
    .transferable-skills {
        gap: 0.6rem;
    }
    
    .transferable-skill {
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    .transferable-skill svg {
        width: 14px;
        height: 14px;
    }
    
    .work-content h3 {
        font-size: 1.2rem;
    }
    
    .work-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .skill-tags {
        gap: 0.4rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    
    .portfolio-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    
    .hello-greeting {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .hero-bio {
        font-size: 0.95rem;
    }
    
    .profile-image-circle {
        max-width: 250px;
    }
    
    /* Career Impact small mobile styles */
    .career-impact {
        padding: 0.875rem;
        margin-top: 1rem;
    }
    
    .career-impact-header {
        font-size: 0.8rem;
        margin-bottom: 0.65rem;
    }
    
    .career-impact-header svg {
        width: 16px;
        height: 16px;
    }
    
    .transferable-skill {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .transferable-skill svg {
        width: 13px;
        height: 13px;
    }
    
    .work-content h3 {
        font-size: 1.15rem;
    }
    
    .work-description {
        font-size: 0.9rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .header-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .header-link {
        font-size: 0.85rem;
    }
    
    .about-profile-img {
        height: 200px;
    }
    
    /* New sections mobile */
    .skills-section,
    .background-section,
    .personality-section {
        padding: 50px 0;
    }
    
    .personality-image {
        max-width: 250px;
    }
    
    .cred-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .work-section,
    .contact-section,
    .about,
    .cta-section {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 60px 0 30px;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .glass-effect {
        padding: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .pull-quote {
        font-size: 1.1rem;
        padding-left: 1rem;
        margin: 1.5rem 0;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}


