*{
    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:14px 32px;
text-decoration:none;
display:inline-block;
border-radius:6px;
transition:all 0.3s ease;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(212,175,55,0.4);
}

/* 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(-12px) scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* KONTAKT */

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

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

input, textarea, select {
margin-bottom: 20px;
padding: 14px;
background: #1a1a1a;
border: none;
border-radius: 6px;
color: white;
font-size: 14px;
}

/* 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{
text-decoration:none;
color:white;
}

.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:inline-block;

margin-top:35px;

padding:14px 28px;

background:linear-gradient(135deg,#d4af37,#f1c40f);

color:#111;

font-weight:700;

font-size:15px;

text-decoration:none;

border-radius:10px;

transition:0.3s;

box-shadow:0 10px 25px rgba(212,175,55,0.5);

}

.back-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(212,175,55,0.7);

background:linear-gradient(135deg,#e6c14c,#ffd94a);

}

  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;
  }

  /* SCROLL ANIMATION */

.reveal{
opacity:0;
transform:translateY(60px);
transition:all 1.2s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

input:focus,
textarea:focus,
select:focus{
outline:none;
box-shadow:0 0 0 2px #d4af37;
transition:0.3s;
}

.hero-content h1{
animation:fadeUp 1.5s ease;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.date-title{
color:#d4af37;
font-size:14px;
margin-bottom:8px;
text-align:left;
}

/* ABOUT SECTION */

.about-section{
padding:120px 0;
background:#0d0d0d;
}

.about-container{
width:90%;
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-left{
flex:1;
text-align:center;
}

.about-left img{
width:340px;
height:340px;
object-fit:cover;

margin-top:40px;

border-radius:50%;
border:4px solid #d4af37;

box-shadow:
0 0 20px rgba(212,175,55,0.8),
0 0 60px rgba(212,175,55,0.5),
0 0 120px rgba(212,175,55,0.3);

transition:0.4s;
}

@keyframes goldGlow{

0%{
box-shadow:
0 0 20px rgba(212,175,55,0.6),
0 0 40px rgba(212,175,55,0.4);
}

100%{
box-shadow:
0 0 40px rgba(212,175,55,1),
0 0 80px rgba(212,175,55,0.8),
0 0 120px rgba(212,175,55,0.6);
}

}

.about-left img{
animation:goldGlow 4s infinite alternate;
}

.about-left img:hover{
transform:scale(1.07) rotate(1deg);
}

.about-left h3{
margin-top:20px;
font-size:22px;
color:#d4af37;
}

.about-left p{
color:#aaa;
}

.about-right{
flex:1;
}

.about-right h2{
font-size:42px;
margin:20px 0;
}

.about-right span{
color:#d4af37;
}

.about-right p{
color:#aaa;
line-height:1.7;
margin-bottom:20px;
}

.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:30px;
}

.feature-box{

background:rgba(255,255,255,0.05);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,0.1);

padding:25px;

border-radius:12px;

text-align:center;

transition:0.35s;

box-shadow:0 10px 25px rgba(0,0,0,0.4);

}

.feature-box:hover{

transform:translateY(-8px) scale(1.03);

border:1px solid #d4af37;

box-shadow:0 15px 40px rgba(212,175,55,0.35);

}

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

@media(max-width:900px){

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

.about-left img{
width:220px;
height:220px;
}

.about-features{
grid-template-columns:1fr;
}

}

/* GEAR SECTION */

.gear-section{

padding:140px 0;

background:#0d0d0d;

}

.gear-container{

width:90%;

max-width:1200px;

margin:auto;

display:flex;

align-items:center;

gap:80px;

flex-wrap:wrap;

}

.gear-image{

flex:1;

text-align:center;

}

.gear-image img{

width:420px;

border-radius:12px;

box-shadow:0 20px 60px rgba(0,0,0,0.6);

transition:0.4s;

}

.gear-image img:hover{

transform:scale(1.05);

}

.gear-text{

flex:1;

}

.gear-text h1{

font-size:46px;

margin:20px 0;

}

.gear-text span{

color:#d4af37;

}

.gear-text p{

color:#aaa;

line-height:1.7;

margin-bottom:20px;

}


/* MOBILE */

@media(max-width:900px){

.gear-container{

flex-direction:column;

text-align:center;

}

.gear-image img{

width:260px;

}

}

back-button{

width:90%;

max-width:1200px;

margin:auto;

margin-top:120px;

margin-bottom:20px;

}

.back-button a{

text-decoration:none;

color:white;

background:#d4af37;

padding:10px 18px;

border-radius:6px;

font-size:14px;

transition:0.3s;

}

.back-button a:hover{

background:#b9962f;

}

.back-btn{

display:inline-block;

margin-top:35px;

padding:12px 26px;

background:linear-gradient(135deg,#d4af37,#f1c40f);

color:black;

font-weight:600;

text-decoration:none;

border-radius:8px;

transition:0.3s;

box-shadow:0 10px 25px rgba(212,175,55,0.4);

}

.back-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(212,175,55,0.6);

}

/* KUNDENBEWERTUNGEN */

.reviews-section{

margin-top:80px;

text-align:center;

}

.reviews-section h2{

margin-bottom:40px;

font-size:32px;

}

.reviews-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.review-box{

background:#1a1a1a;

padding:25px;

border-radius:10px;

transition:0.3s;

}

.review-box:hover{

transform:translateY(-6px);

border:1px solid #d4af37;

}

.stars{

color:#d4af37;

font-size:18px;

margin-bottom:15px;

}

.review-box p{

color:#aaa;

font-size:14px;

margin-bottom:15px;

}

.review-box span{

color:white;

font-weight:600;

}

/* Sterne Bewertungen */

.stars span{

color:#d4af37;

font-size:20px;

margin-right:4px;

text-shadow:0 0 8px rgba(212,175,55,0.6);

}

.review-box{

background:rgba(255,255,255,0.05);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,0.1);

padding:28px;

border-radius:14px;

transition:0.35s;

box-shadow:0 10px 25px rgba(0,0,0,0.4);

}

.review-box:hover{

transform:translateY(-8px);

border:1px solid #d4af37;

box-shadow:0 15px 40px rgba(212,175,55,0.35);

}