/**
 * Dot Resources - General Styles
 *
 * Header, Footer, Main content, and general layout styles
 *
 * @package Dot_Resources
 */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    color: #270648;
}

nav,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
}


/* ========================================
   Header Styles
   ======================================== */
.site-header {
    background: #270648;
    padding: 18px 32px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 10px;
    margin: 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-logo img {
    max-height: 32px;
    width: auto;
    display: block;
}

/* ========================================
   Main Content
   ======================================== */
.site-main {
    min-height: calc(100vh - 200px);
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background: #0d0d0d;
    border-top: 1px solid #8b5cf6;
    padding: 32px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.footer-content a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-content a:hover {
    color: #ffffff;
}

.footer-content .copyright {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 48px;
    }
}

/* ========================================
   Login Page (No Header/Footer)
   ======================================== */
body.drp-login-page {
    margin: 0;
    padding: 0;
}

body.drp-login-page .site-header,
body.drp-login-page .site-footer {
    display: none;
}