/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/*
    Passwortschutz und Button
*/

/* =========================================================
   GLOBAL SITE LOCK
========================================================= */

:root {
    --primary-color: var(--e-global-color-primary, #c6a35f);
}

body.dreimale-site-lock {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg,#0f172a,#0b1f3a,#123a66);
}

.dreimale-wrapper {
    background: #ffffff;
    padding: 70px 60px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
    text-align: center;
    width: 100%;
    max-width: 480px;
    opacity: 0;
    transform: translateY(15px);
    animation: dreimaleFadeIn .8s ease forwards;
}

@keyframes dreimaleFadeIn {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dreimale-logo img {
    max-width: 240px;
    margin-bottom: 40px;
}

.dreimale-wrapper input {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 16px;
}

.dreimale-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198,163,95,0.2);
}

.dreimale-wrapper button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: #A97C6A;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    transition: .3s;
}

.dreimale-wrapper button:hover {
    filter: brightness(1.08);
}

.error {
    color: #dc2626;
    margin-bottom: 15px;
}

.dreimale-footer {
    margin-top: 25px;
    font-size: 12px;
    color: #9ca3af;
}


/* =========================================================
   PREVIEW BUTTON
========================================================= */

.dreimale-preview-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #A97C6A;
    color: white!important;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: .3s;
}

.dreimale-preview-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dreimale-wrapper {

        padding: 40px 25px;
        margin: 20px;
    }

    .dreimale-logo img {

        max-width: 180px;
    }

    .dreimale-wrapper button {

        font-size: 18px;
    }

    .dreimale-preview-btn {

        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 14px;
    }
}