/* about.css - Premium About Page Styles for Farmy Basket */

/* Base Typography Scale */
:root {
    --about-base-size: 0.8125rem; /* ~13px */
    --about-scale: 1.25;
    --about-h1: calc(var(--about-base-size) * var(--about-scale) * var(--about-scale) * var(--about-scale));
    --about-h2: calc(var(--about-base-size) * var(--about-scale) * var(--about-scale));
    --about-h3: calc(var(--about-base-size) * var(--about-scale));
    --about-body: var(--about-base-size);
    --about-small: calc(var(--about-base-size) / var(--about-scale));
}

.about-page {
    background: var(--background);
    color: var(--text-dark);
    font-size: var(--about-body);
    line-height: 1.7;
    letter-spacing: -0.01em;
    position: relative;
    overflow-x: hidden;
}

/* ========== LOADING SEQUENCE ========== */
.loading-sequence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-sequence.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 6px;
    animation: loadingPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(45, 80, 22, 0.3));
}

.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.2);
}

/* ========== WATER BUBBLE BACKGROUND ========== */
.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(141, 181, 150, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(141, 181, 150, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.water-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
}

.bubble::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 40%;
    height: 40%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(2px);
}

.bubble-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation: floatBubble 25s linear infinite;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 85%;
    animation: floatBubble 30s linear infinite reverse;
    animation-delay: 5s;
}

.bubble-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 15%;
    animation: floatBubble 35s linear infinite;
    animation-delay: 10s;
}

.bubble-4 {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 75%;
    animation: floatBubble 28s linear infinite reverse;
    animation-delay: 15s;
}

.bubble-5 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 40%;
    animation: floatBubble 32s linear infinite;
    animation-delay: 20s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 55%;
    animation: floatBubble 40s linear infinite reverse;
    animation-delay: 25s;
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(calc(100vw - 200px), calc(-100vh + 200px)) scale(1.2);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    animation: rippleEffect 8s ease-out infinite;
}

.ripple-1 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.ripple-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 60%;
    animation-delay: 2s;
}

.ripple-3 {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ========== FLOATING PARTICLES ========== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 20s linear infinite;
    filter: blur(0.5px);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* ========== PARALLAX LAYERS ========== */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.layer-1 {
    background: radial-gradient(circle at 30% 70%, rgba(141, 181, 150, 0.03) 0%, transparent 50%);
}

.layer-2 {
    background: radial-gradient(circle at 70% 30%, rgba(45, 80, 22, 0.02) 0%, transparent 50%);
}

/* ========== TYPING INTRO SECTION ========== */
.about-intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.intro-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-prefix {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: var(--about-small);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.typed-text {
    font-family: 'Playfair Display', serif;
    font-size: calc(var(--about-h1) * 1.2);
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-color);
    min-height: 4em;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
}

.typed-text span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--accent-color);
    margin-left: 2px;
    animation: cursorBlink 1s infinite;
    vertical-align: middle;
    box-shadow: 0 0 10px var(--accent-color);
    filter: blur(0.5px);
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes cursorComplete {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

.intro-scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.intro-scroll-hint:hover {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.intro-scroll-hint span {
    font-size: var(--about-small);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ========== GLASS MORPHISM CARDS ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(45, 80, 22, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.glass-card::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.7s ease;
}

.glass-card:hover::before {
    left: 100%;
}

/* Holographic Glass Effect */
.glass-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover::after {
    opacity: 1;
    animation: holographicShimmer 3s ease-in-out infinite;
}

@keyframes holographicShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(45, 80, 22, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(45, 80, 22, 0.1);
}

/* ========== SECTION BASE STYLES ========== */
.about-section {
    padding: 8rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--about-small);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}

/* Text Gradient Animation */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: calc(var(--about-h2) * 1.3);
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b1a 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-subtitle {
    font-size: var(--about-body);
    color: var(--text-light);
    font-weight: 400;
}

/* ========== MISSION SECTION ========== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mission-card {
    padding: 3rem 2rem;
    text-align: center;
}

.mission-icon {
    font-family: 'Playfair Display', serif;
    font-size: var(--about-small);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--about-h3);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: var(--about-body);
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.9;
}

/* ========== JOURNEY SECTION ========== */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    position: relative;
    padding: 2rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: var(--about-small);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.journey-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--about-h3);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-line {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .step-line {
        display: none;
    }
}

/* ========== VALUES CHOICE SECTION ========== */
.values-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-choice {
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-choice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-choice:hover::before {
    opacity: 1;
}

.value-choice.active {
    background: rgba(45, 80, 22, 0.02);
}

.value-choice:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(45, 80, 22, 0.1),
        0 0 0 1px rgba(45, 80, 22, 0.05),
        inset 0 0 30px rgba(255, 255, 255, 0.8);
}

.choice-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.value-choice h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--about-h3);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.choice-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-choice.active .choice-content {
    max-height: 300px;
}

