/* * =========================================================
 * Projekt:     webstay Agentur
 * Inhaber:     L. Loewe
 * Beschreibung: Custom Design (Glassmorphism & Gold Accents)
 * Erstellt am: 2026-02-07
 * Version:     1.32
 * =========================================================
 */
/* style.css */
        :root {
            --bg: #0b1020;
            --bg-card: #161c2f;
            --text: #e5e7eb;
            --primary: #38bdf8;
            --secondary: #1e293b;
            --gold: #C5A059;
        }
.container { max-width: 800px; margin: 0 auto; background: var(--card); padding: 40px; border-radius: 12px; }
.hamburger { cursor: pointer; }
.domain-safe ul li {
    line-height: 1.4;
}

.hosting-note1 {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}
        /* BASE */
        body {
            margin: 0;
            font-family: 'Inter', Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            scroll-behavior: smooth;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(22, 28, 47, 0.8); /* Dein --bg-card mit Transparenz */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.7);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--text);
        }

        .logo svg {
            width: 44px;
            height: 44px;
            fill: var(--primary);
        }

        .logo span {
            font-size: 1.4em;
            font-weight: 700;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            opacity: 0.85;
            transition: 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        .cta-nav {
            padding: 10px 22px;
            border-radius: 25px;
            background: linear-gradient(135deg, #38bdf8, #0ea5e9);
            color: #00111a;
            font-weight: 700;
            transition: 0.3s ease;
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(56,189,248,0.6);
        }

        .hamburger {
            display: none;
            font-size: 1.7em;
            cursor: pointer;
            color: var(--primary);
        }

        main {
            max-width: 1100px;
            margin: 70px auto;
            padding: 0 20px;
        }

        h1, h2 {
            font-size: 2.6em;
            text-align: center;
            background: linear-gradient(to right, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .subtitle {
            text-align: center;
            opacity: 0.7;
            margin-bottom: 55px;
            font-size: 1.1em;
        }

        section {
            margin-bottom: 100px;
        }
        
.space-32 {
    height: 32px;
}
/* Styling für die Webstay Info-Sektion - Dark Premium Look */
#about-webstay {
    background-color: #0a192f; /* Tiefes Dunkelblau */
    color: #e6f1ff; /* Helles Off-White für Lesbarkeit */
    border-radius: 16px;
    padding: 60px 40px;
    margin-bottom: 60px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#about-webstay h2 {
    font-size: 2.5rem;
    color: var(--gold); /* Gold als Highlight */
    text-align: center;
    margin-bottom: 20px;
}

#about-webstay p {
    color: #8892b0; /* Sanftes Grau für den Einleitungstext */
}

/* Der "Vorteile"-Grid */
.benefit-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-grid div {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03); /* Ganz dezente Aufhellung */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-grid div:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.benefit-grid h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

.benefit-grid p {
    color: #a8b2d1 !important;
    font-size: 0.95rem;
    line-height: 1.5;
}



/* Stil für das Zitat von Lars Löwe */
#about-webstay blockquote {
    margin-top: 60px;
    padding: 30px;
    border-left: 4px solid var(--gold);
    background: rgba(201, 173, 107, 0.05); /* Ganz leichter Gold-Schimmer */
    color: #ccd6f6;
    font-size: 1.2rem;
    line-height: 1.7;
    border-radius: 4px 20px 20px 4px;
    text-align: center;
}

#about-webstay blockquote strong {
    color: var(--gold);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    #about-webstay {
        padding: 40px 20px;
    }
    #about-webstay h2 {
        font-size: 2rem;
    }
}

        /* CARDS */
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .card {
            background: var(--bg-card);
            border-radius: 22px;
            padding: 32px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.7);
            
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .card:hover {
            transform: translateY(-8px);
            transition: 0.3s;
            border-color: var(--primary);
        }

        .card.featured {
            border: 2px solid var(--gold);
            position: relative;
        }

        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: white;
            padding: 4px 15px;
            border-radius: 12px;
            font-size: 0.75em;
            font-weight: bold;
            text-transform: uppercase;
        }

        .card-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .card-header strong {
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9em;
            color: var(--primary);
        }

        .price {
            font-size: 2.2em;
            font-weight: 800;
            color: var(--text);
            margin: 10px 0;
        }

        .price span {
            font-size: 0.4em;
            opacity: 0.6;
        }

        .card ul {
            padding-left: 0;
            list-style: none;
            line-height: 2;
            opacity: 0.85;
            flex-grow: 1;
        }

        .card ul li::before {
            content: "✓";
            color: var(--primary);
            margin-right: 10px;
        }

        .card button, .btn-submit {
            margin-top: 22px;
            padding: 15px;
            width: 100%;
            border: none;
            border-radius: 16px;
            background: linear-gradient(135deg, #38bdf8, #0ea5e9);
            color: #00111a;
            font-size: 1em;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }

        .card button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(56,189,248,0.6);
        }

