/* Базовые настройки шрифта */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Градиент для секции хобби */
.aquarium-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

/* Стили для ссылок навигации */
.nav-link {
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #2563eb; /* blue-600 */
}

/* Стили для карточек */
.feature-card {
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}

.project-card {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    background-color: white;
    transition: all 0.3s ease;
}
.project-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Бейджи технологий */
.badge-ts {
    font-family: monospace;
    font-size: 0.75rem;
    background-color: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Ссылка на GitHub */
.github-link {
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.25rem;
    transition: opacity 0.3s;
}
.github-link:hover {
    opacity: 0.7;
}

/* Контейнер изображения аквариума */
.aquarium-image-container {
    position: relative;
    backdrop-filter: blur(4px);
}

/* Анимированные пузырьки */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}
.b1 { width: 10px; height: 10px; bottom: 20px; right: 40px; }
.b2 { width: 15px; height: 15px; bottom: 40px; right: 60px; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Футер */
.footer-link {
    color: #94a3b8;
    transition: color 0.3s;
}
.footer-link:hover {
    color: white;
}