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

body {
    font-family: Arial, sans-serif;
    background-color: #2C2C2C; /* Anthrazit */
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ======================================================
   Header / Markenname
====================================================== */
header {
    background-color: #0B3D2E; /* Racing Green */
    padding: 20px;
    text-align: center;
}

.brand {
    font-size: 5em;
    color: #FFFFFF;
}

/* ======================================================
   Navigation / Buttons
====================================================== */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0 0 0;
}

/* Einheitliche Buttons */
.nav-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #D4AF37; /* Gold-Rahmen */
    background: linear-gradient(135deg, #FFD700, #FFC200, #D4AF37);
    color: #2C2C2C !important;
  	font-size: 1rem; /* gleiche Schriftgröße wie Hauptseite */
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.nav-button:hover {
    opacity: 0.9;
}

/* Subdomain-Button leicht abgehoben */
.nav-button.subdomain {
    font-weight: bolder;
}

/* ======================================================
   Hero-Section
====================================================== */
.hero {
    background-color: #2C2C2C;
    text-align: center;
    padding: 100px 20px;
}

.hero-title {
    font-size: 5em;
    background: linear-gradient(135deg, #FFD700, #FFC200, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  	text-align: center;
    margin-top: 50px;  
  	background-size: 400% 400%;
    animation: shimmer 5s ease infinite;
}

/* Shimmer-Animation */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ======================================================
   Content-Bereich
====================================================== */
.content {
    text-align: center;
    padding: 50px 20px;
    border-top: 4px solid #0B3D2E; /* grüner Balken */
    border-bottom: 4px solid #0B3D2E; /* grüner Balken */
}

/* ======================================================
   Actions / Kontakt-Button
====================================================== */
.actions {
    text-align: center;
    padding: 50px 20px;
}

.actions .nav-button.highlight {
    background: linear-gradient(135deg, #FFD700, #FFC200, #D4AF37);
    color: #2C2C2C !important;
    margin-top: 20px;
}

/* ======================================================
   Footer
====================================================== */
footer {
    background-color: #0B3D2E;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.corporation-symbol {
    font-size: 1.2em;
    display: block;
    margin-top: 5px;
}


/* ===================================================
Formular allgemein
=================================================== */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFD700; /* Gold für Labels */
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: 2px solid #D4AF37;
    resize: vertical; /* nur vertikal skalierbar */
    width: 100%;
    box-sizing: border-box;
}

.contact-form .form-group.full-width {
    flex: 1 1 100%; /* volle Breite */
}

.contact-form textarea {
    min-height: 250px; /* deutlich höher für lange Nachrichten */
}