/* Initialzustand: Etwas tiefer und unsichtbar */
.card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 2.6s ease-out;
}

/* Die Klasse, die per JavaScript hinzugefügt wird */
.card.appear {
    opacity: 1;
    transform: translateY(0);
}


        /* CONTACT SECTION */
        .contact-section {
            background: var(--bg-card);
            padding: 50px;
            border-radius: 22px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.5);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input, .contact-form textarea {
            background: var(--bg);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
        }

        .hp-field { display: none !important; }

        /* FAQ */
        .faq-item {
            background: var(--bg-card);
            border-left: 4px solid var(--gold);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .faq-item strong {
            display: block;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.1em;
        }

        /* DOMAIN BOX */
        .domain-safe {
            text-align: center;
            padding: 40px;
            border: 2px dashed var(--gold);
            border-radius: 22px;
            margin-top: 50px;
        }
       
.domain-safe p.small-print {
    font-size: 0.85em;
    opacity: 0.7;
    margin-top: 5px;
}

        footer {
            text-align: center;
            padding: 50px;
            opacity: 0.55;
            font-size: 0.9em;
            background: var(--bg-card);
        }

        footer a { color: var(--text); text-decoration: none; margin: 0 10px; }

.footer-content { display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto; align-items: center; }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(35px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 850px) {
            .contact-section { grid-template-columns: 1fr; }
            header { padding: 20px; }
            nav {
                position: absolute;
                top: 85px; right: 20px;
                background: var(--bg-card);
                padding: 22px;
                border-radius: 18px;
                flex-direction: column;
                display: none;
                box-shadow: 0 25px 60px rgba(0,0,0,0.85);
            }
            nav.active { display: flex; }
            .hamburger { display: block; }
        }
/* Optimiertes Grid für die Webdesign-Sektion */
    #projekte .cards {
        display: grid;
        grid-template-columns: repeat(6, 1fr); /* 6 Spalten für feineres Alignment */
        gap: 35px;
    }

    /* Die ersten drei Karten belegen jeweils 2 von 6 Spalten (1. Reihe) */
    #projekte .card:nth-child(1),
    #projekte .card:nth-child(2),
    #projekte .card:nth-child(3) {
        grid-column: span 2;
    }

    /* Die Enterprise-Karte (4. Karte) wird mittig in der 2. Reihe platziert */
    #projekte .card:nth-child(4) {
        grid-column: 3 / span 2; /* Startet in Spalte 3 und belegt 2 Spalten */
    }

    /* Responsive Anpassung für Tablets und Mobile */
    @media (max-width: 1100px) {
        #projekte .cards {
            grid-template-columns: repeat(2, 1fr);
        }
        #projekte .card:nth-child(1),
        #projekte .card:nth-child(2),
        #projekte .card:nth-child(3),
        #projekte .card:nth-child(4) {
            grid-column: span 1;
        }
    }

    @media (max-width: 700px) {
        #projekte .cards {
            grid-template-columns: 1fr;
        }
        #projekte .card:nth-child(4) {
            grid-column: auto;
        }
    }

/* FAQ Akkordeon Styling */
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Groß genug für den Text */
    padding: 0 20px 20px 20px;
}
/* Schwarz markierter Code gemäß deiner Präferenz */
.logo-svg {
    width: 44px;
    height: 44px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4)); /* Dezentes Leuchten */
    transition: all 0.3s ease;
}

