/* Allgemein */
* {
   font-family: "Maven Pro", Arial, Helvetica, sans-serif;
   font-weight: 400;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #FFF;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: auto;
    overflow: hidden;
}

section {
    padding: 2rem 0;
    text-align: center;
    background: #fff;
    margin-bottom: 1rem;
}

section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

/* Header/Navbar */
header {
    position: sticky;
    padding: 1rem 0;
    text-align: right;
    box-shadow: 0 6px 16px 6px rgba(0, 0, 0, 0.13), 0 4px 8px 6px rgba(255,255,255,0.9);
    z-index: 1000;
    background-color: rgba(250, 250, 250, 0.7);
    border-bottom: 2px solid rgba(255, 70, 0, 0.1);
/*    border-bottom: 2px solid  rgba(255,255,25, 0.2); */
    border-top: 4px solid  rgba(25,25,25, 0.2);
}

header img {
    float: left;
    padding: 10px;
    margin-left: 24px;
    -webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

nav ul {
    list-style: none;
    padding: 32px;
}

nav ul li {
    display: inline;
    margin: 0 24px;
}

nav ul li a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.123s;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

nav ul li a:hover {
/*    color: #256c93; */
    color: #80d4ff;
    text-shadow: none;
}

/* Allgemein - Footer */
footer {
    width: 100%;
    margin-top: 72px;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 0.8rem 0;
}

footer p {
	margin: 0;
}

footer a {
    color: #47738a;
}

footer a:hover {
    color: #80d4ff;
}

.footlink {
    margin-top: 2rem;
}

.footlink a {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    padding: 1rem;
    font-size: 1.5rem;
    color: #47738a;
    text-shadow: 0 0 2px #80d4ff;
}

.footlink a:hover {
    color: #80d4ff;
    text-shadow: 0 0 1px #80d4ff;
}


/* Home-Page */
#welcome {
    margin-top: 3rem;
}
#welcome h2 {
    font-size: 3rem;
}
#welcome p {
    font-size: 1.2rem;
    color: #666;
    padding-top: 2.5rem;
}

#circle {
    float: right;
    width: 20%;
    margin-top: 2rem;
    margin-right: 3rem;
    margin-left: 2.5rem;
}

/* Home-Page - Prozessabdeckung */
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: center;
    list-style: none;
    background: #fff;
    padding: 3rem 3rem;
    text-align: center;
}

.process-item {
    width: 80%;
    opacity: 60%;
    margin: 8px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
}

.process-item:hover {
    opacity: 100%;
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    h3 {
	color: #80d4ff;
    }
    img {
	opacity: 80%;
	border: 2px solid rgba(0, 0, 0, 0.6);
    }
}

.process-item img {
    width: 20%;
    height: auto;
    opacity: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.process-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    transition: color 0.177s ease;
}

.process-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}


/* Home-Page - Produkte */
.product {
    padding: 3rem;
    text-align: center;
}

.product-image {
    float: left;
    width: 39%;
    margin-top: 48px;
    margin-left: 8px;
    margin-right: 8px;
    transition: all 0.8s ease;
}
.product-image:hover {
    transform: scale3d(1.1,1.1,1);
    opacity: 77%;
}

.product-text {
    text-align: left;
    float: right;
    width: 50%;
}
.product-text h3 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.product-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}
.product-text a {
    text-shadow: 0 0 2px #80d4ff;
    font-size: 1.3rem;
    color: #47738a;
}
.product-text a:hover {
    color: #80d4ff;
    text-shadow: 0 0 1px #80d4ff;
}

.footnote {
    width: 60%;
    margin: auto;
}

.footnote h3 {
    font-size: 2.5rem;
}

.footnote p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}


/* Produkt-Pages CRM & POP */
.processes {
    width: 90%;
}

.process {
    display: flex;
    margin: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0);
    transition: all 0.7s ease;
}

.process:hover {
    background-color: rgba(40, 140, 240, 0.05);
    border: 1px solid rgba(0,0,0,0.1);
}

.process h3 {
    width: 40%;
    margin: 3rem 0 3rem 3rem;
    font-size: 3.5rem;
    float: left;
}

.process p {
    font-size: 1.2rem; 
    width: 40%;
    padding: 2rem;
    margin-left: 4rem;
    text-align: left;
}

