/* ============================================
   MAKAYLA WONG - Global Explorer
   Color Palette:
   - Sunset Orange: #FF6B35 (Energy, Adventure)
   - Deep Teal: #0B3D4C (Travel, Depth, Trust)
   - Soft Gold: #D4A843 (Achievement, Warmth)
   - Cream: #FFF8F0 (Background warmth)
   - Coral: #FF8C69 (Accents)
   ============================================ */

:root {
    /* Primary Colors */
    --color-sunset: #FF6B35;
    --color-sunset-light: #FF8C69;
    --color-sunset-dark: #E55A2B;
    
    /* Secondary Colors */
    --color-teal: #0B3D4C;
    --color-teal-light: #1A5F6E;
    --color-teal-dark: #062A35;
    
    /* Accent Colors */
    --color-gold: #D4A843;
    --color-gold-light: #E8C878;
    --color-gold-dark: #B8923A;
    
    /* Neutrals */
    --color-cream: #FFF8F0;
    --color-cream-dark: #F5EDE3;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    
    /* Text Colors */
    --color-text: #2D3748;
    --color-text-light: #4A5568;
    --color-text-muted: #718096;
    
    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #FF8C69 100%);
    --gradient-teal: linear-gradient(135deg, #0B3D4C 0%, #1A5F6E 100%);
    --gradient-gold: linear-gradient(135deg, #D4A843 0%, #E8C878 100%);
    --gradient-hero: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 50%, #FFD4B8 100%);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 1rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 61, 76, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 61, 76, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 61, 76, 0.16);
    --shadow-sunset: 0 4px 20px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* ============================================
   LANGUAGE BAR
   ============================================ */
.lang-bar {
    background: var(--color-teal);
    padding: var(--space-2) 0;
}

.lang-toggle {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-2);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--color-sunset);
    border-color: var(--color-sunset);
    color: var(--color-white);
}

/* ============================================
   LANGUAGE & FONT SUPPORT
   ============================================ */

/* Chinese Font Support */
.font-chinese-tc {
    --font-body: 'Noto Sans TC', 'Microsoft JhengHei', 'PingFang TC', sans-serif;
}

.font-chinese-sc {
    --font-body: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

/* Language-specific text adjustments */
.font-chinese-tc .hero-headline,
.font-chinese-sc .hero-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
}

.font-chinese-tc .hero-hook,
.font-chinese-sc .hero-hook {
    font-size: 1rem;
    line-height: 1.8;
}

.font-chinese-tc .section-header h2,
.font-chinese-sc .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.font-chinese-tc .bento-card p,
.font-chinese-sc .bento-card p {
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Portuguese & German text flow */
html[lang="pt"] .hero-headline,
html[lang="de"] .hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

html[lang="pt"] .hero-hook,
html[lang="de"] .hero-hook {
    font-size: 1.1rem;
}

/* Language Toggle Enhancement */
.lang-btn {
    position: relative;
    overflow: hidden;
}

.lang-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.lang-btn:hover::after,
.lang-btn.active::after {
    width: 80%;
}

/* Smooth text transition when switching languages */
[data-i18n],
[data-i18n-placeholder] {
    transition: opacity 0.2s ease;
}

.lang-switching [data-i18n],
.lang-switching [data-i18n-placeholder] {
    opacity: 0.7;
}
.navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-teal);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-2) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-sunset);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-teal);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-hero);
    position: relative;
    padding: var(--space-24) 0 var(--space-16);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-white);
    border: 2px solid var(--color-sunset);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-sunset);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sunset);
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-teal);
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-sunset);
    border-radius: 4px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Hero Photo Frame */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.photo-placeholder {
    background: var(--color-white);
    border: 4px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    padding: var(--space-12);
    text-align: center;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
}

.photo-placeholder span {
    font-size: 4rem;
}

.photo-placeholder p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-teal);
}

.photo-placeholder small {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.photo-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
}

.photo-badge {
    background: var(--color-white);
    border: 2px solid var(--color-sunset);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-sunset);
    box-shadow: var(--shadow-md);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--space-8);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--color-white);
    box-shadow: var(--shadow-sunset);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-teal);
    border: 2px solid var(--color-teal);
}

.btn-outline:hover {
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
    background: var(--color-cream);
    padding: var(--space-16) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sunset);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sunset-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-icon {
    font-size: 2rem;
    margin-top: var(--space-3);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-sunset);
    margin-bottom: var(--space-4);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
    background: var(--color-white);
    padding: var(--space-24) 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.destination-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-cream-dark);
    transition: var(--transition-normal);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sunset);
}

.destination-bg {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(11, 61, 76, 0.8) 100%);
}

.destination-bg.asia {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C69 100%);
}

.destination-bg.europe {
    background: linear-gradient(135deg, #0B3D4C 0%, #1A5F6E 100%);
}

.destination-bg.americas {
    background: linear-gradient(135deg, #D4A843 0%, #E8C878 100%);
}

.destination-bg.africa {
    background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 100%);
}

.destination-content {
    padding: var(--space-6);
    position: relative;
}

.destination-count {
    position: absolute;
    top: -14px;
    right: var(--space-4);
    background: var(--color-white);
    border: 2px solid var(--color-sunset);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-sunset);
}

.destination-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: var(--space-2);
}

