⁠  ⁠{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: white;
}

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

.center {
    text-align: center;
}

/* NAVIGATION */

header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #d4af37;
    text-decoration: none;
}

nav a {
    margin-left: 30px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #d4af37;
}

/* HERO */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.subtitle {
    letter-spacing: 3px;
    font-size: 14px;
    color: #d4af37;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin: 20px 0;
}

.description {
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

.btn {
    background: #d4af37;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-sub {
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 50px;
}

.dark {
    background: #111;
}

/* CARDS */

.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #1a1a1a;
    padding: 40px;
    width: 300px;
    border-radius: 10px;
    transition: 0.3s;
}

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

/* KONTAKT */

.kontakt-info {
    margin-bottom: 40px;
    line-height: 30px;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 20px;
    padding: 12px;
    background: #1a1a1a;
    border: none;
    color: white;
}

/* RESPONSIVE */

@media(max-width: 768px){

    .hero h1 {
        font-size: 40px;
    }

    .ueber-container {
        flex-direction: column;
    }

    nav {
        display: none;
    }

}

/* RESPONSIVE */

@media(max-width: 900px){

    .ueber-wrapper {
        flex-direction: column;
    }

    .ueber-image {
        height: 400px;
    }

    .ueber-content {
        padding: 40px;
    }

}

/* KONTAKT DESIGN */

.kontakt-section {
    background: #0d0d0d;
    padding: 120px 0;
    text-align: center;
}

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

.kontakt-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 10px 0 20px;
}

.kontakt-text {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* INFO BOXEN */

.kontakt-info-boxen {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.kontakt-box {
    background: #1a1a1a;
    padding: 35px;
    width: 300px;
    border-radius: 12px;
    transition: 0.3s;
}

.kontakt-box:hover {
    transform: translateY(-6px);
    border: 1px solid #d4af37;
}

.kontakt-box .icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #d4af37;
}

.kontakt-box h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 10px;
}

.kontakt-box p {
    color: #ccc;
}

/* FORMULAR */

.kontakt-form {
    max-width: 800px;
    margin: auto;
}

.kontakt-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    border: none;
    color: white;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.kontakt-form textarea {
    height: 150px;
    resize: none;
    margin-top: 20px;
}

.kontakt-btn {
    margin-top: 30px;
    background: #d4af37;
    color: black;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.kontakt-btn:hover {
    background: #b8962e;
}

/* RESPONSIVE */

@media(max-width: 900px){

    .kontakt-form .row {
        flex-direction: column;
    }

}

/* ÜBER MICH CLEAN VERSION */

.ueber-clean {
    background: #0d0d0d;
    padding: 120px 0;
    text-align: center;
}

.ueber-container-clean {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.ueber-clean h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 15px 0 30px;
}

.ueber-clean h2 span {
    color: #d4af37;
}

.ueber-text {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Feature Boxen */

.feature-grid-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.feature-box {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
    border: 1px solid #d4af37;
}

/* Responsive */

@media(max-width: 768px) {

    .feature-grid-clean {
        grid-template-columns: 1fr;
    }

}

.footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
  }
  
  .footer a:hover {
    color: #c59d5f;
  }
  
  .legal-page {
    background: #111;
    color: #fff;
    min-height: 100vh;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
  }
  
  .legal-page h1 {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .legal-page p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
  }
  
  .back-btn {
    display: block;
    text-align: center;
    margin-top: 40px;
    color: #c59d5f;
    text-decoration: none;
    font-weight: bold;
  }

  footer a:visited {
    color: #fff;
  }
  
  .back-btn:visited {
    color: #c59d5f;
  }

  a[href^="tel"] {
    color: #fff !important;
    text-decoration: none;
  }
  
  a[href^="tel"]:visited {
    color: #fff !important;
  }
  
  a[href^="tel"]:hover {
    color: #c59d5f !important;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo img {
    width: 35px;
    margin-right: 10px;
  }
  
  .logo span {
    color: #c59d5f;
    font-weight: bold;
    letter-spacing: 2px;
  }