.process a {
    color: #47738a; 
    text-shadow: 0 0 2px #80d4ff;
}

.process a:hover {
    color: #80d4ff;
    text-shadow: 0 0 1px #80d4ff;
}

#process-detail img {
    transition: transform 0.5s ease;
}

#process-detail:hover {
    img {
	transform: rotate(90deg);
    }
}

table {
    width: 91%;
    margin: 2.5rem auto 1rem auto;
    text-align: left;
}

th {
    padding: 1rem 1.5rem 1rem 1.5rem;
    font-size: 1.5rem;
    color: white;
    background-color: #256c93;
}

tbody {
    background-color: rgba(40, 140, 240, 0.05);
}

td {
    padding: 1rem 1.5rem 1rem 1.5rem;
}

/* About-Page */
#about {
    margin-top: 4rem;
}

#about img {
    margin-top: 4rem;
    width: 20rem;
}

#field {
    background-color: rgba(140, 140, 140, 0.1);
    padding: 2rem;
    opacity: 70%;
    transition: background-color 0.7s ease;
}

#field img {
    margin-top: 1rem;
    width: 4rem;
    transition: all 1s ease;
}

#field h3 {
    color: black;
    transition: color 1s ease;
    font-size: 2rem;
}

#field p {
    font-size: 1.2rem;
    color: #666666b8;
    transition: color 1s ease;
}

#field a {
    text-shadow: 0 0 2px #80d4ff;
    color: #47738a;
}

#field a:hover {
    color: #80d4ff;
    text-shadow: 0 0 1px #80d4ff;
}

#field:hover {
    background-color: rgba(40, 140, 240, 0.1);
    img {
        -webkit-filter: drop-shadow(0 0 28px rgba(0, 255, 200, 0.7));
        filter: drop-shadow(0 0 28px rgba(0, 255, 200, 0.7));
    }
}

.about {
    display: flex;
    max-width: 1375px;
}

.about h3 {
    font-size: 2.5rem;
}

.about p {
    font-size: 1.2rem;
    color: #666;
}

.about-item {
    border: 1px solid rgba(0,0,0,0.1);
    width: 50%;
    height: 32rem;
    padding: 3rem;
    margin: 1rem;
    transition: background-color 0.7s ease;
}

.about-item:hover {
    background-color: rgba(40, 140, 240, 0.05);
}
.about-item-left {
    text-align: right;
}
.about-item-right {
    text-align: left;
}

/* Contact-Page */
.contact {
    display: flex;
    background-color: rgba(140,140,140,0.05);
    margin-top: 5rem;
    padding: 2rem;
    border-radius: 5px;
}

#address {
    text-align: left;
    margin: 2rem;
}
#address h3 {
    font-size: 2.5rem;
}

#address p {
    font-size: 1.2rem;
}

.contact-field {
    text-align: center;
    width: 40%;
    padding: 2rem;
    margin-left: auto;
    background-color: #e05115;
    color: white;
}

.contact-field h3 {
    font-size: 2rem;
    color: white;
}

.contact-field p {
    font-size: 1.2rem;
    text-shadow: 0 0 1px rgb(255,255,255,1);
}

.contact-field img {
    margin-top: 1rem;
    height: 5rem;
}


.filler {
    min-height: 2vh;
}

/* Impressum */
.impressum {
    display: flex;
    margin-top: 2rem;
}

.impressum p {
    color: #666;
}

.impressum li {
    color: #666;
}

.sidebar {
    text-align: left;
    width: 21%;
    margin-top: 2rem;
    margin-right: 4rem;
    padding: 3rem;
    background-color: rgba(140,140,140,0.05);
}
.sidebar h3 {
    font-size: 1.5rem;
}

.rechtl {
    width: 79%;
    text-align: left;
}

.rechtl h3 {
    font-size: 3rem;
}

/* Mobile */
@media (max-width: 768px) {
    .xyz {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .process-list {
        flex-direction: column;
        align-items: center;
    }

    .process-list {
        width: 90%;
    }
    .container {
	margin-left: 24px;
	margin-right: 24px;
    }
}

@media (max-width: 480px) {
    .process-item {
        padding: 1rem;
    }

    .process-item h3 {
        font-size: 1.5rem;
    }

    .process-item p {
        font-size: 0.9rem;
    }
}