.choice-content p {
    font-size: var(--about-body);
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.9;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 80, 22, 0.1);
}

.choice-expand {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.value-choice.active .choice-expand {
    transform: rotate(45deg);
    opacity: 1;
}

/* ========== TEAM SECTION ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #3a6b1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.member-torch {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-torch {
    opacity: 1;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--about-h3);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    font-family: 'Inter', sans-serif;
    font-size: var(--about-small);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.member-bio {
    font-size: var(--about-body);
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

/* ========== CLOSING SECTION ========== */
.closing-section {
    padding-bottom: 12rem;
}

.closing-content {
    padding: 4rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.closing-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: calc(var(--about-h2) * 1.1);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.closing-content p {
    font-size: var(--about-body);
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.closing-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Kinesthetic Button Effect */
.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: var(--about-body);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline span {
    position: relative;
    z-index: 2;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.btn-outline:active::before {
    width: 300px;
    height: 300px;
}

.btn-text {
    display: inline-block;
    padding: 0.875rem 0;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: var(--about-body);
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== MOUSE TORCH EFFECT ========== */
.torch-light {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: multiply;
    transition: transform 0.1s ease;
    display: none;
}

/* ========== SOUND TOGGLE ========== */
.sound-toggle {
    position: fixed;
    bottom: 160px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1000;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(45, 80, 22, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(45, 80, 22, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .about-intro {
        padding: 2rem 1rem;
        min-height: 90vh;
    }
    
    .typed-text {
        font-size: calc(var(--about-h2) * 1.2);
        min-height: 6em;
    }
    
    .about-section {
        padding: 4rem 1rem;
    }
    
    .mission-grid,
    .values-choices,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .closing-content {
        padding: 2rem;
    }
    
    .closing-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-outline,
    .btn-text {
        width: 100%;
        text-align: center;
    }
    
    /* Reduce bubble intensity on mobile */
    .bubble {
        opacity: 0.2 !important;
    }
    
    .ripple {
        opacity: 0.1 !important;
    }
    
    .sound-toggle {
        bottom: 140px;
        left: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    :root {
        --about-base-size: 0.75rem;
    }
    
    .intro-prefix {
        letter-spacing: 0.2em;
    }
    
    .mission-card,
    .value-choice,
    .team-member {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: calc(var(--about-h2) * 1.1);
    }
    
    .sound-toggle {
        bottom: 120px;
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .glass-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .about-intro {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .intro-scroll-hint {
        display: none;
    }
    
    .water-bubbles,
    .particles,
    .parallax-layer,
    .sound-toggle {
        display: none;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cursor {
        animation: none;
        opacity: 1;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .water-bubbles,
    .particles {
        display: none;
    }
    
    .bubble,
    .ripple,
    .particle {
        animation: none !important;
        opacity: 0 !important;
    }
    
    .section-title {
        animation: none;
    }
    
    .loading-dot {
        animation: none;
    }
}