/* =========================================================
   SENSE LIFTING – MASTER CSS
   Rustig • Premium • Conversiegericht
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --blue-100: #eef5fa;
  --blue-300: #8bb8d9;
  --blue-500: #6fa3c7;

  --gold-400: #d4b06a;
  --gold-500: #c9a35d;

  --dark-900: #1f2a33;
  --dark-600: #5f6b74;

  --radius-lg: 22px;
  --radius-md: 16px;

  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.1);

  --transition: 0.35s cubic-bezier(.25,.8,.25,1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.nav{
    width:100%;
    position: fixed;
}
.hero-content{
    padding-top: 150px;
    padding-bottom: 150px;
}

/* ---------- BASE ---------- */
body {
  font-family: "Quicksand", sans-serif;
  background: #fff;
  color: var(--dark-900);
  line-height: 1.65;
  max-width: 100% !important;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}
h1{
    font-size: 48px;
    color: #246898;
  font-family: "Sintony", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h2{
    font-size: 38px;
    color: #246898;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: normal;
}
h3{
    font-size: 21px;
    color: #246898;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.subtitle{
    font-size: 26px;
    color: #4e90bf;
}
p {
  color: var(--dark-600);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}
.header{
    
    width:100%;
    position: fixed;
    z-index: 99999999999;

}
.badge-primary{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size:11px;
  color:#FFF;
  background-color: #c9a35d;
  border-radius:5px;
  box-shadow: 1px 2px 4px #111;
}
.badge-danger{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size:11px;
  color:#FFF;
  background-color: #c9a35d;
  border-radius:5px;
  box-shadow: 1px 2px 4px #111;
}
.badge-warning{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size:11px;
  color:#FFF;
  background-color: #c9a35d;
  border-radius:5px;
  box-shadow: 1px 2px 4px #111;
}
.badge-success{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size:11px;
  color:#FFF;
  background-color: #c9a35d;
  border-radius:5px;
  box-shadow: 1px 2px 4px #111;
}
/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 130px 0 160px;
  text-align: center;
  background: linear-gradient(to bottom, #eaf2f8, #ffffff);
  overflow: hidden;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
}

.hero .subtitle {
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 14px;
}

.hero .small {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 34px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  padding: 10px 35px;
    border-radius: 25px;
    background: linear-gradient(135deg, #a17217, #dfbb78);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: var(--transition);
  box-shadow: 0 5px 5px rgba(201, 163, 93, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 163, 93, 0.5);
}

/* ---------- GRID SYSTEM ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* ---------- CARDS ---------- */
.card {
  background: rgba(255, 255, 255, 0.66);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 176, 106, 0.18),
    transparent
  );
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.card p strong {
  display: block;
  color: var(--gold-500);
  margin-bottom: 6px;
  font-weight: 500;
}

.card p {
  font-size: 0.95rem;
}

/* ---------- STEPS ---------- */
.step {
  text-align: center;
  padding: 30px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---------- TESTIMONIALS ---------- */
.quote {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-style: italic;
  transition: var(--transition);
}

.quote:hover {
  transform: translateY(-4px);
}

.quote span {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--dark-600);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #111;
  color: #aaa;
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
}


.herobg{
  width:100%; position: absolute;
}
.showdesktop{
  display:block
}
.showmobile{
  display:none;
}
.bodybg{
  position: absolute; height: 1670px; width: 100%;
}
.bgmoment{
  width:100%; position:absolute;
}

.dropdown-menu{
  background-color: #FFF;
  top: 85px;
  width:100%;
  height: 0px;
  overflow:hidden;
  position:fixed;
  z-index: 99;
}
.table>:not(caption)>*>*{
  background-color: #29417c;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .testimonials{
    background-size: 100% 100% !important;
  }
  .bodybg{
    position: absolute; height: 3700px !important; width: 100%;
  }
  h1 {
      font-size: 48px;
      color: #196499;
      font-family: "Sintony", sans-serif;
      font-weight: 700;
      font-style: normal;
      text-shadow: 2px 2px 8px #FFF;
  }
  .subtitle {
      font-size: 26px;
      color: #265f88;
  }

  .showdesktop{
    display:none;
  }
  .bgmoment{
    width:auto; height:100%; max-width:none; position:absolute;
  }
  .lengtmomenttitle{
    font-size:24px;
  }
  .showmobile{
    display:block;
  }
  .herobg{
    height:95%; width:auto; max-width:none; position: absolute; 
  }
  .section {
    padding: 70px 0;
  }
}
