/* ==========================================
   YOUR EXODUS DASHBOARD
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Georgia,"Times New Roman",Garamond,serif;

    background:#0e0f12;

    color:#e5e7eb;

    display:flex;

    min-height:100vh;

}

/* ==========================================
   SIDEBAR
========================================== */

.sidebar{

    width:280px;

    background:#17181c;

    border-right:1px solid #2a2a30;

    position:fixed;

    left:0;

    top:0;

    bottom:0;

    padding:35px 25px;

}

.logo{

    margin-bottom:45px;

}

.logo h2{

    color:white;

    letter-spacing:2px;

    font-weight:normal;

    text-transform:uppercase;

    margin-bottom:10px;

}

.logo p{

    color:#9ca3af;

    font-size:14px;

    font-style:italic;

}

/* ==========================================
   SIDEBAR LINKS
========================================== */

.sidebar nav{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.sidebar nav a{

    color:#cbd5e1;

    text-decoration:none;

    padding:14px 16px;

    border-radius:6px;

    transition:.3s;

}

.sidebar nav a:hover{

    background:#b08b41;

    color:white;

}

.sidebar nav a.active{

    background:#b08b41;

    color:white;

}

/* ==========================================
   MAIN CONTENT
========================================== */

.main{

    margin-left:280px;

    width:calc(100% - 280px);

    padding:45px;

}

header{

    margin-bottom:40px;

}

header h1{

    font-size:42px;

    font-weight:normal;

    color:white;

}

header p{

    margin-top:10px;

    color:#cbd5e1;

    font-size:18px;

}

/* ==========================================
   SECTION TITLES
========================================== */

section{

    margin-bottom:50px;

}

section h2{

    margin-bottom:20px;

    color:white;

    border-bottom:1px solid #2a2a30;

    padding-bottom:10px;

    font-weight:normal;

}

/* ==========================================
   SCRIPTURE CARD
========================================== */

.scripture{

    background:rgba(26,26,30,.85);

    border:1px solid #2a2a30;

    border-left:5px solid #b08b41;

    padding:35px;

    border-radius:8px;

}

.scripture blockquote{

    font-size:22px;

    color:#f3f4f6;

    line-height:1.8;

    font-style:italic;

}

/* ==========================================
   QUICK ACTION CARDS
========================================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.card{

    background:rgba(26,26,30,.85);

    border:1px solid #2a2a30;

    border-radius:10px;

    padding:30px;

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#b08b41;

    box-shadow:0 20px 45px rgba(176,139,65,.20);

}

.card h3{

    margin-bottom:18px;

    color:white;

}

.card p{

    color:#cbd5e1;

    line-height:1.7;

    margin-bottom:25px;

}

.card a{

    color:#b08b41;

    text-decoration:none;

    font-weight:bold;

}

.card a:hover{

    color:white;

}

/* ==========================================
   RECENT ACTIVITY
========================================== */

.activity{

    display:grid;

    gap:18px;

}

.activity div{

    background:rgba(26,26,30,.85);

    border:1px solid #2a2a30;

    border-radius:8px;

    padding:22px;

}

.activity strong{

    color:white;

    display:block;

    margin-bottom:8px;

}

/* ==========================================
   STATISTICS
========================================== */

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

}

.stat{

    background:rgba(26,26,30,.85);

    border:1px solid #2a2a30;

    border-radius:10px;

    padding:30px;

    text-align:center;

}

.stat h3{

    color:#b08b41;

    font-size:40px;

    margin-bottom:10px;

}

.stat p{

    color:#cbd5e1;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:900px){

    .sidebar{

        position:relative;

        width:100%;

        height:auto;

    }

    .main{

        margin-left:0;

        width:100%;

        padding:25px;

    }

    body{

        display:block;

    }

}