/* Optimierter Hintergrund für Webspace-Angebot */
.domain-banner {
    background: #1a73e8; /* Etwas dunkleres Blau als Basisfarbe */
    background: -webkit-linear-gradient(135deg, #1a73e8 0%, #4a90e2 50%, #5cb3fd 80%, #ffb74d 100%);
    background: -o-linear-gradient(135deg, #1a73e8 0%, #4a90e2 50%, #5cb3fd 80%, #ffb74d 100%);
    background: linear-gradient(135deg, #1a73e8 0%, #4a90e2 50%, #5cb3fd 80%, #ffb74d 100%);
    min-height: 825px; /* Höhe beibehalten */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 20px;
}
.domain-banner .container {
    z-index: 2;
    color: #fff; /* Weißer Text für hohen Kontrast */
}

.domain-banner .banner-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInLeft 1s;
    color: #ffffff; /* Weißer Text für Titel */
}

.domain-banner .banner-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeInLeft 1.5s;
    color: #f1f1f1; /* Hellgrauer Text für Untertitel */
}

.domain-banner .banner-list {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
    color: #f1f1f1; /* Hellgrauer Text für Liste */
}

.domain-banner .banner-list li {
    margin-bottom: 10px;
}

.domain-banner .banner-small-text {
    font-size: 1em;
    margin-top: 20px;
    color: #e0e0e0; /* Hellgrauer Text für kleinere Texte */
}

.domain-banner .banner-location {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
    color: #ffffff; /* Weißer Text für Standort */
}

.domain-banner .cta-buttons {
    margin-top: 20px;
}

.domain-banner .cta-buttons .btn {
    margin-right: 10px;
    background-color: #0288d1; /* Blaue Farbe für Buttons */
    color: #fff;
    border: none;
}

.domain-banner .cta-buttons .btn-secondary {
    background-color: #ffb74d; /* Orange als Akzentfarbe für sekundären Button */
    color: #fff;
    border: none;
}

.inner-welcome-image-group img {
    max-width: 70%;
    height: auto;
    animation: fadeIn 2s;
    margin-bottom: 30px; /* Platzhalter zwischen Bild und Call-to-Action-Buttons */
}

@media (max-width: 768px) {
    .domain-banner {
        min-height: 550px;
        padding: 10px;
    }

    .domain-banner .banner-title {
        font-size: 1.8em;
        margin-top: 180px;
    }

    .domain-banner .banner-subtitle {
        font-size: 1em;
        margin-top: 10px;
    }

    .domain-banner .banner-list {
        font-size: 0.9em;
    }

    .domain-banner .banner-small-text {
        font-size: 0.8em;
    }

    .domain-banner .banner-location {
        font-size: 1em;
    }

    .inner-welcome-image-group img {
        max-width: 80%;
        margin-top: 20px;
    }

    .domain-banner .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .domain-banner .cta-buttons .btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .domain-banner {
        min-height: 900px;
    }

    .domain-banner .banner-title {
        font-size: 2em;
        margin-top: 150px;
    }

    .domain-banner .banner-subtitle {
        font-size: 1.1em;
        margin-top: 10px;
    }

    .inner-welcome-image-group img {
        max-width: 70%;
        margin-bottom: 60px;
    }

    .image-col {
        display: none;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Domain Section */
/* Centered Alignment for Domain Registration Section */
.domain-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.domain-section h2.heading-title {
    color: #333;
    font-weight: bold;
    font-size: 2em;
}

.domain-section h2.heading-title span {
    color: #007bff;
}

.domain-section ul {
    list-style: none;
    padding: 0;
}

.domain-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.domain-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.domain-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Extra Info Section Styling */
.domain-section .heading-sub-title {
    font-size: 1.5em;
    color: #666;
    font-weight: bold;
}

.domain-section .text-center p {
    color: #555;
}

.domain-section .text-center i {
    color: #007bff;
}

/* Icon Styling in Extra Info Section */
.domain-section .fa-3x {
    color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .domain-section {
        padding: 30px 0;
    }
    .domain-section h2.heading-title {
        font-size: 1.8em;
    }
    .domain-section .btn-lg {
        font-size: 1em;
        padding: 10px 20px;
    }
}
@media (max-width: 768px) {
    .pricing-section .table {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .pricing-section .col-md-8 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* --- Mobile Fix für Domain-Eingabe --- */
@media (max-width: 576px) {
    .domain-search-form {
        flex-wrap: wrap !important;
    }

    .domain-search-form .form-group.d-flex {
        flex-wrap: nowrap;
        flex: 1 1 100%;
        max-width: 100%;
    }

    #domain-search {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 16px;
        padding: 12px 10px;
    }

    #domain-tld {
        width: 80px;
        font-size: 15px;
        padding: 12px 10px;
    }

    .domain-search-form input[type="submit"] {
        width: 100%;
        margin-top: 10px;
        font-size: 16px;
        padding: 12px 15px;
    }
}

