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

.abstand_top {
    margin-top: 50px;;
}

.abstand_bottom {
    margin-bottom: 100px;;
}


.pt-sans-narrow-regular {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-narrow-bold {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
}



/* Centered Container 1024px */
.container-1024 {
  width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

body {

font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;;
  line-height: 1.6;
  color: #ffffff;
  background-color: #3f3f3f;
}

p {
    line-height: normal;
    margin-top: 20px;
}

a {
    color: #feffc2;
    text-decoration: none;
}

/* Header & Navigation */
header {
    background:#000000;
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-container a {
    color: white;
    text-decoration: none;
}

.logo {
  font-size: 1.5rem;

  font-family: "Petit Formal Script", cursive;
  font-weight: 400;
  font-style: normal;

}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

nav a:hover {
    opacity: 0.8;
}

/* Main Content */
main {
    max-width: 100%;

}


.content {

        padding: 10px 30px 10px 10px;


}

.klein {
    font-size: 1rem;
}

.content h1 {
  font-family: "Petit Formal Script", cursive;
  font-style: normal;
  color: #feffc2;
  font-size: 2rem;  
}


.content h2 {
  font-family: "Petit Formal Script", cursive;
  font-weight: bold;
  font-size: 1.2rem;
  font-style: normal;
    color: #feffc2;
}


.content h3 {
  font-family: "Petit Formal Script", cursive;
  font-size: 1.2rem;
}




/* Full Width Section */
.full-width-section {
    width: 100vw;
    text-align: center;
    background-image: url('goldenmodels.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
}


/* Full Width Section */
.full-width-section-video {
    /* width: 100vw; */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
}



.rahmen {
        padding: 10px 30px 10px 10px;
        

}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* 4 Column Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #666;
    line-height: 1.8;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
    object-fit: cover;
    max-height: 250px;
}

/* Footer */
footer {
    background: #000000;
    color: rgb(159, 159, 159);
    text-align: center;
    padding: 2rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #3f3f3f;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    nav.active {
        display: block;
        color: #feffc2;

    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .card {
        padding: 1rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }
}






.video-container {
    position: relative;
    width: 100%;

    overflow: hidden;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Optional: Inhalt zentrieren */
.content {
    position: relative;
    z-index: 1;
    /* ... restliches Styling ... */
}



