*{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.2;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-items: center;
    scroll-behavior: smooth;
    width:80%;
    margin: 0 auto; /* Zentriert den <main> Container selbst */
}

footer a{
    color:#c8990a;
    padding: 10px;
}
.defaultContainer {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px; /* Maximale Breite */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfte Schatten für Tiefe */
    background-color: rgb(255,255,255,0.1); /* Helles Grau für den Hintergrund */
    border: 1px solid #252222; /* Dezente Grenze */
    transition: box-shadow 0.3s ease-in-out; /* Sanfte Übergänge */
    width: 90%;
    align-items: center;
}
/* Hover-Effekt */
.defaultContainer:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}



/* Überschrift */
.defaultContainer h1 {
    color: #c8990a; /* Gold als Akzentfarbe */
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* Unterüberschrift */
.defaultContainer h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 20px;
    color:  #c8990a; /* Gold als Akzentfarbe */
    margin: 8px 0;
}

/* Fließtext */
.defaultContainer p {
    line-height: 1.6;
    font-size: 16px;
    margin: 10px 0;
    color: #e0e0e0;
}
.defaultContainer__img{
    width:50%;
    height: auto;
    border-radius: 20%;
    justify-self: center;
}
.defaultContainer ul{
    color: #e0e0e0;
}
h1{
    color: #e0e0e0;
}

.LogoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    margin: 0 auto;
    margin-top: 70px;
}

@media (max-width: 800px) {
    .LogoContainer {
        width: 80%;
    }
    .terminal{
        width: 80%;
    }

    .formContainer{
      width:   80%;
    }

    #terminalFooter{
        height: 50px;
    }

    .banner-text {
        width: 80%;             /* etwas breiter, damit Text Platz hat */
        padding: 6px 10px;      /* kleineres Padding */
        bottom: 10px;           /* weniger Abstand vom Rand */
    }

    .banner-text h1 {
        font-size: 1rem;        /* gut lesbar, nicht zu klein */
        margin-bottom: 4px;
    }

    .banner-text p {
        font-size: 0.75rem;     /* kompakter, passt besser auf Mobile */
    }


}

@media (min-width: 801px) {
    .LogoContainer {
        width: 400px;
    }
    .terminal{
       height: 150px;
       width:  400px;
    }
    .formContainer{
        width:   400px;
    }
    #terminalFooter{
        height: 100px;
    }
    .banner-text {
        padding: 10px 15px;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }
    .banner{
        width: 90%;
    }
}

.LogoContainer img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 1px solid #000000;
   /* margin: 41px auto 0; /* Margin to position the image correctly */
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {
    0% {
        transform: scale(1); /* NormalgrÃ¶ÃŸe */
    }
    100% {
        transform: scale(1.1); /* VergrÃ¶ÃŸerte GrÃ¶ÃŸe */
    }
}
header {
    display: flex;
    margin-bottom: 100px;
    justify-content: center;
}

nav {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

nav a:hover {
    background: #f1f1f1;
    color: black;
}

nav a.active {
    background-color: #a8a2a2;
    color: white;
}

footer{
    display: flex;
    flex-direction: row;
    margin: 20px auto;
    justify-items: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width:80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfte Schatten für Tiefe */
    background-color: #f9f9f9; /* Helles Grau für den Hintergrund */
    border: 1px solid #d4d6c9; /* Dezente Grenze */
    color: #333; /* Dunkles Grau für Text */
    font-family: 'Arial', sans-serif; /* Schriftart */
    transition: box-shadow 0.3s ease-in-out; /* Sanfte Übergänge */
}

.motto {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    color: #121111;
    text-align: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfte Schatten für Tiefe */
    background-color: #f9f9f9; /* Helles Grau für den Hintergrund */
    border: 1px solid #d4d6c9; /* Dezente Grenze */
}

.motto.visible {
    opacity: 1;
    transform: translateX(0);
}
h2 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    color:   #c8990a;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.formContainer{
    margin : 20px;
    border: 1px solid #c8990a;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfte Schatten für Tiefe */
    background-color: rgb(255,255,255,0.1); /* Helles Grau für den Hintergrund */
    color: #333; /* Dunkles Grau für Text */
    transition: box-shadow 0.3s ease-in-out; /* Sanfte Übergänge */

}

.formContainer form{
    display: flex;
    flex-direction: column;
    padding: 3px;

}
input[type="submit"] {
color:#10100f;

   background:  #e0e0e0;
    border: 1px solid #1c1919;
    padding: 7px;
    margin: 25px;
    font-family: "IBM Plex Mono", "Fira Code", "Source Code Pro", monospace;
}

input[type="text"]{
    color:#10100f;

}

input[type="submit"]:hover {
    background: rgba(18, 17, 17, 0.7);
}
.formContainer label{
    color:  #e0e0e0;
    margin: 5px;
    font-family: "IBM Plex Mono", "Fira Code", "Source Code Pro", monospace;
}


a{
    color: #ffffff;
    font-family: "IBM Plex Mono", "Fira Code", "Source Code Pro", monospace;
}

.codeSnip img {
    width:400px;
    margin: 0 auto;
}
/* Terminal-Stil */
.terminal {
    background-color: #151414;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(47, 50, 47, 0.5);
    text-align: left;
    white-space: pre-wrap;
    overflow: hidden;
    font-size: 16px;
    border:1px solid  #c8990a;
}

/* Blinkender Cursor */
.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #ffffff;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
#code , #codef  {
    color: #faf9f9;
}

textarea{
    resize: none;
}
#terminalFooter{
    margin: 0 auto;
}
p{
    text-align: center;
}
.buttonCookie{
        padding: 5px;
        font-family: "Courier New", Courier, monospace;
        margin: 5px;

}
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}
.card {
    background-color: rgb(255,255,255,0.1); /* Helles Grau für den Hintergrund */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.card h2 {
    color: #e0e0e0;
}
.card ul {
    list-style: none;
    padding: 0;
}
.card ul li {
    color: #e0e0e0;
    margin: 10px 0;
}
.price {
    font-size: 20px;
    font-weight: bold;
    color:  #c8990a;
}
.banner {
    position: relative;

    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateX(-100%);
    animation: slideIn 1.2s ease-out forwards;
    border-radius: 12px;
    border:  #c8990a solid 2px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    padding: 15px 25px;
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
}

.banner-text h1 {
    margin-bottom: 8px;
}

.banner-text p {
    font-style: italic;
    margin: 0;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

body {
    background-image: url("/images/server.jpg");
    background-repeat: no-repeat;
    background-size: cover;   /* skaliert, sodass es den ganzen Bildschirm ausfüllt */
    background-attachment: fixed;  /* fixiert das Bild beim Scrollen */
    background-position: center;   /* zentriert das Bild */
}

.banner--gold{
    color:#c8990a;
}

.alertBox__p{
    color: #2c850d;
}
.project-showcase {
    display: inline-block;
    vertical-align: top;           /* sorgt für schöne Ausrichtung nebeneinander */
    width: 320px;                  /* feste Breite inkl. Padding */
    margin: 20px;                  /* Abstand zwischen den Boxen */
    padding: 15px;                 /* Innenabstand */
    text-align: center;
    background-color: rgb(255,255,255,0.1); /* Helles Grau für den Hintergrund */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-showcase:hover {
    transform: translateY(-5px);   /* leichtes Anheben beim Hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.project-showcase h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.project-showcase a {
    display: block;
    margin-bottom: 12px;
    color: #c8990a;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.project-showcase a:hover {
    color: #ffffff;
}

.project-showcase iframe {
    width: 100%;                   /* passt sich der Box an */
    height: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

