/* custom.css - Frédéric Thizy Professional Theme */

:root {
    --purple-brand: #611a64;
    --pink-brand: #b80e7d;
    --dark-bg: #0f0c1b;
    --dark-card: #171424;
    --purple-glow: rgba(97, 26, 100, 0.4);
    --pink-glow: rgba(184, 14, 125, 0.3);
}

body {
    background-color: var(--dark-bg);
    color: #e0e0e8;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Card custom styles */
.card-brand {
    background-color: var(--dark-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-brand:hover {
    transform: translateY(-4px);
    border-color: var(--pink-brand) !important;
    box-shadow: 0 8px 24px var(--purple-glow);
}

/* Accent Buttons */
.btn-brand-primary {
    background-color: var(--purple-brand);
    color: white !important;
    border: 1px solid var(--purple-brand);
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-brand-primary:hover {
    background-color: var(--pink-brand);
    border-color: var(--pink-brand);
    box-shadow: 0 0 15px var(--pink-glow);
    transform: translateY(-2px);
}

.btn-brand-secondary {
    background-color: transparent;
    color: #e0e0e8 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-brand-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Navigation bar */
.navbar-brand-custom {
    background-color: rgba(15, 12, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link-custom {
    color: #b2b2ca !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: #ffffff !important;
    border-bottom-color: var(--pink-brand);
}

/* Sections padding & styling */
.section-padding {
    padding: 30px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
}

.section-title {
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-brand), var(--pink-brand));
    border-radius: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, #ff9ebb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pre elements styling for config files */
pre {
    background-color: #0b0914 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: #e0e0ff;
    font-family: 'Courier New', Courier, monospace;
}

/* Footer styling */
footer {
    background-color: #07050e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom styling for the kebab dropdown menu */
.dropdown-menu-brand {
    background-color: var(--dark-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px var(--purple-glow) !important;
}

.dropdown-menu-brand .dropdown-item {
    color: #b2b2ca !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu-brand .dropdown-item:hover,
.dropdown-menu-brand .dropdown-item:focus {
    background-color: rgba(184, 14, 125, 0.15) !important;
    color: #ffffff !important;
}

.dropdown-menu-brand .dropdown-item i {
    color: var(--pink-brand);
}

.dropdown-menu-brand .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}