:root {
      --gold: #b59a5a;
      --dark: #1d1a10;
      --black: #0f0d08;
      --light: #e8dfcb;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--black);
      color: white;
      overflow-x: hidden;
    }
	
	
	
	@media (max-width: 991px) {
    .h1 {
        font-size: 3rem!important;
    }
}



    /* NAVBAR */
    .navbar {
      background: rgba(15, 13, 8, 0.92);
      backdrop-filter: blur(10px);
      padding: 18px 0;
      transition: all 0.4s ease;
    }

    .navbar-brand img {
      height: 120px;
      transition: 0.4s ease;
    }

    /* HERO */
    .hero {
      height: 100vh;
      background:
        linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.35)),
        url('bilder/schuetze.png') center center/cover fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .hero-content {
      z-index: 2;
      animation: fadeUp 1.2s ease;
    }

    .hero h1 {
      font-size: 5rem;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: 6px;
      text-transform: uppercase;
    }

    .hero p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 25px auto;
      color: #ddd;
    }

    /* BUTTON */
    .btn-custom {
      background: var(--gold);
      color: black;
      border: none;
      padding: 15px 35px;
      border-radius: 50px;
      font-weight: 700;
      transition: all 0.4s ease;
      box-shadow: 0 0 20px rgba(181,154,90,0.3);
    }

    .btn-custom:hover {
      transform: translateY(-5px) scale(1.05);
      background: white;
      box-shadow: 0 0 30px rgba(181,154,90,0.7);
	  color:black;
    }

    /* PARALLAX */
    .parallax-section {
      position: relative;
      padding: 140px 0;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .parallax-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.50);
    }

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

    .section-title {
      font-size: 3rem;
      font-weight: 800;
      color: #9F8750;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    /* CARDS */
    .info-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(181,154,90,0.2);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.5s ease;
      height: 100%;
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(40px);
    }

    .info-card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .info-card:hover {
      transform: translateY(-12px) scale(1.02);
      border-color: var(--gold);
      box-shadow: 0 0 30px rgba(181,154,90,0.35);
    }

    .info-card h3 {
      color: #9F8750;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .icon-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      background: rgba(181,154,90,0.15);
      border: 2px solid var(--gold);
      font-size: 2rem;
      color: #9F8750;
      transition: 0.5s ease;
    }

    .info-card:hover .icon-circle {
      transform: rotate(360deg) scale(1.1);
      background: var(--gold);
      color: black;
    }

    /* GALLERY */
    .gallery img {
      width: 100%;
      border-radius: 20px;
      transition: 0.5s ease;
      filter: grayscale(20%);
    }

    .gallery img:hover {
      transform: scale(1.05);
      filter: grayscale(0%);
      box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    }

    /* CONTACT */
    .contact-box {
      background: linear-gradient(145deg, rgba(181,154,90,0.12), rgba(255,255,255,0.03));
      border-radius: 30px;
      padding: 60px;
      border: 1px solid rgba(181,154,90,0.25);
      animation: fadeUp 1.2s ease;
    }

    .form-control {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: white;
      padding: 15px;
    }

    .form-control::placeholder {
      color: rgba(255,255,255,0.7);
    }

    .form-control:focus {
      background: rgba(255,255,255,0.08);
      color: white;
      border-color: var(--gold);
      box-shadow: none;
    }

    footer {
      padding: 40px 0;
      text-align: center;
      background: #0a0905;
      color: #999;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* MOBILE */
    @media(max-width: 991px) {
      .hero {
        background-attachment: scroll;
      }

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

      .navbar-brand img {
        height: 85px;
      }

      .section-title {
        font-size: 2.2rem;
      }

      .contact-box {
        padding: 35px;
      }

      .parallax-section {
        background-attachment: scroll;
      }
    }
	
	/* =========================================
   NAVBAR
========================================= */

.custom-navbar {
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom-navbar.scrolled {
  padding: 10px 0;
  background: rgba(0,0,0,0.88);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* LOGO */

.navbar-brand img {
  height: 95px;
  transition: 0.4s ease;
}

.custom-navbar.scrolled .navbar-brand img {
  height: 72px;
}

/* NAV LINKS */

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 600;
  margin-left: 22px;
  position: relative;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
  color: #d4b06a !important;
}

/* UNDERLINE EFFECT */

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #d4b06a;
  transition: 0.4s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* BUTTON */

.nav-btn {
  background: linear-gradient(135deg, #d4b06a, #b78b3f);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  color: black;
  font-weight: 700;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(212,176,106,0.25);
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212,176,106,0.45);
  color: black;
}

/* MOBILE */

.navbar-toggler {
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* MOBILE MENU */

@media(max-width: 991px) {

  .custom-navbar {
    background: rgba(0,0,0,0.92);
  }

  .navbar-brand img {
    height: 70px;
  }

  .navbar-collapse {
    padding: 30px 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 15px 0;
    font-size: 1.1rem;
  }

  .nav-btn {
    margin-top: 20px;
    width: 100%;
  }

}

/* =========================================
   FOOTER
========================================= */

.footer-section {
  position: relative;
  background:
    linear-gradient(rgba(5,5,5,0.96),
    rgba(5,5,5,0.98)),
    url('bilder/fahne.png') center/cover;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* LOGO */

.footer-brand {
  display: flex;
  align-items: left;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-brand img {
  width: 250px;
  height: auto;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 320px;
  text-align: left;
  margin:0!important;
}

a {
    color: #9F8750!important;
    text-decoration: none;
}
a:hover {
    color: #fff!important;
    text-decoration: none;
}

a.btn.nav-btn {
    color: #000!important;
    text-decoration: none;
}

/* TITLES */

.footer-title {
  color: #9F8750;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.footer-bottom a {
    color: #9F8750!important;
    text-decoration: none;
}

.footer-bottom a hover {
    color: #fff!important;
    text-decoration: underline;
}




/* LINKS */

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
 
}

.footer-links a:hover {
  color: #d4b06a;
  padding-left: 8px;
}

/* CONTACT */

.footer-contact li {
  color: rgba(255,255,255,0.7);
}


/* BOTTOM */

.footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

/* MOBILE */

@media(max-width: 991px) {

  .footer-section {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    flex-direction: column;
  }

  .footer-text {
    margin: auto;
  }


}

/* =========================
   GALLERY
========================= */

.gallery-card{
    overflow: hidden;
    border-radius: 22px;
    position: relative;
    background: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.gallery-card img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

.gallery-card:hover img{
    transform: scale(1.08);
    filter: brightness(0.8);
}

/* Buttons */

.carousel-control-prev,
.carousel-control-next{
    width: 5%;
	
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 3rem;
    height: 3rem;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-card img{
        height: 240px;
    }

    .carousel .row{
        gap: 20px;
    }

}