.logo:hover .logo-svg {
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.8));
    transform: scale(1.05);
}

/* Schwarz markierter Code für die Datenschutz-Checkbox */
.form-privacy {
    margin: 20px 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text);
    opacity: 0.9;
}

.checkbox-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start; /* Checkbox oben ausrichten bei langem Text */
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary); /* Nutzt deine Markenfarbe für den Haken */
}

.checkbox-wrapper label {
    cursor: pointer;
}

.privacy-note {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.checkbox-wrapper a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-wrapper a:hover {
    color: var(--primary);
}

/* Validierungs-Style: Wenn nicht angehakt und User will senden */
.checkbox-wrapper input[type="checkbox"]:invalid {
    outline: 1px solid rgba(255, 0, 0, 0.5);
}

/* Schwarz markierter Code für den Footer */
.main-footer {
    background: #070a14; /* Etwas dunkler als der Rest für Abgrenzung */
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    margin-top: 15px;
    opacity: 0.7;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-links h4, .footer-legal h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 15px auto; }
}

/* Schwarz markierter Code für den Scroll-Up Button */
.back-to-top { 
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    width: 50px; 
    height: 50px; 
    background: #161c2f;
    border: 1px solid #38bdf8; 
    color: #38bdf8;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    opacity: 0; visibility: hidden; 
    transition: all 0.3s ease; z-index: 1000; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    animation: soft-glow 4s infinite ease-in-out; 
}

.back-to-top:hover { 
    background: #38bdf8; 
    color: #0b1020; transform: 
    translateY(-5px) scale(1.1); 
    animation: none; }

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top .icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@keyframes soft-glow { 
    0%, 100% { box-shadow: 0 10px 25px rgba(0,0,0,0.5); transform: scale(1); } 
    50% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); transform: scale(1.03);}
    }

/* Button Animation (Ergänzung) */
.btn-submit {
    position: relative;
    transition: all 0.3s ease;
}

.btn-submit.is-loading {
    color: transparent !important;
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.is-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
html {
    scroll-behavior: smooth;
}

/* Premium Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, #0a192f 0%, #161c2f 100%);
    border-bottom: 2px solid var(--gold);
    padding: 12px 20px;
    position: relative;
    z-index: 1001;
}

.bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-announcement-bar p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    letter-spacing: 0.5px;
}

.top-announcement-bar strong {
    color: var(--gold);
}

.bar-button {
    background: var(--gold);
    color: #000;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.bar-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    background: #fff;
}

/* Der Aufmerksamkeit-Punkt (Pulse) */
.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .top-announcement-bar p {
        font-size: 0.85rem;
        text-align: center;
    }
    .pulse-icon { display: none; }
}
/* Premium Domain Highlight Section */
.highlight-section {
    padding: 60px 20px;
    perspective: 1000px;
}

.domain-highlight-card {
    background: linear-gradient(145deg, var(--bg-card), #1a243d);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(197, 160, 89, 0.05);
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: #000;
    padding: 8px 40px;
    transform: rotate(15deg);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.highlight-text h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.highlight-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.highlight-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    opacity: 0.9;
}

.highlight-features i {
    color: var(--gold);
}

/* Der auffällige Button */
.btn-gold-glow {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.btn-gold-glow:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.6);
    transform: translateY(-3px);
}

/* Visuelles Element: Animierter Domain-Orb */
.highlight-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.domain-orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.domain-orb span {
    position: absolute;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.domain-orb span:nth-child(1) { top: 20%; left: 20%; animation: orbit 10s linear infinite; }
.domain-orb span:nth-child(2) { bottom: 20%; right: 20%; animation: orbit 15s linear infinite reverse; }
.domain-orb span:nth-child(3) { center; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* Responsive */
@media (max-width: 850px) {
    .highlight-content { grid-template-columns: 1fr; text-align: center; }
    .highlight-text h2 { text-align: center; }
    .highlight-features li { justify-content: center; }
    .highlight-visual { margin-top: 30px; }
}