  /* ---------- Home-Seite ---------- */

  html {
    scroll-behavior: smooth;
  }
  
  body { /* Grundsätzliches Design der Website */

    font-family: Arial, Helvetica, sans-serif;
    color: #e0e0e0;
    line-height: 1.6rem;
  }

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex: 1;
  }

  body.Home {
    background-color: #0f0f0f;
    background-image: url("./Media/Chris\ Hut\ Nah.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  body::before { /* Overlay über dem Hintergrundbild, um dieses dunkler zu bekommen */
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  
  h1 {
    color: #e0e0e0;
    margin-bottom: 0.5em;
  }

  h2 {
    color: #e0e0e0;
    margin-bottom: 0.5em;
  }

  h3 {
    color: #e0e0e0;
    margin-bottom: 0.5em;
  }
  
  p {
    margin-bottom: 1em;
  }
    
  /* --- Navigation --- */
  
  nav {
    position: relative;
    background-color: rgba(15, 15, 15, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 3rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 1rem;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
  }
    
  nav a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #e63946;
  }

  .burger { /* Burger-Navigation für Mobile */
    display: none;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* --- Hero --- */

  .hero {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    text-align: center;
  }
  
  .hero-content img {
    max-width: 80%;
    height: auto;
  }
  
  .cta-button { /* Design für jeden Button soll gleich sein */
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #b32f38;
  }
  
  /* --- Teaser-About --- */

  .teaser-about {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 80vh;
  }

  .teaser-about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
  }

  .teaser-about-image {
    flex: 1 1 45%;
    max-width: 50%;
    height: auto;
  }

  .teaser-about-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 1000px;
    display: block;
    margin: 0 auto;
    border-radius: 1rem;
  }

  .teaser-about-text {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: justify;
  }

  /* --- Teaser-Videos --- */

  .teaser-videos {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 80vh;
  }

  .teaser-videos-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
  }

  .teaser-videos-content iframe {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  }

  /* --- Teaser-Fields --- */

  .teaser-fields {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 80vh;
    align-items: center;
    justify-content: center;
  }

  .teaser-fields-content {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .teaser-fields-images {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
  }

  .teaser-fields-images img {
    flex: 1 1 30%;
    max-width: 30%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  /* --- Teaser-Loadout --- */

  .teaser-loadout {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 80vh;
    align-items: center;
    justify-content: center;
  }

  .teaser-loadout-content {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .teaser-loadout-images {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
  }

  .teaser-loadout-images img {
    flex: 1 1 30%;
    max-width: 30%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  /* --- Teaser-Blog --- */

  .teaser-blog {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 80vh;
    align-items: center;
    justify-content: center;
  }

  .teaser-blog-content {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .teaser-blog-overview {
    display: flex;
    gap: 4rem;
    padding: 2rem;
  }
  
  /* ---------- Footer ---------- */

  footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    border-radius: 10px;
    color: #aaa;
    font-size: 0.9rem;
  }
  
  footer a {
    color: #e63946;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  
  footer a:hover {
    text-decoration: underline;
  }


  /* ---------- Seite-About ---------- */

  body.About {
    background-color: #0f0f0f;
    background-image: url("./Media/Chris\ About.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  .about-intro {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    max-height: 80vh;
    align-items: center;
    justify-content: center;
  }

  .about-team {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    align-items: center;
    justify-content: center;
  }

  .about-team h2 {
    text-align: center;
  }

  .about-team-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
  }

  .about-team img {
    flex: 1 1 30%;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }
  

  /* ---------- Seite-Videos ---------- */
 
  body.Videos {
    background-color: #0f0f0f;
    background-image: url("./Media/Smoke.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  .content-box-videos {
    display: flex;
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    width: 100%;
    max-width: 1200px;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .video-column-latest-videos {
    flex: 1 1 48%;
  }

  .video-column-latest-videos h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .video-column-best-videos h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .video-column-best-videos {
    flex: 1 1 48%;
  }

  .video-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .video-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  }

  /* ---------- Seite-Loadout ---------- */

  body.Loadout {
    background-color: #0f0f0f;
    background-image: url("./Media/Chris\ &\ Paddi\ Nah.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  .loadout-content-box {
    padding: 4rem 2rem;
    margin: 4rem auto;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    background-color: rgba(15, 15, 15, 0.6);
    max-width: 1200px;
    display: flex;
    flex-direction: column;    
    align-items: center;
    gap: 4rem;
  }

  .loadout-category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;  
  }

  .loadout-image {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .loadout-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
  }

  .loadout-text {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: justify;
  }

/* ---------- Seite-Fields ---------- */

body.Fields {
  background-color: #0f0f0f;
  background-image: url("./Media/GX011755.00_10_35_21.Standbild006.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.fields-content-box {
  padding: 4rem 2rem;
  margin: 4rem auto;
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  background-color: rgba(15, 15, 15, 0.6);
  max-width: 1200px;
  display: flex;
  flex-direction: column;    
  align-items: center;
  gap: 4rem;
}

.field-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;  
}

.field-image {
  flex: 1 1 45%;
  max-width: 45%;
}

.field-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.field-text {
  flex: 1 1 45%;
  max-width: 45%;
  text-align: justify;
}



/* ---------- Seite-Blog ---------- */

body.Blog {
  background-color: #0f0f0f;
  background-image: url("./Media/Chris\ Sniper\ Rücken.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.blog-overview {
  padding: 4rem 2rem;
  margin: 4rem auto;
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  background-color: rgba(15, 15, 15, 0.6);
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
}

.blog-preview {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin: 0 auto;
}

.blog-preview a {
  color: #e0e0e0;
  text-decoration: none;
}

.blog-preview a:hover {
  text-decoration: underline;
}

/* ---------- Blog-Beiträge ---------- */

body.Blog-Beitrag {
  background-color: rgba(15, 15, 15, 0.85);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.blog-content-box {
  padding: 4rem 2rem;
  margin: 4rem auto;
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  background-color: rgba(15, 15, 15, 0.6);
  max-width: 1200px;
  text-align: justify;
}

.blog-content-box h1 {
  text-align: center;
}

/* ---------- Responsive Design ---------- */

/* --- Geräte bis 1024px Breite (kleine Laptops, Tablets quer) --- */
@media (max-width: 1024px) {
  
  /* --- Allgemeines Layout --- */
  .teaser-about,
  .teaser-videos,
  .teaser-fields,
  .teaser-loadout,
  .teaser-blog,
  .about-intro,
  .about-team,
  .loadout-content-box,
  .fields-content-box,
  .blog-overview,
  .blog-content-box,
  .content-box-videos {
    padding: 3rem 1rem;
    margin: 2rem auto;
  }

  /* --- Teaser About Bild & Text --- */
  .teaser-about-content {
    flex-direction: column;
  }

  .teaser-about-image,
  .teaser-about-text {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .teaser-about-text {
    text-align: justify;
  }

  /* --- Teaser Videos --- */
  .teaser-videos-content {
    flex-direction: column;
  }

  .teaser-videos-content iframe {
    max-width: 100%;
  }

  /* --- Teaser Fields Bilder --- */
  .teaser-fields-images img {
    max-width: 45%;
  }

  /* --- Loadout Kategorien --- */
  .loadout-category {
    flex-direction: column;
  }

  .loadout-image,
  .loadout-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  /* --- Video-Spalten nebeneinander bleiben --- */
  .content-box-videos {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .video-column-latest-videos,
  .video-column-best-videos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* --- Blog Grid --- */
  .blog-overview {
    grid-template-columns: 1fr;
  }

  .blog-preview {
    max-width: 100%;
  }
}

/* --- Geräte bis 768px Breite (Tablets hoch, Smartphones quer) --- */
@media (max-width: 768px) {

  /* --- Navigation --- */
  nav {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    align-items: center;
  }

  .nav-links.show {
    display: flex;
  }

  .burger {
    display: block;
    align-self: flex-end;
  }

  /* --- Hero --- */
  .hero-content img {
    max-width: 100%;
  }

  /* --- Teaser-Bereiche --- */
  .teaser-about-content,
  .teaser-videos-content,
  .teaser-fields-images,
  .teaser-loadout-images {
    flex-direction: column;
    align-items: center;
  }

  .teaser-about-image,
  .teaser-about-text,
  .teaser-fields-images img,
  .teaser-loadout-images img {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .teaser-fields-images img,
  .teaser-loadout-images img {
    max-width: 90%;
  }

  .teaser-videos-content iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* --- Video-Spalten untereinander --- */
  .content-box-videos {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 3rem;
  }

  .video-column-latest-videos,
  .video-column-best-videos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* --- Loadout & Fields Layout --- */
  .loadout-category,
  .field-card {
    flex-direction: column;
  }

  .loadout-image,
  .loadout-text,
  .field-image,
  .field-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  /* --- Blog Vorschau --- */
  .blog-overview {
    grid-template-columns: 1fr;
  }

  .blog-preview {
    max-width: 100%;
    padding: 1.5rem;
  }

  /* --- Footer --- */
  footer {
    font-size: 0.85rem;
    padding: 1.5rem 1rem;
  }
}

/* --- Geräte bis 480px Breite (Smartphones hoch) --- */

@media (max-width: 480px) {

  /* --- Allgemein --- */
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    width: 100%;
    max-width: 300px;
  }

  /* --- Navigation --- */
  nav {
    padding: 0.5rem;
  }

  .nav-links {
    gap: 0.4rem;
  }

  .burger {
    font-size: 1.2rem;
  }

  /* --- Hero --- */
  .hero {
    padding: 2rem 1rem;
  }

  .hero-content img {
    max-width: 100%;
  }

  /* --- Teaser-Bereiche --- */
  .teaser-about,
  .teaser-videos,
  .teaser-fields,
  .teaser-loadout,
  .teaser-blog {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
  }

  .teaser-about-image img,
  .teaser-fields-images img,
  .teaser-loadout-images img {
    max-width: 100%;
    border-radius: 0.5rem;
  }

  .teaser-videos-content iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* --- Video-Bereich --- */
  .content-box-videos {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .video-grid {
    gap: 1.5rem;
  }

  /* --- Loadout & Fields --- */
  .loadout-content-box,
  .fields-content-box {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .loadout-category,
  .field-card {
    gap: 1.5rem;
  }

  /* --- Blog --- */
  .blog-preview {
    padding: 1rem;
  }

  /* --- Footer --- */
  footer {
    font-size: 0.8rem;
    padding: 1.5rem 0.5rem;
  }

  footer p {
    margin-bottom: 0.8rem;
  }
}

