/*
Theme Name: Atavion
Theme URI: https://ewv.tivaosagencytempdomains.de
Author: Atavion
Author URI: https://ewv.tivaosagencytempdomains.de
Description: Eine benutzerdefinierte WordPress‑Theme für das Projekt Atavion. Das Design basiert auf einem dunklen Farbschema mit goldenen Akzenten und enthält Vorlagen für Startseite, Ablauf, Dienstleister, Mangel melden und Kontakt.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Grundlegende Theme‑Styles */
html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0b1220;
    color: #e9eefc;
    line-height: 1.6;
}

a {
    color: #c6a14a;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: underline;
}

.site-header,
.site-footer {
    background-color: #0e1629;
    padding: 20px 0;
    text-align: center;
}
.site-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.site-header nav a {
    color: #e9eefc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background:
        radial-gradient(900px 480px at 12% 12%, rgba(198,161,74,0.18) 0%, rgba(198,161,74,0) 60%),
        radial-gradient(850px 520px at 85% 20%, rgba(72,116,255,0.20) 0%, rgba(72,116,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 40%),
        linear-gradient(135deg, #0e1629 0%, #0b1220 55%, #070b14 100%);
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}
.hero h1 {
    margin-top: 0;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero p {
    color: #a9b5d1;
    font-size: 1.1rem;
    margin: 20px 0 40px;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
    background: linear-gradient(180deg, #e2c77a 0%, #c6a14a 100%);
    color: #0b1220;
    border: 1px solid rgba(198,161,74,0.55);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(198,161,74,0.36);
}
.btn-secondary {
    color: #c6a14a;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(198,161,74,0.15);
    border-color: rgba(198,161,74,0.4);
}

/* Abschnittsüberschriften */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #e9eefc;
}

/* Prozessbereich */
.process-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.process-item {
    background-color: #111b2e;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #1f2a3e;
    text-align: center;
}
.process-item h3 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
    color: #e9eefc;
}
.process-item p {
    color: #a9b5d1;
    font-size: 0.95rem;
}

/* Vorteile */
.advantages-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.advantage-card {
    background-color: #111b2e;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #1f2a3e;
}
.advantage-card h4 {
    margin: 10px 0;
    color: #e9eefc;
    font-size: 1.1rem;
}
.advantage-card p {
    margin: 0;
    color: #a9b5d1;
    font-size: 0.95rem;
}

/* Preis-Pakete */
.pricing-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pricing-card {
    background-color: #111b2e;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #1f2a3e;
    text-align: center;
}
.pricing-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #e9eefc;
}
.pricing-card h4 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #c6a14a;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #a9b5d1;
    text-align: left;
}
.pricing-card ul li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}
.pricing-card ul li::before {
    content: "\2713";
    color: #c6a14a;
    position: absolute;
    left: 0;
}

.pricing-card .btn {
    margin-top: 20px;
}

/* Kontakt */
.contact-section {
    text-align: center;
}
.contact-section p {
    color: #a9b5d1;
    margin: 10px 0;
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}