:root {
    --yellow: #e0f33e;
    --dark: #221603;
    --background: #d0c63e;
    --orange: #a52c0b;
    --text-light: lightgray;
}
/* Alles zurücksetzen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ganze Seite */

body{ 
    font-family:Arial, sans-serif ;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
       
    ),
    linear-gradient(
        #221603,
        #d0c63e
    );}
/* Kopfbereich */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     position:sticky;
     top: 0;
     z-index:1000;
    padding: 20px 60px;
    
    background:rgba(17, 24, 39, 0.5);
   
}

/* Menü */

nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 30px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.12);
    
}

nav a {
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: bold;

    padding: 9px 16px;
    border-radius: 25px;

    transition: 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #e0f33e;
    transform: translateY(-1px);
}
.logo,
.logo a {
    color: white;
    text-decoration: none;
}
/* Links */


/* Startbereich */
.hero {
    min-height: 0;
    aspect-ratio: 2 / 3;

    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url("images/hero.3.png");

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Überschrift */
.hero h2 {
    font-size: 70px;
    color:#e59c1f;
    margin-top:-600px;
}

/* Text */
.hero p {
    margin-top: 22px;
    font-size: 30px;
    color: lightgray;
   
}

/* Button */
button {
    margin-top: 45px;

    padding: 20px 50px;

    font-size: 18px;

    border: none;
    border-radius: 50px;

    background: #a52c0b;
    color: white;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: scale(1.3);
}


.logo {
    font-size: 22px;
    letter-spacing: 1px;

    
    
    
}
.hero .badge{
    font-size:35px;
    padding: 10px 15px;
    color:#d0c63e;
   transform: translateY(-600px);


}
.services{ 
    
    padding: 50px 100px;
    text-align: left;
    min-height: 1100px;
    font-size: 25px;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
       
    );
   background:linear-gradient(
      var(--dark), 
      #221603)

    
    
    
        
    
    

}

.services h2 {
    font-size: 80px;
    color:#e0f33e;
}

.cards {
    display:flex;
    gap:30px;
    margin-top: 150px;
    justify-content:space-between;
}


.card {
    background: rgba(255, 255, 255, 0.06);
    padding: 35px;
    border-radius: 24px;
    color: white;
    width: 450px;
    min-height: 450px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition: 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    
    
  
}

.card {
    flex:1;
    min-width:0;
}
    

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(224, 243, 62, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}



    .card h3 {
    margin-bottom: 20px;
    color: #e0f33e;
    font-size: 24px;
}
    

.card p {
    margin-left:-10px;
    line-height: 1.4;
    
}
.icon {
    
   .icon {
    font-size: 50px;
    margin-bottom: 25px;
} 
}

.card:hover .icon {
    transform: scale(1,1);
    
}
.about {
    padding:  100px;
    text-align: center;
    min-height:1000px;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
       
    ),
    linear-gradient(
        #221603,
        #d0c63e
    );
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about h2 {
    font-size: 80px;
    color: #e0f33e;
    margin-bottom: 30px;
    
}

.about p {
    font-size: 30px;
    color: lightgray;
    line-height: 1.6;
}

.about-text { width:50%;

}

.about-image {
    width: 300px;
    height: 250px;

    background: white;
    color: black;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 20px;
}
.contact {
    padding: 100px;
    text-align: center;
   background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
       
    ),
    linear-gradient(
      #d0c63e, 
      #221603
        
    );
}

.contact h2 {
    font-size: 60px;
    color: #e0f33e;
}

.contact p {
    margin-top: 20px;
    font-size: 22px;
    color: lightgray;
}
html {scroll-behavior:smooth;}

footer {
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)
       
    ),
    linear-gradient(
        #221603,
        #d0c63e
    );
    display:flex;
    justify-content: space-between;
    align-items: center;
flex-direction: column;
    color: white;

    text-align: center;
min-height: 300px;
    padding: 50px;
}

footer h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

footer p {
    color: lightgray;
    margin-top: 10px;
}
section,
footer {
    position: relative;
    z-index: 1;
} 




@media (max-width: 768px) {
 header {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    position:sticky;
    background: rgba(17, 24, 39, 0.5);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        position: sticky;
        top: 0;
        z-index: 1000;
}   
nav {
    display:flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    padding: 5px;
    border-radius:30px;
    backdrop-filter: blur (12px);
    border: 1px solid rgba(255, 255, 255 0.12);

}
nav a {
    font-size: 14px;
    padding: 8px 12px;
    border-radius:30px;
    transition:0,3s;
    
}
nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e0f33e;
    border-radius: 50px;
}
.hero {
    min-height: 0;
    height: 150vw;
    background-position:center ; 
    background-size: 100% 100%;
    background-repeat: no-repeat;
    aspect-ratio: 2 / 3;
        min-height: 0;
    
     

}
.hero h2 {
    margin-top: 0;
    font-size: 20px;
    transform: translateY(-90px);
}
.hero p {
    font-size: 17px;
    transform:translateY(-100px)
}
.hero .badge {
    font-size: 17px;
    transform: translateY(-90px);
}
.hero button {
    font-size: 8px;
    padding: 15px 25px;
    transform: translateY(-140px);
}
.services 
{padding: 50px 20px;}

.services h2 {
    font-size: 45px;
}
.cards {
    flex-direction:column;
    align-items: center;
    gap: 30px;
    margin-top: 70px;
}
.card {
    width: 100%;
    max-width: 350px;
}
.about {
    padding: 60px 20px;
    min-height: auto;
    flex-direction: column;

}
.about-text {
    width: 100%;
}
.about h2 {
    font-size: 45px;
}
.about p {
    font-size: 18px;
}
html {
    scroll-behavior: smooth;
}

    

}
html,body { 
    overflow-x: clip;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;

    width: 0%;
    height: 4px;

    background: #e0f33e;

    z-index: 2000;
}





