/* ========================================
   PANKAJ DARK MODE
======================================== */


/* ========================================
   Toggle Button
======================================== */

.pdm-dark-toggle {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 150px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;

    background: #111827;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    z-index: 999999;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.pdm-dark-toggle:hover {
    transform: translateY(-3px);
}


/* Icons */

.pdm-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    font-size: 18px;

    transition: opacity 0.3s ease;
}


/* Moon */

.pdm-moon {
    opacity: 1;
}


/* Sun */

.pdm-sun {
    opacity: 0.5;
}


/* ========================================
   DARK MODE
======================================== */

html.pdm-dark-mode {
    background: #0f1115;
}


html.pdm-dark-mode body {
    background: #0f1115;
    color: #e5e7eb;
}


/* Text */

html.pdm-dark-mode h1,
html.pdm-dark-mode h2,
html.pdm-dark-mode h3,
html.pdm-dark-mode h4,
html.pdm-dark-mode h5,
html.pdm-dark-mode h6 {
    color: #ffffff;
}


html.pdm-dark-mode p,
html.pdm-dark-mode li,
html.pdm-dark-mode span {
    color: inherit;
}


/* Links */

html.pdm-dark-mode a {
    color: #f5c253;
}


/* ========================================
   Common WordPress Containers
======================================== */

html.pdm-dark-mode .site,
html.pdm-dark-mode .site-content,
html.pdm-dark-mode .content-area,
html.pdm-dark-mode .widget-area {
    background: #0f1115;
}


/* ========================================
   Elementor
======================================== */

html.pdm-dark-mode .elementor-section,
html.pdm-dark-mode .elementor-container,
html.pdm-dark-mode .elementor-column,
html.pdm-dark-mode .elementor-widget-wrap {
    background-color: transparent;
}


/* Elementor text */

html.pdm-dark-mode .elementor-heading-title {
    color: #ffffff;
}


html.pdm-dark-mode .elementor-widget-text-editor {
    color: #d1d5db;
}


/* ========================================
   GeneratePress
======================================== */

html.pdm-dark-mode .site-header,
html.pdm-dark-mode .site-footer,
html.pdm-dark-mode .inside-header,
html.pdm-dark-mode .inside-footer {
    background: #111318;
}


html.pdm-dark-mode .main-navigation {
    background: #111318;
}


html.pdm-dark-mode .main-navigation a {
    color: #ffffff;
}


html.pdm-dark-mode .main-navigation a:hover {
    color: #f5c253;
}


/* ========================================
   Cards
======================================== */

html.pdm-dark-mode .elementor-widget-container,
html.pdm-dark-mode .wp-block-group {
    color: #e5e7eb;
}


/* ========================================
   Forms
======================================== */

html.pdm-dark-mode input,
html.pdm-dark-mode textarea,
html.pdm-dark-mode select {
    background: #1a1d23;
    color: #ffffff;
    border-color: #333842;
}


html.pdm-dark-mode input::placeholder,
html.pdm-dark-mode textarea::placeholder {
    color: #9ca3af;
}


/* ========================================
   Images
======================================== */

html.pdm-dark-mode img {
    transition: opacity 0.3s ease;
}


/* ========================================
   Toggle — Dark Active
======================================== */

html.pdm-dark-mode .pdm-dark-toggle {
    background: #f5c253;
    color: #111111;
}


html.pdm-dark-mode .pdm-moon {
    opacity: 0.4;
}


html.pdm-dark-mode .pdm-sun {
    opacity: 1;
}


/* ========================================
   Smooth Transition
======================================== */

body,
.site,
.site-header,
.site-footer,
.main-navigation,
.elementor-section,
.elementor-widget-container {
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 767px) {

    .pdm-dark-toggle {
        right: 15px;
        bottom: 15px;

        width: 135px;
        height: 46px;

        font-size: 13px;
    }

}