/* CSS Custom Properties */
:root {
    /* Colors - Light Theme */
    --primary-bg: #fafafa;
    --secondary-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --forest-green: #2d5016;
    --brick-red: #a0442c;
    --accent-light-green: #4a7c59;
    --accent-light-red: #d65c42;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Advanced Physics Variables */
    --bounce-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --smooth-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --elastic-ease: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --physics-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --levitation-ease: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ultra-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --gentle-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
    
    /* Animation Timings */
    --shadow-fade-duration: 1.2s;
    --bounce-duration: 0.6s;
    --hover-duration: 0.5s;
    --click-duration: 0.15s;
    --levitation-duration: 3s;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 2rem;
    --element-gap: 2rem;
}

/* Text Selection Colors */
::selection {
    background: var(--accent-light-green);
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: var(--accent-light-green);
    color: white;
    text-shadow: none;
}

/* High contrast text selection */
body.high-contrast ::selection {
    background: var(--accent-light-green);
    color: var(--primary-bg);
}

body.high-contrast ::-moz-selection {
    background: var(--accent-light-green);
    color: var(--primary-bg);
}

/* High Contrast Theme */
body.high-contrast {
    --primary-bg: #000000;
    --secondary-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --forest-green: #00ff00;
    --brick-red: #ff0000;
    --accent-light-green: #66ff66;
    --accent-light-red: #ff6666;
    --shadow-color: rgba(255, 255, 255, 0.3);
    --border-color: rgba(255, 255, 255, 0.2);
}

