/* =========================
   Grundlegendes Design
========================= */

:root {
    --primary-color: #0056b3;
    --secondary-color: #333;
    --bg-light: #f4f4f4;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

/* =========================
   Allgemeine Container
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.single-column {
    display: block;
}

/* =========================
   Header & Navigation
========================= */

header {
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#branding h1 {
    margin: 0;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4da6ff;
}

/* =========================
   Hero Section
========================= */

.hero {
    background: linear-gradient(to right, #0056b3, #007bff);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* =========================
   Buttons
========================= */

.btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e6e6e6;
}

/* =========================
   Sections
========================= */

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* =========================
   Services Grid
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* =========================
   Cards
========================= */

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* =========================
   Shop Section
========================= */

.shop-section {
  
	    background: #f5f7fa;
}

.shop-text {
    text-align: center;
    max-width: 700px;
    margin: auto auto 30px auto;
}

/* =========================
   Kontakt
========================= */

.contact {
    background: var(--bg-light);
    text-align: center;
}

/* =========================
   Footer
========================= */

footer {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 768px) {

    header .container {
        flex-direction: column;
        text-align: center;
    }

    #branding {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    nav ul li {
        margin: 5px;
    }

    nav ul li a {
        background-color: #444;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

}
/* =========================
   partner-section
========================= */
.partner-section {
    background: #fff;
    text-align: center;
}

.partner-title {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.partner-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
    width: 90%;
}

.partner-logo img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.carousel-btn {
    background: none;
    border: none;
    color: #0056b3;
    font-size: 2.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .partner-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partner-logo img {
        max-width: 130px;
    }
}
/* =========================
   TEAM SECTION
========================= */

.team-section {
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-card h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.team-contact {
    margin-top: 20px;
}

.team-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease,
                transform 0.3s ease;
}

.team-contact a:hover {
    background: #003f82;
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .team-card {
        padding: 25px 15px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
    }
}
/* =========================
   Section Hintergründe
========================= */

#services {
    background: #ffffff;
}

#shop {
    background: #f5f7fa;
}

#team {
    background: #ffffff;
}

#contact {
    background: #f5f7fa;
}

#Fernwartung {
    background: #ffffff;
}
#partner {
    background: #ffffff;
}
/* Container  Kontakt Formular*/
.contact-wrapper{
    max-width:700px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* Titel */
.contact-title{
    text-align:center;
    margin-bottom:35px;
}

.contact-title h2{
    margin:0;
    color:#0b5ed7;
    font-size:32px;
}

.contact-title p{
    color:#666;
    margin-top:10px;
}

/* Formular */
.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* Eingabefelder */
.input-group{
    position:relative;
}

.input-group i{
    position:absolute;
    top:18px;
    left:18px;
    color:#0b5ed7;
    font-size:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px 16px 52px;
    border:1px solid #dbe3ef;
    border-radius:14px;
    font-size:16px;
    background:#f9fbff;
    transition:0.3s;
    box-sizing:border-box;
}

/* Textarea */
.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#0b5ed7;
    background:#fff;
    box-shadow:0 0 0 4px rgba(11,94,215,0.12);
}

/* Button */
.contact-form button{
    background:#0b5ed7;
    color:#fff;
    border:none;
    padding:18px;
    font-size:17px;
    border-radius:14px;
    cursor:pointer;
    transition:0.3s;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.contact-form button:hover{
    background:#084298;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(11,94,215,0.25);
}

/* Mobile */
@media(max-width:768px){

    .contact-wrapper{
        padding:25px;
    }

    .contact-title h2{
        font-size:26px;
    }

}
.rustdesk-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.rustdesk-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 160px;
  padding: 14px 22px;

  background: #f3f3f3;
  border-radius: 10px;

  text-decoration: none;
  color: #222;
  font-weight: 600;

  transition: all 0.2s ease;
}

.rustdesk-buttons a:hover {
  background: #0b5ed7;
  color: white;
  transform: translateY(-2px);
}
.rustdesk-buttons i {
  font-size: 22px;
}

#Fernwartung h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}