/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: #0A0A0A;
    color: white;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Leichtes Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Kontakt oben links */
.contact {
    position: absolute;
    top: 30px;
    left: 30px;
    text-align: left;
}

.contact p {
    font-size: 18px;
}

.underline {
    width: 50px;
    height: 4px;
    background: #372F7C;
    margin-top: 5px;
}

/* Logo oben Mitte */
.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 200px;
}

/* Navigation oben rechts */
.nav {
    position: absolute;
    top: 30px;
    right: 30px;
}

.nav a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
}

/* Hover-Effekt für Navigation */
.nav a:hover {
    text-decoration: underline;
}

/* Hero Text */
.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.underline.large {
    width: 120px;
    height: 5px;
    background: #372F7C;
    margin: 10px auto 0;
}

/* Social Icons rechts */
.social {
    position: absolute;
    right: 30px;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social img {
    width: 35px;
}

/* REFERENZEN ABSCHNITT */
.referenzen {
    background-color: rgb(0, 0, 0);
    padding: 100px 10%;
}

/* Überschrift */
.referenzen h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* CEO Box alleine */
.referenzen-ceo {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

/* Team-Container */
.referenzen-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Einzelne Referenz-Box */
.referenz {
    background-color: #222;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover-Effekt */
.referenz:hover {
    transform: translateY(-5px);
}

/* Profilbilder (Kein Rand) */
.referenz img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.referenz h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Job Titel */
.referenz .position {
    font-size: 18px;
    font-weight: bold;
    color: #aaa;
    margin-top: 5px;
}

/* === "UNSERE IDEE" ABSCHNITT === */
.idee-section {
    text-align: center;
    padding: 80px 10%;
    background-color: #0A0A0A;
    color: white;
}

/* Überschrift */
.idee-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Beschreibung */
.idee-section p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
}

/* === GRID-Layout für die Boxen === */
.idee-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid für die unteren 3 Boxen */
.idee-container-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 20px auto 0;
}

/* === Styling der Boxen === */
.idee-box {
    background-color: #181818;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* 💥 Breitere Boxen für obere Reihe */
.idee-box.big {
    grid-column: span 1;
    width: 100%;
    min-height: 300px;
}

/* 🔥 Kleinere Boxen für untere Reihe */
.idee-box.small {
    width: 100%;
    min-height: 200px;
}

/* Hover-Effekt */
.idee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
}

.idee-box h3 {
    text-align: center;
    margin-bottom: 2px;
    /* Noch weniger Abstand */
}

.idee-box p {
    text-align: center;
    margin-bottom: 0px;
    /* Kein Abstand */
    line-height: 1.2;
    /* Verringert den Zeilenabstand für kompakteren Look */
}

/* Entferne unnötige Abstände in den Boxen */
.idee-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Verhindert unnötigen Abstand */
    align-items: center;
    padding: 20px;
}

/* Falls nötig, noch das Bild anpassen */
.idee-box img {
    margin-bottom: 5px;
    /* Nur minimaler Abstand */
}

/* Box Bilder */
.idee-box img {
    width: 80%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 3px;
}

/* 💡 Spezielle Boxen mit Bild OBEN */
.idee-box.special {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.idee-box.special img {
    order: -1;
    max-width: 80%;
    margin-bottom: 1px;
}

/* === Responsive Design für Mobile === */
@media (max-width: 768px) {
    .idee-container {
        grid-template-columns: 1fr;
    }

    .idee-container-bottom {
        grid-template-columns: 1fr;
    }

    .idee-box {
        width: 100%;
    }
}

/* PRICING SECTION */
.pricing {
    text-align: center;
    padding: 80px 10%;
    background: #111;
    color: white;
}

.pricing h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

/* FLEXBOX LAYOUT */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* PRICING BOX */
.pricing-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* HOVER EFFEKT */
.pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.15);
}

/* GRATIS PLAN */
.pricing-box.free {
    border: 2px solid #666;
}

/* PREMIUM PLAN */
.pricing-box.premium {
    border: 2px solid #464646;
    background: #372F7C
}

/* PREIS ANZEIGE */
.pricing-box .price {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-box .price span {
    font-size: 16px;
    color: #aaa;
}

/* LISTENSTIL */
.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-box ul li {
    font-size: 16px;
    padding: 5px 0;
}

/* BUTTON STYLING */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: #333;
    transition: background 0.3s ease-in-out;
}

/* HOVER EFFEKT FÜR BUTTON */
.btn:hover {
    background: #555;
}

/* PREMIUM BUTTON */
.premium-btn {
    background: #535353;
    color: black;
}

.premium-btn:hover {
    background: #FFC300;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   SUPPORT SECTION (GESAMTER CSS-CODE)
====================================== */

/* 🔹 Allgemeine Support-Sektion */
.support-section {
    text-align: center;
    padding: 80px 10%;
    background-color: #181818;
    color: white;
}

/* 🏷️ Überschrift & Beschreibung */
.support-section h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.support-section p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

/* 🔹 Grid für die Support-Boxen */
.support-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* 📦 Support-Boxen */
.support-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s;
    cursor: pointer;
    position: relative;
}

/* ✨ Hover-Effekt */
.support-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* 📷 Icons in den Boxen */
.support-box img {
    width: 80px;
    margin-bottom: 15px;
}

/* 🏷️ Titel in den Boxen */
.support-box h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 📌 Inhaltsbereich, der erscheint */
.support-content {
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);

    /* Startposition für die Animation */
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* Standardmäßig verstecken */
    display: none;
}

/* ❌ Close-Button */
/* ❌ Close-Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.close-btn:hover {
    color: red;
}

/* 📜 Tabelle für PDFs in Anleitungen */
.pdf-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

/* 🏷️ Tabellenkopf */
.pdf-table th {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

/* 📄 Tabellenzellen */
.pdf-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* 🔗 PDF-Links */
.pdf-table a {
    color: #524a92;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.pdf-table a:hover {
    color: #4e4e4e;
}

/* 🔥 FAQ STYLING */
.faq-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ❓ Frage */
.faq-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/* ✍️ Antwort */
.faq-answer {
    display: none;
    margin-top: 10px;
    color: #ccc;
    font-size: 16px;
}

/* 🔹 Kontaktformular */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* 📝 Input-Felder */
input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 16px;
}

/* ✉️ Absenden-Button */
button[type="submit"] {
    background: #372F7C;
    border: none;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

button[type="submit"]:hover {
    background: #4e4e4e;
}

/* 📱 Responsive Anpassungen */
@media (max-width: 768px) {
    .support-container {
        flex-direction: column;
        align-items: center;
    }

    .support-content {
        width: 100%;
    }
}

.hero-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-social img {
    width: 30px;
    transition: transform 0.2s ease;
}

.hero-social img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
        padding: 0 20px;
    }
}