/* High Contrast Rules for Specific Elements */
body.high-contrast .interest-card {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .interest-title {
    color: var(--text-primary) !important;
}

body.high-contrast .contact-email-card {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .contact-email-title {
    color: var(--text-primary) !important;
}

body.high-contrast .contact-email-link {
    color: var(--forest-green) !important;
}

body.high-contrast .social-link {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .location-content {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .location-text {
    color: var(--text-primary) !important;
}

body.high-contrast .content-item {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .content-title {
    color: var(--text-primary) !important;
}

body.high-contrast .content-description {
    color: var(--text-secondary) !important;
}

body.high-contrast .show-more-btn {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .accessibility-menu {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .menu-title {
    color: var(--text-primary) !important;
}

body.high-contrast .menu-section-title {
    color: var(--text-primary) !important;
}

body.high-contrast .colorblind-option {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .option-name {
    color: var(--text-primary) !important;
}

body.high-contrast .option-description {
    color: var(--text-secondary) !important;
}

body.high-contrast .floating-navbar {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
}

body.high-contrast .navbar-title {
    color: var(--text-primary) !important;
}

body.high-contrast .content-modal .modal-content {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .content-modal .modal-header h2 {
    color: var(--text-primary) !important;
}

body.high-contrast .content-modal .content-text {
    color: var(--text-primary) !important;
}

body.high-contrast .content-modal .content-text h2,
body.high-contrast .content-modal .content-text h3 {
    color: var(--text-primary) !important;
}

body.high-contrast .content-modal .content-text p {
    color: var(--text-secondary) !important;
}

body.high-contrast .form-group input,
body.high-contrast .form-group textarea {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .form-group label {
    color: var(--text-primary) !important;
}

body.high-contrast .submit-btn {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .contact-mode {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .contact-description {
    color: var(--text-secondary) !important;
}

body.high-contrast .toggle-track {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
}

body.high-contrast .toggle-label {
    color: var(--text-primary) !important;
}

body.high-contrast .label-text {
    color: var(--text-primary) !important;
}

body.high-contrast .carousel-btn {
    background: var(--secondary-bg) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

body.high-contrast .carousel-dot {
    background: var(--border-color) !important;
    border: 1px solid var(--text-primary) !important;
}

body.high-contrast .carousel-dot.active {
    background: var(--text-primary) !important;
}

/* Hide colorblind/daltonist options */
#navColorblindToggle {
    display: none !important;
}

.colorblind-options {
    display: none !important;
}

.menu-section:has(.colorblind-options) {
    display: none !important;
}

/* Colorblind Themes */
body.colorblind-protanopia {
    --forest-green: #0077be;
    --brick-red: #ff6600;
    --accent-light-green: #0099cc;
    --accent-light-red: #ff8c42;
}

body.colorblind-deuteranopia {
    --forest-green: #005577;
    --brick-red: #cc7700;
    --accent-light-green: #0088bb;
    --accent-light-red: #ee9944;
}

body.colorblind-tritanopia {
    --forest-green: #cc4400;
    --brick-red: #0066aa;
    --accent-light-green: #dd5511;
    --accent-light-red: #0077bb;
}

body.colorblind-achromatopsia {
    --forest-green: #555555;
    --brick-red: #888888;
    --accent-light-green: #666666;
    --accent-light-red: #999999;
}

/* Reduced Motion Theme */
body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

/* Standard Cursor Theme */
body.standard-cursor * {
    cursor: auto !important;
}

body.standard-cursor .mouse-follower {
    display: none !important;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility Menu - Enhanced Design */
.accessibility-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(45, 80, 22, 0.2);
    border-radius: 28px;
    padding: 2.5rem;
    min-width: 480px;
    max-width: 90vw;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 40px rgba(45, 80, 22, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.accessibility-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.accessibility-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.accessibility-menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.menu-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(45, 80, 22, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInDown 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) 0.1s forwards;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--brick-red));
    border-radius: 2px;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) 0.3s forwards;
}

.menu-section-title .material-icons {
    font-size: 1.4rem;
    color: var(--forest-green);
    background: rgba(45, 80, 22, 0.1);
    padding: 8px;
    border-radius: 12px;
}

.colorblind-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.colorblind-option {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(45, 80, 22, 0.15);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.colorblind-option:nth-child(1) { animation-delay: 0.1s; }
.colorblind-option:nth-child(2) { animation-delay: 0.2s; }
.colorblind-option:nth-child(3) { animation-delay: 0.3s; }
.colorblind-option:nth-child(4) { animation-delay: 0.4s; }
.colorblind-option:nth-child(5) { animation-delay: 0.5s; }

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

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.colorblind-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(45, 80, 22, 0.1), 
        rgba(160, 68, 44, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.colorblind-option:hover {
    border-color: rgba(45, 80, 22, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

.colorblind-option:hover::before {
    opacity: 1;
}

.colorblind-option.active {
    border-color: var(--forest-green);
    background: rgba(45, 80, 22, 0.08);
    box-shadow: 
        0 8px 30px rgba(45, 80, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.colorblind-option.active::before {
    opacity: 0.3;
}

.option-name {
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.option-description {
    font-size: 0.9rem;
    color: #5a5a5a;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(160, 68, 44, 0.1);
    border: 2px solid rgba(160, 68, 44, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    color: #a0442c;
    backdrop-filter: blur(10px);
}

.menu-close:hover {
    background: rgba(160, 68, 44, 0.15);
    border-color: rgba(160, 68, 44, 0.4);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(160, 68, 44, 0.2);
}

.menu-close .material-icons {
    font-size: 22px;
    font-weight: 500;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s var(--smooth-ease);
    cursor: none;
}

/* Accessibility Controls */


.accessibility-btn {
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: 
        transform 0.3s var(--bounce-spring),
        box-shadow 0.3s var(--smooth-ease),
        border-color 0.3s var(--smooth-ease),
        background 0.3s var(--smooth-ease);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.accessibility-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(45, 80, 22, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s var(--smooth-ease);
    pointer-events: none;
}

.accessibility-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--shadow-color);
    border-color: var(--forest-green);
}

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

.accessibility-btn:active {
    transform: translateY(-1px);
    transition: all 0.1s var(--smooth-ease);
}

.accessibility-btn .material-icons {
    color: var(--text-primary);
    font-size: 20px;
}

/* Particle Background */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.8), rgba(138, 43, 226, 0.4));
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, var(--forest-green), var(--accent-light-green));
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: all 0.1s ease-out;
    opacity: 0.8;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(45, 80, 22, 0.4);
    will-change: transform;
}

.mouse-follower.hover {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--brick-red), var(--accent-light-red));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(160, 68, 44, 0.6);
}

.mouse-follower.active {
    transform: translate(-50%, -50%) scale(2);
    background: radial-gradient(circle, var(--brick-red), transparent);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Floating Element Base */
.floating-element {
    transition: 
        transform 0.6s var(--smooth-ease),
        opacity 0.4s var(--smooth-ease),
        box-shadow 0.3s var(--smooth-ease);
    transform-origin: center;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    position: relative;
}

/* Hero elements should be visible immediately */
.hero-section .floating-element {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Content Section should be visible */
.content-section .floating-element {
    opacity: 1;
    transform: translateY(0);
}

.floating-element.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: none;
}

.floating-element:hover {
    transform: translate3d(0, -2px, 0);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    padding-bottom: 5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    perspective: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 0.2em;
}

.title-word {
    display: inline-block;
    margin: 0 0.1em;
    transition: all 0.6s var(--elastic-ease);
    transform-style: preserve-3d;
}

.title-word:hover {
    color: var(--forest-green);
}

.title-word.highlight {
    color: var(--forest-green);
    background: linear-gradient(45deg, var(--forest-green), var(--accent-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word.highlight::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, var(--brick-red), var(--accent-light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.6s var(--elastic-ease);
    pointer-events: none;
}

.title-word.highlight:hover::before {
    opacity: 1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--forest-green);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0% { opacity: 1; transform: rotate(45deg); }
    50% { opacity: 0.5; transform: rotate(45deg); }
    100% { opacity: 1; transform: rotate(45deg); }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--forest-green) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.about-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text strong {
    color: var(--forest-green);
    font-weight: 600;
    position: relative;
}

/* Interests Grid in About Section */
.about-section .interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Location Banner */
.location-banner {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.location-content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(145deg, 
        rgba(45, 80, 22, 0.1), 
        rgba(45, 80, 22, 0.05));
    border: 2px solid rgba(45, 80, 22, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.8s ease;
}

.location-content:hover::before {
    left: 100%;
}

.location-icon {
    color: var(--forest-green);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    animation: locationPulse 2s ease-in-out infinite;
}

.location-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-green);
    text-shadow: 0 1px 2px rgba(45, 80, 22, 0.1);
}

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

.location-content:hover {
    border-color: rgba(45, 80, 22, 0.4);
}

/* Removed - interests moved to about section */

.interest-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.85));
    border: 1px solid rgba(160, 68, 44, 0.1);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    text-align: left;
    transition: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    aspect-ratio: 5/1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

/* Hover effects removed */

.interest-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    background: linear-gradient(135deg, 
        var(--brick-red), 
        var(--accent-light-red));
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.interest-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.interest-card:hover .interest-icon::before {
    transform: translateX(100%);
}

.interest-icon .material-icons {
    font-size: 1.1rem;
    color: white;
    z-index: 1;
    position: relative;
}

.interest-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    flex: 1;
}

/* Contact Email Styles */
.contact-email-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-email-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(45, 80, 22, 0.2);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(45, 80, 22, 0.1),
        0 4px 16px rgba(45, 80, 22, 0.05);
}

.contact-email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(45, 80, 22, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.contact-email-card:hover::before {
    left: 100%;
}

.contact-email-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(45, 80, 22, 0.2),
        0 8px 25px rgba(45, 80, 22, 0.15);
    border-color: rgba(45, 80, 22, 0.4);
}

.contact-email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        var(--brick-red), 
        var(--accent-light-red));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-email-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-email-card:hover .contact-email-icon::before {
    transform: translateX(100%);
}

.contact-email-icon .material-icons {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.contact-email-card:hover .contact-email-icon {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 
        0 8px 25px rgba(45, 80, 22, 0.3),
        0 4px 10px rgba(45, 80, 22, 0.2);
}

.contact-email-content {
    text-align: left;
}

.contact-email-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.contact-email-card:hover .contact-email-title {
    color: var(--forest-green);
}

.contact-email-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--forest-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--forest-green), 
        var(--brick-red));
    transition: width 0.3s ease;
}

.contact-email-link:hover::after {
    width: 100%;
}

.contact-email-link:hover {
    color: var(--brick-red);
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--primary-bg);
}

.contact-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Physics Toggle Switch */
.physics-toggle {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.toggle-track {
    position: relative;
    width: 420px;
    height: 70px;
    background: var(--secondary-bg);
    border-radius: 35px;
    border: 3px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s var(--smooth-ease);
}

.toggle-track:hover {
    border-color: var(--forest-green);
    box-shadow: 0 0 20px rgba(45, 80, 22, 0.2);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 204px;
    height: 58px;
    background: linear-gradient(135deg, var(--forest-green), var(--accent-light-green));
    border-radius: 29px;
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(0);
    box-shadow: 
        0 4px 20px rgba(45, 80, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.toggle-slider.right {
    transform: translateX(204px);
    background: linear-gradient(135deg, var(--brick-red), var(--accent-light-red));
    box-shadow: 
        0 4px 20px rgba(160, 68, 44, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-icon {
    font-size: 28px;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.toggle-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    pointer-events: none;
}

.toggle-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 1rem;
    transition: all 0.5s var(--smooth-ease);
    opacity: 0.6;
    overflow: hidden;
}

.toggle-label.active {
    opacity: 0;
}

.toggle-label .material-icons {
    font-size: 24px;
    transition: all 0.4s var(--smooth-ease);
}

.label-text {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.4s var(--smooth-ease);
}

.toggle-label.left {
    color: var(--forest-green);
}

.toggle-label.right {
    color: var(--brick-red);
}

/* Hover effects */
.physics-toggle:hover .toggle-slider {
    filter: brightness(1.1);
    box-shadow: 
        0 6px 25px rgba(45, 80, 22, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.physics-toggle:hover .toggle-slider.right {
    filter: brightness(1.1);
    box-shadow: 
        0 6px 25px rgba(160, 68, 44, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Physics-based animations */
@keyframes physicalBounce {
    0% { 
        transform: scale(1) translateX(var(--start-pos, 0)); 
    }
    20% { 
        transform: scale(1.08) translateX(calc(var(--end-pos, 204px) * 0.7)); 
    }
    40% { 
        transform: scale(0.95) translateX(calc(var(--end-pos, 204px) * 1.05)); 
    }
    60% { 
        transform: scale(1.02) translateX(calc(var(--end-pos, 204px) * 0.98)); 
    }
    80% { 
        transform: scale(0.99) translateX(calc(var(--end-pos, 204px) * 1.01)); 
    }
    100% { 
        transform: scale(1) translateX(var(--end-pos, 204px)); 
    }
}

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

@keyframes elasticScale {
    0% { transform: scale(1); }
    30% { transform: scale(1.1); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.toggle-slider.bouncing-right {
    animation: physicalBounce 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --start-pos: 0px;
    --end-pos: 204px;
}

.toggle-slider.bouncing-left {
    animation: physicalBounce 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --start-pos: 204px;
    --end-pos: 0px;
}

.slider-icon.flipping {
    animation: iconFlip 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toggle-track.clicked {
    animation: elasticScale 0.3s ease-out;
}

/* Physics Ripple Animation */
@keyframes physicsRipple {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Particle Burst Animation */
@keyframes burstParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0);
        opacity: 0;
    }
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.contact-mode {
    display: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-mode.active {
    display: block;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.contact-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s var(--smooth-ease);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(45, 80, 22, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s var(--smooth-ease);
    background: var(--primary-bg);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--forest-green);
}

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

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--forest-green), var(--accent-light-green));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: 
        transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.3s ease,
        background 0.3s ease;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--smooth-ease);
    pointer-events: none;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(45, 80, 22, 0.3);
}

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

.submit-btn:active {
    transform: translateY(-2px);
    transition: 
        transform 0.15s var(--smooth-ease),
        box-shadow 0.15s var(--smooth-ease);
    box-shadow: 0 6px 15px rgba(45, 80, 22, 0.4);
}

/* Question mode submit button - red color to match toggle */
#questionMode .submit-btn {
    background: linear-gradient(135deg, var(--brick-red), var(--accent-light-red));
    box-shadow: 0 6px 20px rgba(160, 68, 44, 0);
}

#questionMode .submit-btn:hover {
    box-shadow: 0 12px 24px rgba(160, 68, 44, 0.3);
}

#questionMode .submit-btn:active {
    box-shadow: 0 8px 20px rgba(160, 68, 44, 0.4);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--secondary-bg);
    text-align: center;
    border-top: 2px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1rem;
    }
    
    /* Auto-enable standard cursor on mobile */
    body {
        cursor: auto !important;
    }
    
    .mouse-follower {
        display: none !important;
    }
    
    .accessibility-menu {
        min-width: 320px;
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .menu-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-section-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .colorblind-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .colorblind-option {
        padding: 1rem;
    }
    
    .option-name {
        font-size: 0.95rem;
    }
    
    .option-description {
        font-size: 0.85rem;
    }
    
    .navbar-accessibility {
        gap: 0.25rem;
    }
    
    .navbar-accessibility .accessibility-btn {
        width: 36px;
        height: 36px;
    }
    
    /* Hide cursor toggle button on mobile */
    #navCursorToggle {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
        padding-bottom: 0.2em;
    }
    
    .title-word {
        margin: 0 0.05em;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem !important;
        padding: 0.8rem !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-toggle {
        margin-bottom: 2rem;
    }
    
    .toggle-track {
        width: 360px;
        height: 60px;
    }
    
    .toggle-slider {
        width: 174px;
        height: 48px;
    }
    
    .toggle-slider.right {
        transform: translateX(174px);
    }
    
    .label-text {
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .accessibility-btn {
        width: 40px;
        height: 40px;
    }
    
    .accessibility-btn .material-icons {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 3rem);
        padding-bottom: 0.2em;
    }
    
    .social-link {
        padding: 1.2rem 0.8rem !important;
        gap: 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon svg,
    .social-icon .material-icons {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }
    
    .toggle-track {
        width: 300px;
        height: 50px;
    }
    
    .toggle-slider {
        width: 144px;
        height: 38px;
    }
    
    .toggle-slider.right {
        transform: translateX(144px);
    }
    
    .slider-icon {
        font-size: 22px;
    }
    
    .label-text {
        font-size: 0.75rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .social-grid {
        gap: 1rem !important;
        padding: 0.5rem !important;
    }
}

/* Bardzo małe ekrany - dodatkowe poprawki dla prawdziwych urządzeń mobilnych */
@media (max-width: 360px) {
    .social-link {
        padding: 1rem 0.6rem !important;
        gap: 0.6rem !important;
        font-size: 0.8rem !important;
        border-radius: 16px !important;
    }
    
    .social-grid {
        gap: 0.8rem !important;
        padding: 0.4rem !important;
    }
    
    .social-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .social-icon svg,
    .social-icon .material-icons {
        width: 18px !important;
        height: 18px !important;
        font-size: 18px !important;
    }
    
    .container {
        padding: 0 0.8rem !important;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 2.5rem) !important;
    }
    
    .about-section .interests-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    .interest-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-email-card {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    .contact-form-container {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    .toggle-track {
        width: 280px !important;
        height: 48px !important;
    }
    
    .toggle-slider {
        width: 130px !important;
        height: 36px !important;
    }
    
    .toggle-slider.right {
        transform: translateX(140px) !important;
    }
}

/* Media query dla orientacji portrait na urządzeniach mobilnych */
@media (max-width: 768px) and (orientation: portrait) {
    .social-link {
        padding: 1.3rem 0.9rem !important;
        gap: 1rem !important;
    }
    
    .social-grid {
        gap: 1.1rem !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
}

/* Media query dla wysokich telefonów (iPhone 12, 13, 14 itp.) */
@media (max-width: 430px) and (min-height: 800px) {
    .social-link {
        padding: 1.1rem 0.7rem !important;
        gap: 0.7rem !important;
        font-size: 0.82rem !important;
    }
    
    .social-grid {
        gap: 0.9rem !important;
        padding: 0.4rem !important;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 7.5vw, 2.8rem) !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Media query dla orientacji landscape na urządzeniach mobilnych */
@media (max-height: 500px) and (orientation: landscape) {
    .social-link {
        padding: 0.8rem 0.6rem !important;
        gap: 0.5rem !important;
        font-size: 0.75rem !important;
    }
    
    .social-grid {
        gap: 0.6rem !important;
        padding: 0.3rem !important;
    }
    
    .social-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .social-icon svg,
    .social-icon .material-icons {
        width: 16px !important;
        height: 16px !important;
        font-size: 16px !important;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 6vw, 2rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .container {
        padding: 0 0.5rem !important;
    }
}

/* Szczególne poprawki dla starszych urządzeń Android */
@media (max-width: 320px) {
    .social-link {
        padding: 0.9rem 0.5rem !important;
        gap: 0.5rem !important;
        font-size: 0.75rem !important;
        border-radius: 12px !important;
    }
    
    .social-grid {
        gap: 0.6rem !important;
        padding: 0.3rem !important;
        margin: 0 !important;
    }
    
    .social-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .social-icon svg,
    .social-icon .material-icons {
        width: 16px !important;
        height: 16px !important;
        font-size: 16px !important;
    }
    
    .container {
        padding: 0 0.5rem !important;
        margin: 0 !important;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 6.5vw, 2.2rem) !important;
        padding: 0 0.5rem !important;
    }
    
    .about-section .interests-grid,
    .contact-email-card,
    .contact-form-container {
        margin: 0 0.3rem !important;
        padding: 0.8rem !important;
    }
    
    .toggle-track {
        width: 260px !important;
        height: 44px !important;
    }
    
    .toggle-slider {
        width: 120px !important;
        height: 32px !important;
    }
    
    .toggle-slider.right {
        transform: translateX(130px) !important;
    }
}

/* Animation Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .social-link::before,
    .social-link::after {
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .particle-container,
    .mouse-follower {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .floating-element:hover {
    }
}

/* Ogólne poprawki responsywności dla urządzeń mobilnych */
@media (max-width: 768px) {
    * {
        box-sizing: border-box !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Zapobieganie wylewaniu się elementów */
    .social-section,
    .about-section,
    .contact-section,
    .hero-section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Lepsze dopasowanie przycisku wsparcia */
    .social-link.support-link {
        text-align: center !important;
        word-break: break-word !important;
    }
    
    /* Poprawki dla długich tekstów */
    .social-link {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
}

/* Performance optimizations */
.social-link,
.social-icon,
.floating-element,
.mouse-follower,
.particle {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Usunięte wszystkie niepotrzebne keyframes - zostają tylko cząsteczki */

/* Floating Navbar - Glassmorphism Style */
.floating-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-100%);
        opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-navbar.visible {
    transform: translateY(0);
        opacity: 1;
    }

.floating-navbar.visible .navbar-title {
    animation: slideInLeft 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.floating-navbar.visible .navbar-accessibility {
    animation: slideInRight 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--forest-green), var(--accent-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    cursor: pointer;
}

.navbar-title::before {
    content: "Remigiusz Cetnar";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, var(--brick-red), var(--accent-light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.6s var(--elastic-ease);
    pointer-events: none;
}

.navbar-title:hover::before {
    opacity: 1;
}

.navbar-accessibility {
    display: flex;
    gap: 0.5rem;
}

.navbar-accessibility .accessibility-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-accessibility .accessibility-btn.active {
    border-radius: 50%;
    background: rgba(45, 80, 22, 0.2);
    border-color: var(--forest-green);
    box-shadow: 0 0 20px rgba(45, 80, 22, 0.3);
}

.navbar-accessibility .accessibility-btn.active .material-icons {
    color: var(--forest-green);
}

.navbar-accessibility .accessibility-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-accessibility .accessibility-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.navbar-accessibility .accessibility-btn:hover::before {
        opacity: 1;
}

.navbar-accessibility .accessibility-btn .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.navbar-accessibility .accessibility-btn:hover .material-icons {
    transform: scale(1.1);
}

/* Responsive navbar */
@media (max-width: 768px) {
    .floating-navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar-title {
        font-size: 1.2rem;
    }
    
    .navbar-accessibility .accessibility-btn {
        width: 36px;
        height: 36px;
    }
    
    .navbar-accessibility .accessibility-btn .material-icons {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .floating-navbar {
        padding: 0.5rem 1rem;
    }
    
    .navbar-title {
        font-size: 1rem;
    }
    
    .navbar-accessibility {
        gap: 0.25rem;
    }
    
    .navbar-accessibility .accessibility-btn {
        width: 32px;
        height: 32px;
    }
    
    .navbar-accessibility .accessibility-btn .material-icons {
        font-size: 16px;
    }
}

/* Content Modal Styles */
.content-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.content-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.content-modal .modal-content {
    position: relative;
    background: var(--secondary-bg);
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.content-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.content-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.content-modal .modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.content-modal .modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.content-modal .content-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.content-modal .content-type {
    background: var(--forest-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-modal .content-date,
.content-modal .content-views {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.content-modal .modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.content-modal .content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-modal .content-text {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-modal .content-text h2 {
    color: var(--forest-green);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.content-modal .content-text h3 {
    color: var(--forest-green);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.content-modal .content-text p {
    margin-bottom: 1.2rem;
}

.content-modal .content-text ul,
.content-modal .content-text ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-modal .content-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-modal .content-text strong {
    color: var(--forest-green);
    font-weight: 700;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .content-modal .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .content-modal .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .content-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .content-modal .modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 150px);
    }
    
    .content-modal .content-text {
        font-size: 1rem;
    }
    
    .content-modal .content-meta {
        gap: 0.5rem;
    }
    
    .content-modal .content-type {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Social Section */
.social-section {
    padding: var(--section-padding);
    padding-top: 6rem;
    background: var(--primary-bg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    padding: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    transition: 
        transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transform-origin: center;
    transform: translateY(0);
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
                var(--glow-color, rgba(255,255,255,0.12)) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 24px;
}

.social-link:hover::before {
    opacity: 0.4;
}

.social-link:hover {
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--glow-color, rgba(255,255,255,0.3));
    transform: translateY(-4px);
}

.social-link[data-platform="x"] {
    --glow-color: rgba(29, 161, 242, 0.15);
    --shadow-color: rgba(29, 161, 242, 0.08);
}

.social-link[data-platform="x"]:hover {
    background: linear-gradient(145deg, 
                rgba(29, 161, 242, 0.03), 
                rgba(29, 161, 242, 0.01));
    color: rgba(29, 161, 242, 0.9);
    transform: translateY(-4px);
}

.social-link[data-platform="x"]:hover svg {
    fill: rgba(29, 161, 242, 0.9);
}

.social-link[data-platform="youtube"] {
    --glow-color: rgba(255, 0, 0, 0.15);
    --shadow-color: rgba(255, 0, 0, 0.08);
}

.social-link[data-platform="youtube"]:hover {
    background: linear-gradient(145deg, 
                rgba(255, 0, 0, 0.03), 
                rgba(255, 0, 0, 0.01));
    color: rgba(255, 0, 0, 0.9);
    transform: translateY(-4px);
}

.social-link[data-platform="youtube"]:hover svg {
    fill: rgba(255, 0, 0, 0.9);
}

.social-link[data-platform="facebook"] {
    --glow-color: rgba(24, 119, 242, 0.15);
    --shadow-color: rgba(24, 119, 242, 0.08);
}

.social-link[data-platform="facebook"]:hover {
    background: linear-gradient(145deg, 
                rgba(24, 119, 242, 0.03), 
                rgba(24, 119, 242, 0.01));
    color: rgba(24, 119, 242, 0.9);
    transform: translateY(-4px);
}

.social-link[data-platform="facebook"]:hover svg {
    fill: rgba(24, 119, 242, 0.9);
}

.social-link[data-platform="instagram"] {
    --glow-color: rgba(228, 64, 95, 0.15);
    --shadow-color: rgba(228, 64, 95, 0.08);
}

.social-link[data-platform="instagram"]:hover {
    background: linear-gradient(145deg, 
                rgba(228, 64, 95, 0.03), 
                rgba(228, 64, 95, 0.01));
    color: rgba(228, 64, 95, 0.9);
    transform: translateY(-4px);
}

.social-link[data-platform="instagram"]:hover svg {
    fill: rgba(228, 64, 95, 0.9);
}

.social-link[data-platform="tiktok"] {
    --glow-color: rgba(138, 43, 226, 0.15);
    --shadow-color: rgba(138, 43, 226, 0.08);
}

.social-link[data-platform="tiktok"]:hover {
    background: linear-gradient(145deg, 
                rgba(138, 43, 226, 0.03), 
                rgba(138, 43, 226, 0.01));
    color: rgba(138, 43, 226, 0.9);
    transform: translateY(-4px);
}

.social-link[data-platform="tiktok"]:hover svg {
    fill: rgba(138, 43, 226, 0.9);
}

.social-link.support-link {
    background: linear-gradient(145deg, 
                rgba(45, 80, 22, 0.9), 
                rgba(64, 128, 32, 0.8));
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    --glow-color: #ffd700;
    --shadow-color: rgba(255, 215, 0, 0.4);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    transition: 
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}

.social-link.support-link:hover {
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    transform: translateY(-4px);
}

.social-link.support-link:hover .material-icons {
    color: #ffd700;
    transform: scale(1.1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, 
                rgba(255,255,255,0.1), 
                rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        backdrop-filter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    will-change: transform;
}

.social-link:hover .social-icon {
    transform: scale(1.1) translateY(-1px);
    background: linear-gradient(145deg, 
                rgba(255,255,255,0.2), 
                rgba(255,255,255,0.1));
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.3);
    backdrop-filter: blur(16px);
}

.social-icon svg,
.social-icon .material-icons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    transition: 
        color var(--hover-duration) var(--smooth-ease),
        fill var(--hover-duration) var(--smooth-ease),
        transform var(--hover-duration) var(--ultra-bounce);
}

/* Content Section */
.content-section {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--brick-red));
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    transition: all 0.6s var(--smooth-ease);
}

/* Desktop optimizations */
@media (min-width: 1200px) {
    .content-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Carousel styles for mobile */
@media (max-width: 768px) {
    .content-carousel {
        position: relative;
        overflow: hidden;
    }
    
    .content-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0 1rem;
        margin: 0 -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .content-grid::-webkit-scrollbar {
        display: none;
    }
    
    .content-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .content-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(to right, transparent, var(--secondary-bg));
        pointer-events: none;
        z-index: 1;
    }
    
    .carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .carousel-btn {
        background: var(--forest-green);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
    }
    
    .carousel-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
        background: var(--accent-light-green);
    }
    
    .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
    }
    
    .carousel-btn:active:not(:disabled) {
        transform: translateY(0) scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .carousel-indicators {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(45, 80, 22, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .carousel-dot.active {
        background: var(--forest-green);
        transform: scale(1.2);
    }
}

.content-item {
    background: var(--primary-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: 
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}

.content-item:hover {
    box-shadow: 0 8px 20px var(--shadow-color);
    border-color: var(--forest-green);
}

.content-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--forest-green), var(--accent-light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.content-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.content-thumbnail .material-icons {
    font-size: 3rem;
    color: white;
    z-index: 1;
}

.content-thumbnail img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 8px;
}

.content-item:hover .content-thumbnail img {
    transform: scale(1.05);
}

/* Loading state for images */
.content-thumbnail img[src=""] {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0, #f0f0f0);
    background-size: 200% 200%;
    animation: shimmer 1.5s ease-in-out infinite;
}

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

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.content-item:hover .content-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.content-overlay .material-icons {
    font-size: 1.8rem;
    color: white;
}

.content-info {
    padding: 1.5rem;
}

.content-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.content-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--forest-green);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.content-platform {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brick-red);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.show-more-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--forest-green), var(--accent-light-green));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: 
        transform 0.4s var(--bounce-spring),
        box-shadow 0.3s var(--smooth-ease),
        background 0.3s var(--smooth-ease);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0);
}

.show-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--smooth-ease);
    pointer-events: none;
}

.show-more-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(45, 80, 22, 0.3);
}

.show-more-btn:hover::before {
    opacity: 1;
}

.show-more-btn:active {
    transform: translateY(-2px);
    transition: 
        transform 0.15s var(--smooth-ease),
        box-shadow 0.15s var(--smooth-ease);
    box-shadow: 0 6px 15px rgba(45, 80, 22, 0.4);
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
    /* Location Banner Mobile */
    .location-banner {
        margin-bottom: 1.5rem;
    }
    
    .location-content {
        padding: 0.75rem 1rem;
        border-radius: 16px;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .location-text {
        font-size: 1rem;
    }
    
    .location-icon {
        font-size: 1.3rem;
    }
    
    /* Interests Section Mobile (in About) */
    .about-section .interests-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .interest-card {
        padding: 0.5rem 0.75rem;
        border-radius: 14px;
        aspect-ratio: 6/1;
        gap: 0.5rem;
    }
    
    .interest-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }
    
    .interest-icon .material-icons {
        font-size: 0.9rem;
    }
    
    .interest-title {
        font-size: 0.8rem;
    }
    
    /* Contact Email Mobile */
    .contact-email-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        border-radius: 24px;
        text-align: center;
    }
    
    .contact-email-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-email-icon .material-icons {
        font-size: 2rem;
    }
    
    .contact-email-title {
        font-size: 1.3rem;
    }
    
    .contact-email-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .location-content {
        padding: 0.5rem 0.75rem;
        border-radius: 12px;
    }
    
    .location-text {
        font-size: 0.9rem;
    }
    
    .about-section .interests-grid {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        margin-top: 1rem;
    }
    
    .interest-card {
        padding: 0.4rem 0.6rem;
        aspect-ratio: 7/1;
        gap: 0.4rem;
        border-radius: 12px;
    }
    
    .interest-icon {
        width: 24px;
        height: 24px;
        border-radius: 7px;
    }
    
    .interest-icon .material-icons {
        font-size: 0.8rem;
    }
    
    .interest-title {
        font-size: 0.75rem;
    }
    
    .contact-email-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .contact-email-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-email-icon .material-icons {
        font-size: 1.8rem;
    }
    
    .contact-email-title {
        font-size: 1.2rem;
    }
    
    .contact-email-link {
        font-size: 1rem;
    }
} 