/*
Theme Name: Moriom Portfolio
Theme URI: https://linkedin.com/in/moriom-akter-mou
Author: Moriom Akter Mou
Description: A professional dark-themed portfolio for Admin & Technical Support Professionals, based on the Rakibuzzaman design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moriom-portfolio
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #171717;
    --bg-accent: #1e1e1e;
    --primary: #f97316; /* Orange 500 */
    --text-main: #ffffff;
    --text-sub: #a3a3a3;
    --border: #262626;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.hover-slide {
    transition: transform 0.3s ease, background-color 0.3s ease !important;
}

.hover-slide:hover {
    transform: translateX(10px) !important;
    background-color: rgba(249, 115, 22, 0.05) !important;
    border-color: rgba(249, 115, 22, 0.2) !important;
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-sub);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary { 
    background-color: var(--primary) !important; 
    border-color: var(--primary) !important;
    color: #000 !important;
}

.text-muted {
    color: var(--text-sub) !important;
}

/* Sections */
.bg-light {
    background-color: var(--bg-accent) !important;
}

.hero-section {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
}

.ls-wide {
    letter-spacing: 0.1em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 30s linear infinite;
}

.hero-img-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 50%;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    background: var(--bg-accent);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 3;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 5px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-dot {
    position: absolute;
    left: 0.75rem;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}
