
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 19px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}


html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: #f8f9fa;
}

.container {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 70px); 
  width: 100%;
  overflow: hidden;
  margin-top: 70px; 
  color: white;
}

.left, .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;

}

.left::after, .right::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

.left::before, .right::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white
  z-index 1;
}

.content {
  position: relative;
  z-index: 2;
  animation: fadeIn 2s ease;
}

.left {
  background-image: url(Images/DSC03821.jpg);
  background-position: center 40%; 
}

.right {
  background-image: url(Images/lele\ Kopie.png);
  background-position: center 40%
}


h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 600;
  color: #333;
}

.text-white {color: white} 

p {
  font-size: 1.2rem;
  margin: 20px 0;
  color:#333;
}

.btn {
  background-color: rgba(255, 255, 255, 0.85);
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}

.btn:hover {
  background-color: black;
  color: white;
}


.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 40px;
    background: linear-gradient(135deg, #f3e9dc, #ffffff);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section .info {
  flex: 1;
  padding: 40px;
  opacity: 0;
  transition: all 1s ease;
}

.info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.info p {
  font-size: 1.1rem;
  color: #555;
}


.image-side {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;  
  background: none;
  box-shadow: none;
}
.profile-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
  margin-left: -150px;
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #222;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
}

.text-left {text-align: left;}

.project-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 60px auto;
  max-width: 1200px;
}

.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  width: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}
.project-detail {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}

.project-detail h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.project-detail p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #444;
}

.media-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.media-gallery img,
.media-gallery video {
  width: 70%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.project-detail {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.project-detail h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.intro {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: #444;
}

.block-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.block-section.reverse {
  flex-direction: row-reverse;
}

.block-section .text,
.block-section .media {
  flex: 1;
  min-width: 280px;
}

.block-section .text h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.block-section .text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.block-section .media video {
  width: 100%;
  max-width: 360px; 
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.final .text-full {
  max-width: 800px;
  margin: 0 auto ;
  text-align: center;
}

.final h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.final p {
  font-size: 1.05rem;
  color: #555;
}
.project-detail {
  padding-top: 100px;
}
.project-detail {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  padding-top: 100px;
}

.project-detail h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.intro {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: #444;
}

.block-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.block-section.reverse {
  flex-direction: row-reverse;
}

.block-section .text,
.block-section .media {
  flex: 1;
  min-width: 280px;
}

.block-section .text h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.block-section .text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.block-section .media img,
.block-section .media video {
  width: 70%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.final .text-full {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.final p {
  font-size: 1.05rem;
  color: #555;
}

body.logo-background {
  background-image: url(Images/LogoReplay.png);
}

.fussball-hero {
  background: url('Images/IMG_3876.JPG') center 15% /cover no-repeat;
  text-align: center;
  color: white;
  padding: 140px 20px 80px;
  position: relative;
}

.fussball-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

.fussball-hero h1,
.fussball-hero p {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.fussball-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.fussball-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.fussball-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  gap: 30px;
  background: #f9f9f9;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: #444;
}

.rasen-footer {
  height: 120px;
  background: url('Images/rasen.png') bottom repeat-x;
  background-size: cover;
}
.spielweise-section {
  background-color: #fff;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.spielweise-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #111;
}

.spielweise-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.spielweise-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.spielweise-gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  object-fit: cover;
}
.faith-section {
  padding: 80px 40px;
  background-color: #fefefe;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.faith-text {
  flex: 1;
  min-width: 300px;
  color: #333;
  text-align: left;
}

.faith-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left;
}

.faith-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.faith-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.faith-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.idol-section, .faith-section {
  padding: 80px 40px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.idol-text, .faith-text {
  flex: 1;
  min-width: 300px;
  color: #333;
  text-align: left;
}

.idol-text h2, .faith-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
  text-align: left;
}

.idol-text p, .faith-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.idol-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.idol-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.navbar {
  position: fixed;
  top: 0;
  height: 70px;
  z-index: 2;
}

html, body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

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

body, html {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #222;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a:hover {
  color: #007bff;
}

.hero {
  height: 100vh;
  background: url('Images/IMG_3876.JPG') center 90% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

/* Max 1024px – Tablets quer */
@media screen and (max-width: 1024px) {
  .nav-container {
    padding: 15px;
  }

  .section,
  .block-section,
  .faith-section,
  .idol-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .block-section.reverse {
    flex-direction: column;
  }

  .block-section .text,
  .block-section .media {
    max-width: 100%;
    padding: 0 20px;
  }

  .faith-text,
  .idol-text {
    text-align: center;
  }

  .faith-image img,
  .idol-image img {
    max-width: 90%;
  }
}

/* Max 768px – Mobile Layout */
@media screen and (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .container {
    flex-direction: column;

  }

  .text-left {text-align: center;}
  
  .logo {
    font-size: 22px;
    white-space: nowrap;
  }

  .nav-links {
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .spielweise-section,
  .section {
    padding: 20px;
  }

  .spielweise-gallery img,
  .media-gallery img,
  .media-gallery video {
    width: 100%;
    max-width: 100%;
  }
}


/* Max 480px – Smartphones mini */
@media screen and (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .card {
    max-width: 100%;
    padding: 20px;
  }

  p {
    font-size: 1rem;
    padding: 0 10px;
    line-height: 1.6;
  }
}
