/* ============================================================
   styles.css — Marketing Specialist Portfolio
   Tailwind konfiqurasiyası + Custom CSS + Animasiyalar
   ============================================================ */

/* --- Tailwind Configuration --- */
/* Bu konfiqurasiya tailwind.config obyektinə CDN vasitəsilə ötürülür.
   Layihə CDN-siz qurularsa, bu dəyərlər tailwind.config.js-ə keçirilməlidir. */

/* --- Base Styles --- */
body {
    background-color: #0F0F10;
    color: #F4F4F5;
    -webkit-font-smoothing: antialiased;
}

/* --- Material Symbols --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* --- Glass Card Effect --- */
.glass-card {
    background: rgba(35, 35, 38, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 244, 245, 0.1);
}

/* --- Custom Cursor --- */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid #F4F4F5;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, background-color 0.2s ease;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0F0F10;
}
::-webkit-scrollbar-thumb {
    background: #35353A;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #45474B;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Floating Card Animations --- */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float-slow {
    animation: float-slow 3s ease-in-out infinite;
}

/* --- Pulse Dot --- */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- Hover Card Lift --- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- Gradient Text (ehtiyat üçün) --- */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #C6C6CB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Active Nav Link --- */
.nav-link.active {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 4px;
}

/* --- Form Focus States --- */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: rgba(244, 244, 245, 0.5);
    box-shadow: 0 0 0 3px rgba(244, 244, 245, 0.05);
}

/* --- Responsive helpers --- */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* --- Loading skeleton (ehtiyat) --- */
.skeleton {
    background: linear-gradient(90deg, #201F1F 25%, #2A2A2A 50%, #201F1F 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Toast notification (ehtiyat) --- */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    background: #201F1F;
    border: 1px solid rgba(244, 244, 245, 0.1);
    color: #E5E2E1;
    z-index: 9998;
    animation: toast-in 0.3s ease;
}
@keyframes toast-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
