/*
|--------------------------------------------------------------------------
| WolfConnect Theme v1.0
| Mr. Wolf Nigeria Limited
|--------------------------------------------------------------------------
*/

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

/*
|--------------------------------------------------------------------------
| Root Variables
|--------------------------------------------------------------------------
*/

:root{

    /* Brand Colors */

    --wolf-black:#0B0B0B;
    --wolf-dark:#151515;
    --wolf-charcoal:#1E1E1E;

    --wolf-gold:#D4AF37;
    --wolf-gold-light:#F5D76E;
    --wolf-gold-dark:#B8860B;

    --wolf-silver:#C0C0C0;

    --wolf-white:#FFFFFF;
    --wolf-light:#F8F9FA;

    --wolf-success:#198754;
    --wolf-danger:#DC3545;
    --wolf-warning:#FFC107;
    --wolf-info:#0DCAF0;

    /* Layout */

    --sidebar-width:280px;
    --topbar-height:75px;

    /* Shadows */

    --wolf-shadow-sm:
    0 2px 8px rgba(0,0,0,.08);

    --wolf-shadow:
    0 8px 24px rgba(0,0,0,.10);

    --wolf-shadow-lg:
    0 15px 40px rgba(0,0,0,.15);

    /* Radius */

    --wolf-radius:15px;
    --wolf-radius-lg:20px;

}

/*
|--------------------------------------------------------------------------
| Global
|--------------------------------------------------------------------------
*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--wolf-light);

    color:#333;

    min-height:100vh;

    overflow-x:hidden;

}

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Poppins',sans-serif;

    font-weight:700;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
*/

.portal-wrapper{

    display:flex;

    min-height:100vh;

}

.portal-content{

    flex:1;

    min-width:0;

}

.page-content{

    padding:25px;

}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.wolf-btn{

    background:var(--wolf-gold);

    color:#000;

    border:none;

    border-radius:12px;

    font-weight:600;

    padding:12px 22px;

    transition:.3s;

}

.wolf-btn:hover{

    background:var(--wolf-gold-light);

    color:#000;

    transform:translateY(-2px);

}

.wolf-btn-dark{

    background:var(--wolf-black);

    color:#fff;

    border:none;

}

.wolf-btn-dark:hover{

    background:var(--wolf-charcoal);

    color:#fff;

}

/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/

.wolf-card{

    border:none;

    border-radius:var(--wolf-radius-lg);

    box-shadow:var(--wolf-shadow);

    background:#fff;

}

.wolf-card .card-header{

    background:#fff;

    border-bottom:1px solid #eee;

    border-radius:var(--wolf-radius-lg) var(--wolf-radius-lg) 0 0;

}

/*
|--------------------------------------------------------------------------
| Dashboard Cards
|--------------------------------------------------------------------------
*/

.stat-card{

    border:none;

    border-radius:18px;

    color:#fff;

    overflow:hidden;

    position:relative;

}

.stat-card .card-body{

    padding:20px;

}

.stat-card h2,
.stat-card h3{

    margin:0;

    font-weight:800;

}

.stat-card small{

    opacity:.9;

}

/*
|--------------------------------------------------------------------------
| Welcome Banner
|--------------------------------------------------------------------------
*/

.welcome-banner{

    background:
    linear-gradient(
        135deg,
        var(--wolf-black),
        var(--wolf-charcoal)
    );

    color:#fff;

    border-radius:25px;

    padding:35px;

    position:relative;

    overflow:hidden;

}

.welcome-banner::after{

    content:'';

    position:absolute;

    top:-80px;

    right:-80px;

    width:250px;

    height:250px;

    background:
    radial-gradient(
        var(--wolf-gold),
        transparent
    );

    opacity:.15;

}

/*
|--------------------------------------------------------------------------
| Profile Avatar
|--------------------------------------------------------------------------
*/

.profile-avatar{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid var(--wolf-gold);

}

/*
|--------------------------------------------------------------------------
| Badges
|--------------------------------------------------------------------------
*/

.wolf-badge{

    background:var(--wolf-gold);

    color:#000;

    font-weight:600;

    padding:8px 12px;

    border-radius:30px;

}

/*
|--------------------------------------------------------------------------
| Tables
|--------------------------------------------------------------------------
*/

.table{

    vertical-align:middle;

}

.table thead{

    background:var(--wolf-black);

    color:#fff;

}

.table thead th{

    border:none;

}

.table-hover tbody tr:hover{

    background:#fff8dc;

}

/*
|--------------------------------------------------------------------------
| Forms
|--------------------------------------------------------------------------
*/

.form-control,
.form-select{

    border-radius:12px;

    min-height:50px;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--wolf-gold);

    box-shadow:
    0 0 0 .2rem
    rgba(212,175,55,.25);

}

/*
|--------------------------------------------------------------------------
| Alerts
|--------------------------------------------------------------------------
*/

.alert{

    border:none;

    border-radius:15px;

}

/*
|--------------------------------------------------------------------------
| Quote Card
|--------------------------------------------------------------------------
*/

.quote-card{

    background:
    linear-gradient(
        135deg,
        var(--wolf-black),
        var(--wolf-charcoal)
    );

    color:#fff;

    border-radius:20px;

    padding:25px;

}

.quote-card i{

    color:var(--wolf-gold);

    font-size:30px;

}

/*
|--------------------------------------------------------------------------
| Announcement Card
|--------------------------------------------------------------------------
*/

.announcement-card{

    border-left:4px solid
    var(--wolf-gold);

}

/*
|--------------------------------------------------------------------------
| Scrollbar
|--------------------------------------------------------------------------
*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:var(--wolf-gold);

    border-radius:10px;

}

/*
|--------------------------------------------------------------------------
| Utilities
|--------------------------------------------------------------------------
*/

.text-gold{

    color:var(--wolf-gold)!important;

}

.bg-gold{

    background:var(--wolf-gold)!important;

}

.bg-black{

    background:var(--wolf-black)!important;

}

.border-gold{

    border-color:var(--wolf-gold)!important;

}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .page-content{

        padding:15px;

    }

    .welcome-banner{

        padding:25px;

    }

}