/* XEYAVO Custom Premium Dark CSS Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a0c;
    --bg-darker: #050506;
    --bg-card: #121215;
    --bg-card-hover: #17171c;
    
    /* Brand Accent Colors */
    --accent-cyan: #00d2ff;
    --accent-cyan-rgb: 0, 210, 255;
    --accent-orange: #ff9e00;
    --accent-orange-rgb: 255, 158, 0;
    --accent-purple: #a855f7;
    --accent-purple-rgb: 168, 85, 247;
    
    /* Typography */
    --text-light: #ffffff;
    --text-silver: #d1d5db;
    --text-muted: #9ca3af;
    
    /* Effects & Glass */
    --glass-bg: rgba(10, 10, 12, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f1f24;
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-silver);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.7;
}

/* Glassmorphism Navigation Bar */
.navbar-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    z-index: 1000;
}
.navbar-glass.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(5, 5, 6, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.navbar-brand-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-orange) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-link-custom {
    color: var(--text-silver) !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--text-light) !important;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}
.nav-link-custom:hover::after, .nav-link-custom.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Custom Buttons */
.btn-xeyavo {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn-xeyavo-cyan {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #008eb4 100%);
    color: var(--bg-darker);
}
.btn-xeyavo-cyan:hover {
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}
.btn-xeyavo-orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d85c00 100%);
    color: var(--text-light);
}
.btn-xeyavo-orange:hover {
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
}
.btn-xeyavo-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-xeyavo-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--text-light);
    background: rgba(0, 210, 255, 0.05);
    transform: translateY(-3px);
}

/* Animated Hero Background Orbs */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 100px;
}
.hero-orbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}
.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: -10%;
    left: 10%;
    animation: moveOrb1 20s infinite alternate ease-in-out;
}
.hero-orb-2 {
    width: 450px;
    height: 450px;
    background: var(--accent-orange);
    bottom: 10%;
    right: 5%;
    animation: moveOrb2 25s infinite alternate ease-in-out;
}
.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-purple);
    top: 40%;
    left: 50%;
    animation: moveOrb3 22s infinite alternate ease-in-out;
}
@keyframes moveOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.2); }
}
@keyframes moveOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-150px, -100px) scale(1.3); }
}
@keyframes moveOrb3 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-80px, 80px) scale(0.9); }
}

/* Premium Glow Cards */
.glow-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 2;
}
.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
.glow-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.12);
}
.glow-card:hover::before {
    opacity: 1;
}

/* Image Zoom Effect */
.zoom-img-container {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.zoom-img-container img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.glow-card:hover .zoom-img-container img {
    transform: scale(1.08);
}

/* Scroll Revelations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-visible {
    opacity: 1;
    transform: translate(0) !important;
}

/* Portfolio Filters */
.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-silver);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, rgba(var(--accent-cyan-rgb), 0.1) 0%, rgba(var(--accent-orange-rgb), 0.1) 100%);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Section Header Style */
.section-tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

/* Stat Counters */
.stat-box {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-box:last-child {
    border-right: none;
}
@media (max-width: 767.98px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .stat-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Floating Form Controls */
.form-control-custom {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-light) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    transition: var(--transition-smooth) !important;
}
.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15) !important;
    outline: none !important;
}
.form-label-custom {
    color: var(--text-muted);
}

/* AdSense Placeholders */
.adsense-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.adsense-placeholder::before {
    content: 'ADVERTISEMENT';
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 6px;
    left: 10px;
}
.adsense-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Section */
.footer-xeyavo {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 80px;
    padding-bottom: 30px;
}
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 4px 0;
}
.footer-link:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-silver);
    transition: var(--transition-smooth);
    text-decoration: none;
}
.social-icon:hover {
    background: var(--accent-cyan);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

/* Admin Panel Layout */
.admin-card {
    background: rgba(18, 18, 21, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.table-dark-custom {
    background-color: transparent !important;
}
.table-dark-custom th {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-light) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08) !important;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.table-dark-custom td {
    background-color: transparent !important;
    color: var(--text-silver) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    vertical-align: middle;
}
.table-dark-custom tr:hover td {
    background-color: rgba(255, 255, 255, 0.01) !important;
}
.thumbnail-preview {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