.destination-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.destination-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-sunset);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.destination-card:hover .destination-link {
    color: var(--color-sunset-dark);
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SKILLS PREVIEW
   ============================================ */
.skills-preview {
    background: var(--gradient-hero);
    padding: var(--space-24) 0;
}

.skills-orbit {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.skill-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 3px solid transparent;
    transition: var(--transition-normal);
    cursor: pointer;
    min-width: 120px;
}

.skill-bubble:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sunset);
}

.skill-icon {
    font-size: 2.5rem;
}

.skill-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-teal);
    text-align: center;
}

.skills-cta {
    text-align: center;
}

/* ============================================
   LANGUAGES
   ============================================ */
.languages {
    background: var(--color-white);
    padding: var(--space-24) 0;
}

.languages-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.lang-card {
    background: var(--color-cream);
    border-radius: var(--border-radius);
    padding: var(--space-8) var(--space-4);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    cursor: pointer;
}

.lang-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.lang-flag {
    font-size: 3rem;
    margin-bottom: var(--space-3);
}

.lang-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-teal);
    margin-bottom: var(--space-2);
}

.lang-greeting {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-sunset);
    margin-bottom: var(--space-2);
}

.lang-level {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-teal-dark);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.languages-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .languages-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .languages-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote {
    background: var(--color-teal);
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-sunset);
    line-height: 1;
    opacity: 0.5;
}

.quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.5;
    margin: var(--space-4) 0 var(--space-6);
}

.quote cite {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gold-light);
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-teal-dark);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer-brand .logo-icon {
    font-size: 2rem;
    margin-bottom: var(--space-3);
    display: block;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    padding: var(--space-1) 0;
    transition: var(--transition-fast);
}

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

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
}

.footer-newsletter p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-4);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: var(--space-3) var(--space-4);
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-parent {
    margin-top: var(--space-2);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   HALL OF FAME - MACAO HONORS
   ============================================ */
.hall-of-fame {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.hall-of-fame::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hall-of-fame::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hall-of-fame .section-header h2 {
    color: var(--color-gold);
}

.hall-of-fame .section-tag {
    background: rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.4);
    color: var(--color-gold);
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 1;
}

.honor-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.honor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.honor-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.2);
}

.honor-ribbon {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-teal-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}

.honor-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold-light);
    margin-bottom: var(--space-2);
}

.honor-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.honor-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.honor-meta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.honor-meta span {
    font-size: 0.875rem;
    color: var(--color-gold);
    background: rgba(212, 168, 67, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
}

.honor-quote {
    max-width: 700px;
    margin: 0 auto var(--space-8);
    text-align: center;
    position: relative;
    z-index: 1;
}

.honor-quote blockquote {
    position: relative;
}

.honor-quote .quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
}

.honor-quote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.6;
    margin: var(--space-2) 0 var(--space-4);
}

.honor-quote cite {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 600;
}

.honor-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Gold Button */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-teal-dark);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
    font-weight: 800;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.4);
}

/* Hall of Fame Stat Card */
.hall-of-fame-stat::before {
    background: var(--gradient-gold) !important;
}

.hall-of-fame-stat .stat-number {
    background: var(--gradient-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hall-of-fame-stat:hover {
    border-color: var(--color-gold) !important;
}

@media (max-width: 768px) {
    .honors-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SKILL TAGLINES
   ============================================ */
.skill-tagline {
    font-size: 0.75rem;
    color: var(--color-sunset);
    font-weight: 600;
    text-align: center;
    margin-top: var(--space-1);
    opacity: 0.8;
}

.skill-bubble:hover .skill-tagline {
/* ============================================
   LANGUAGE TOOLTIP (Interactive)
   ============================================ */
.lang-tooltip-trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.tooltip-icon {
    font-size: 2rem;
    cursor: pointer;
    background: var(--color-white);
    border: 3px solid var(--color-sunset);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.tooltip-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.lang-tooltip {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--color-white);
    border: 2px solid var(--color-sunset);
    border-radius: var(--border-radius);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lang-tooltip-trigger:hover .lang-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-cream-dark);
    transition: var(--transition-fast);
}

.tooltip-row:last-child {
    border-bottom: none;
}

.tooltip-row:hover {
    background: var(--color-cream);
    margin: 0 calc(-1 * var(--space-4));
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    border-radius: var(--border-radius-sm);
}

.tooltip-flag {
    font-size: 1.25rem;
}

.tooltip-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-teal);
    flex: 1;
}

.tooltip-greeting {
    font-size: 0.875rem;
    color: var(--color-sunset);
    font-weight: 600;
}

/* ============================================
   GOLD LAUREL WREATH BADGES
   ============================================ */
.laurel-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: linear-gradient(135deg, #D4A843 0%, #E8C878 50%, #D4A843 100%);
    color: var(--color-teal-dark);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    position: relative;
    border: 2px solid #B8923A;
}

.laurel-badge::before,
.laurel-badge::after {
    content: '🌿';
    font-size: 0.875rem;
}

.laurel-badge .year {
    font-size: 0.875rem;
}

.laurel-wreaths {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skill-bubble:hover .skill-icon {
    animation: float 2s ease infinite;
}

.stat-card:hover .stat-icon {
    animation: pulse 1s ease infinite;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-sunset-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-sunset);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--color-sunset-light);
    color: var(--color-white);
}
