/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-color: #2c3e50;
    --accent-teal: #00897b;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background: var(--primary-gradient);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 137, 123, 0.2);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 137, 123, 0.4);
    }
}

.animate-breathe {
    animation: breathe 6s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 5s infinite ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b2dfdb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #80cbc4;
}

/* Sticky Note Style for Experiences */
.sticky-note {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(var(--rotation));
}

.text-gradient {
    background: linear-gradient(90deg, #004d40, #00897b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Additional 2026 Design Enhancements */
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced Glassmorphism */
.glass-enhanced {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Prose Styling for Article Content */
.prose {
    max-width: 65ch;
}

.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* Focus States for Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #00897b;
    outline-offset: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .glass {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}