/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #fff;
    border-bottom: 2px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

.navigation ul li a:hover {
    color: #009e4f;
}

/* Hero Section */
.hero {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background: #009e4f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #007e3a;
}

/* Formular Container */
form {
    background: #fff;
    padding: 30px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Feldsets */
fieldset {
    border: none;
    margin-bottom: 30px;
}

legend {
    font-size: 1.3rem;
    font-weight: bold;
    color: #009e4f;
    margin-bottom: 10px;
}

/* Labels und Inputs */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f4f6fb;
}

input:focus {
    outline: none;
    border-color: #009e4f;
    box-shadow: 0 0 5px rgba(0, 158, 79, 0.3);
}

/* Grid Layout für zweispaltige Felder */
.form-grid {
    display: flex;
    gap: 20px;
}

.form-grid > div {
    flex: 1;
}

/* Checkbox und Radio Buttons */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
}

/* Terms und Newsletter Verbesserungen */
.terms-box {
    background: #f4f4f4;
    padding: 20px 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-box label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    font-size: 1rem;
}

.terms-box input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Zusätzliche Buttons */
.button-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.add-person, .remove-person {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-person:hover {
    background-color: #0056b3;
}

.remove-person {
    background-color: #dc3545;
}

.remove-person:hover {
    background-color: #c82333;
}

/* Submit-Button */
.submit-button {
    background-color: #009e4f;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    background-color: #007e3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


/* Zentriertes Pop-up */
#summaryPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    font-family: Arial, sans-serif;
}

.popup-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.popup-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: white;
}

.submit-button {
    background-color: #28a745;
}

.remove-person {
    background-color: #dc3545;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}



/* section 1 */

/* Grundlegendes Styling */
.paletten-report-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Linke Seite: Bilder */
.image-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 50%;
    gap: 10px;
}

.report-image {
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: absolute;
    transition: transform 0.3s ease;
}

.image-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.image-2 {
    top: 50px;
    left: 70px;
    z-index: 2;
}

.image-3 {
    top: 100px;
    left: 140px;
    z-index: 1;
}

.report-image:hover {
    transform: scale(1.05);
}

/* Rechte Seite: Text */
.text-container {
    width: 50%;
    padding: 20px;
}

.text-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.text-container .highlight {
    color: #009e4f;
}

.text-container p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.advantages-list li::before {
    content: '✔';
    color: #009e4f;
    font-weight: bold;
    margin-right: 10px;
}


/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Timer Section */
.timer-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.timer div {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.timer small {
    display: block;
    font-size: 1rem;
    color: #009e4f;
}

.pdf-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f4a261;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pdf-button:hover {
    background-color: #e76f51;
}

/* Qualitätsversprechen */
.quality-section {
    text-align: center;
    padding: 50px 20px;
}

.quality-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quality-item {
    width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 50px;
    height: 50px;
}

.quality-item:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-5px);
}

.quality-item:hover .icon-circle {
    background-color: #fff;
}

.quality-item h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

small {
    display: block; /* Damit das Feedback unterhalb des Eingabefelds angezeigt wird */
    margin-top: 0%; /* Abstand zum Eingabefeld */
    margin-bottom: 10px;
    font-size: 12px; /* Kleinere Schriftgröße */
    color: red; /* Fehlerfarbe */
}
