/*
Theme Name: Nur Amin Lebu Portfolio
Theme URI: [https://oceantechbd.com](https://oceantechbd.com)
Author: Nur Amin Lebu
Author URI: [https://oceantechbd.com](https://oceantechbd.com)
Description: A high-fidelity personal portfolio clone using Tailwind CSS and Glassmorphism.
Version: 1.0
License: GNU General Public License v2 or later
License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
Tags: one-column, portfolio, dark-mode, tailwind
*/

/* Note: Main styling is handled by Tailwind CSS (loaded in functions.php).
   This file is primarily for theme declaration.
*/




/* =========================================
   1. Base Styles
   ========================================= */
body {
    background-color: #020617; /* Slate-950 base */
    color: #e2e8f0;            /* Slate-200 text */
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* =========================================
   2. Glassmorphism Utilities
   ========================================= */
/* Main Nav Glass Effect */
.glass {
    background: rgba(17, 25, 40, 0.75); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}

/* Card Glass Effect */
.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5); /* Blue-500 with opacity */
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* =========================================
   3. Special Effects
   ========================================= */
/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #60A5FA, #34D399); /* Blue to Emerald */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Blob Animation Keyframes */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Blob Animation Classes */
.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* =========================================
   4. Custom Scrollbar
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}