
/* ===========================================================
   Berliner Grubenreinigung
   style.css
   =========================================================== */

/* ---------- Grundeinstellungen ---------- */

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

body{

    font-family:Arial, Helvetica, sans-serif;

    background-image:url("bilder/lkw.jpg");
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    background-attachment:fixed;

    color:white;

}

/* halbtransparenter Hintergrund */

.overlay{

    width:100%;
    min-height:100vh;

    background:rgba(0,0,0,0.55);

    padding:30px;

}

/* ---------- Überschriften ---------- */

h1{

    text-align:center;

    font-size:48px;

    margin-bottom:15px;

}

h2{

    text-align:center;

    margin-bottom:25px;

}

h3{

    margin-bottom:15px;

}

/* ---------- Fließtext ---------- */

p{

    line-height:1.6;

    font-size:20px;

    text-align:center;

    margin-bottom:25px;

}

/* ---------- Buttons ---------- */

.button{

    display:inline-block;

    padding:15px 35px;

    background:#0059b3;

    color:white;

    text-decoration:none;

    border-radius:8px;

    font-size:20px;

    transition:0.3s;

}

.button:hover{

    background:#0080ff;

}

/* ---------- Links ---------- */

a{

    color:white;

    text-decoration:none;

}

a:hover{

    text-decoration:underline;

}

/* ---------- Footer ---------- */

footer{

    margin-top:50px;

    text-align:center;

    font-size:14px;

}

/* ===========================================================
   Kontaktformular
   =========================================================== */

form{

    width:800px;

    max-width:95%;

    margin:auto;

    background:rgba(255,255,255,0.90);

    color:black;

    padding:30px;

    border-radius:12px;

}

label{

    display:block;

    margin-top:15px;

    font-weight:bold;

}

input,
textarea,
select{

    width:100%;

    padding:10px;

    margin-top:5px;

    border:1px solid #999;

    border-radius:5px;

    font-size:16px;

}

textarea{

    resize:vertical;

    min-height:150px;

}

input[type=submit]{

    background:#0059b3;

    color:white;

    border:none;

    margin-top:25px;

    cursor:pointer;

}

input[type=submit]:hover{

    background:#0080ff;

}

/* ===========================================================
   Adminbereich
   =========================================================== */

.admin{

    width:1200px;

    max-width:98%;

    margin:30px auto;

    background:white;

    color:black;

    padding:25px;

    border-radius:12px;

}

/* ---------- Menü ---------- */

.menue{

    width:100%;

    border-collapse:separate;

    border-spacing:15px;

}

.menue td{

    width:33%;

    text-align:center;

    background:#f3f3f3;

    padding:25px;

    border-radius:10px;

    font-size:20px;

    transition:0.3s;

}

.menue td:hover{

    background:#dcecff;

}

.menue a{

    color:black;

    text-decoration:none;

    display:block;

}

/* ---------- Tabellen ---------- */

table{

    width:100%;

    border-collapse:collapse;

}

th{

    background:#0059b3;

    color:white;

    padding:10px;

}

td{

    padding:10px;

    border-bottom:1px solid #cccccc;

}

tr:nth-child(even){

    background:#f6f6f6;

}
/* ---------- Link Farben ---------- */

.Datenschutzerklaerung {

    color:#8B4513;

    font-weight:bold;

    text-decoration:underline;

}

.Datenschutzerklaerung:hover {

    color:#A0522D;

}
/* ---------- Radio Button im Kontaktformular ---------- */
.anrede-gruppe {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.anrede-gruppe label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-weight: normal;
}

.anrede-gruppe input[type="radio"] {
    margin: 0;
}

/* ---------- Statusfarben ---------- */

.status-neu{

    color:red;

    font-weight:bold;

}

.status-bearbeitung{

    color:orange;

    font-weight:bold;

}

.status-erledigt{

    color:green;

    font-weight:bold;

}

.status-archiv{

    color:gray;

}

/* ---------- Meldungsboxen ---------- */

.info{

    background:#d8ecff;

    border-left:6px solid #0059b3;

    padding:15px;

    margin:20px 0;

}

.erfolg{

    background:#ddffdd;

    border-left:6px solid green;

    padding:15px;

    margin:20px 0;

}

.fehler{

    background:#ffdcdc;

    border-left:6px solid red;

    padding:15px;

    margin:20px 0;

}

/* ---------- Responsive ---------- */

@media screen and (max-width:900px){

    h1{

        font-size:32px;

    }

    p{

        font-size:18px;

    }

    .menue,
    .menue tr,
    .menue td{

        display:block;

        width:100%;

    }

    form{

        width:100%;

    }

}


