@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root{
    --gold:#d4af37;
    --gold-light:#f4d77d;
    --bg:#050505;
    --panel:rgba(0,0,0,.65);
    --text:#f5f5f5;
    --border:rgba(212,175,55,.15);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
input{
    width: 100%;
    padding: 5px 10px;
}
select{
    width: 199%;
    height: 50px;
}
text-area{
    width: 100%;
    height: auto;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.90)
    ),
    url('/files/Nightheaven/img/background.jpg');

    background-size:cover;
    background-position:center center;
    background-attachment:fixed;

    color:var(--text);

    font-family:'Cormorant Garamond',serif;
    font-size:22px;

    min-height:100vh;
}

/* ==========================
CONTAO
========================== */

.invisible,
#skipNavigation1,
#skipNavigation2,
#skipNavigation3,
#skipNavigation4{
    display:none !important;
}

cto-toolbar{
    display:none !important;
}

/* ==========================
LAYOUT
========================== */

#wrapper{
    width:100%;
}

#container{
    width:100%;
}

#main{
    width:100%;
}

#main .inside{
    width:min(1400px,95%);
    margin:auto;
    padding:60px 0;
}

/* ==========================
HEADER LOGO
========================== */

.mod_randomImage{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 20px;
}

.mod_randomImage figure{
    margin:0;
}

.mod_randomImage img{
    max-width:900px;
    width:100%;
    height:auto;

    filter:
    drop-shadow(0 0 15px rgba(212,175,55,.25))
    drop-shadow(0 0 40px rgba(212,175,55,.15));
}

/* ==========================
MENU
========================== */

.main-menu{

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(12px);

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);

    position:sticky;
    top:0;

    z-index:9999;
}

.main-menu ul{

    list-style:none;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    padding:25px;
}

.main-menu li{
    position:relative;
}

.main-menu a,
.main-menu strong{

    color:#fff;

    text-decoration:none;

    font-family:'Cinzel',serif;

    text-transform:uppercase;

    letter-spacing:3px;

    transition:.3s;
}

.main-menu a:hover,
.main-menu .active{
    color:var(--gold);
}

.main-menu li::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.3s;
}

.main-menu li:hover::after{
    width:100%;
}

/* ==========================
HAMBURGER
========================== */

#trigger{

    display:none;

    position:fixed;

    top:20px;
    right:20px;

    z-index:10000;

    cursor:pointer;
}

#trigger img{
    width:50px;
}

/* ==========================
ARTIKEL
========================== */

.mod_article{

    background:var(--panel);

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px;

    backdrop-filter:blur(10px);

    box-shadow:
    0 0 30px rgba(0,0,0,.5);
}

/* ==========================
MITGLIEDER FLEXBOX
========================== */

#article-1{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;
}

#article-1::before{

    content:"MITGLIEDER";

    width:100%;

    text-align:center;

    color:var(--gold);

    font-family:'Cinzel',serif;

    font-size:4rem;

    letter-spacing:10px;

    margin-bottom:20px;
}

#article-1 .content-text{

    flex:1 1 250px;

    max-width:300px;

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.4s;
}

#article-1 .content-text:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

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

#article-1 img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

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

    margin:0 auto 20px;
}
/* ==========================
KONTAKTFORMULAR
========================== */

.ce_form{
    max-width:900px;
    margin:0 auto;
}

.ce_form .formbody{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.ce_form .widget{
    width:100%;
}

.ce_form label{
    display:block;
    margin-bottom:10px;

    color:var(--gold);

    font-family:'Cinzel',serif;

    letter-spacing:1px;
}

.ce_form input,
.ce_form select,
.ce_form textarea{

    width:100%;

    padding:16px 20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(212,175,55,.25);

    border-radius:15px;

    color:#fff;

    font-size:20px;

    font-family:'Cormorant Garamond',serif;

    transition:.3s;
}

.ce_form select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 20px center;
    background-size:16px;

    padding-right:50px;
}

.ce_form textarea{

    min-height:220px;

    resize:vertical;
}

.ce_form input:focus,
.ce_form select:focus,
.ce_form textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:
    0 0 20px rgba(212,175,55,.25);

    background:rgba(255,255,255,.06);
}

.ce_form option{
    background:#111;
    color:#fff;
}

.ce_form .widget-submit{
    text-align:center;
}

.ce_form button.submit{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#000;

    border:none;

    border-radius:15px;

    padding:18px 50px;

    font-size:20px;

    font-family:'Cinzel',serif;

    font-weight:700;

    letter-spacing:2px;

    cursor:pointer;

    transition:.3s;
}

.ce_form button.submit:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 25px rgba(212,175,55,.35),
    0 0 50px rgba(212,175,55,.15);
}

.ce_form button.submit:active{
    transform:translateY(0);
}

.ce_form .mandatory{
    color:var(--gold-light);
}

.ce_form input::placeholder,
.ce_form textarea::placeholder{
    color:rgba(255,255,255,.5);
}

#article-1 h2{

    color:var(--gold);

    font-family:'Cinzel',serif;

    margin-bottom:10px;
}

#article-1 p{
    color:#f0f0f0;
}

/* ==========================
TABELLEN
========================== */

.rte table{

    width:100%;

    border-collapse:collapse;
}

.rte td{

    padding:20px;

    border:1px solid var(--border);
}

.rte tr:hover{
    background:rgba(212,175,55,.05);
}

/* ==========================
TEXT
========================== */

.rte{

    line-height:1.8;
}

.rte h1,
.rte h2,
.rte h3{

    color:var(--gold);

    font-family:'Cinzel',serif;

    margin-bottom:15px;
}

.rte p{
    margin-bottom:15px;
}

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

a{
    color:var(--gold);
}

a:hover{
    color:var(--gold-light);
}

/* ==========================
BILDER
========================== */

img{
    max-width:100%;
    height:auto;
}

/* ==========================
SCROLLBAR
========================== */

::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

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

@media(max-width:900px){

    #trigger{
        display:block;
    }

    .main-menu{
        display:none;
    }

    .main-menu.show{
        display:block;
    }

    .main-menu ul{

        flex-direction:column;

        gap:20px;
    }

    #article-1{

        flex-direction:column;

        align-items:center;
    }

    #article-1::before{

        font-size:2.5rem;

        letter-spacing:4px;
    }

    #article-1 .content-text{

        width:100%;

        max-width:450px;
    }

    .mod_article{
        padding:20px;
    }
}

