/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

p {
	margin-bottom: 15px;
}

.transparent #logo img {
    max-height: 100px !important;
}

.we-badge-bg p {
	display: inline-block;
	border-top: 2px solid #005ca8;
		border-bottom: 2px solid #005ca8;
	padding: 10px 20px;
	font-size: 1rem;
	transform:  translateX(-0%) translateY(-15px) rotate(-90deg);
}

h2 {
	font-size: 50px;
}

h1, h2, h3 {
	text-transform: uppercase;
}

.video.video-fit.mb {
	padding-top: 0 !important;
}

.star-rating {
	margin-left: auto !Important;
}

.dark .nav-vertical li li.menu-item-has-children>a, .dark .nav-vertical-fly-out>li>a, .dark .nav-vertical>li>ul li a, .dark .nav>li.html, .dark .nav>li>a, .nav-dark .is-outline, .nav-dark .nav>li>a, .nav-dark .nav>li>button, .nav-dropdown.dark .nav-column>li>a, .nav-dropdown.dark>li>a {
	color: #fff !important;
}

a.button.primary {
    background: linear-gradient(135deg, rgba(0,92,168, .8), rgba(0,92,168, 1) 50%, rgba(0,92,168, .8)) ;
    background-size: 250%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 .5px 1.1px rgba(0,0,0,.05),0 15px 30px rgba(0,0,0,.1),0 15px 29px rgba(0,92,168,.25) !important;
    transition: box-shadow .3s ease-out, transform .3s ease-out, background-position .5s;
}

a.button.primary.is-outline {
	background: none;
}

.gallery-col .box-image.image-cover {
    background: #f7f7f7;
}

.gallery-col img.attachment-medium.size-medium {
    mix-blend-mode: multiply;
}

/***** BUTTONS *****/

.button-uhl {
  --uhl-accent: #005ca8;

  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: #fff !important;
  position: relative;
  cursor: pointer;
  overflow: hidden;

  /* Apple Glass Default */
  background: rgba(255, 255, 255, 0.08) !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Shine Layer */
.button-uhl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.3) 40%,
    rgba(255,255,255,0.0) 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease;
  pointer-events: none;
}

/* Blue-Fill Layer */
.button-uhl::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0, 92, 168, 0.0) 0%,
    rgba(0, 92, 168, 1) 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.8s ease;
  z-index: -1; /* unter Text, über Glas */
}

/* Hover */
.button-uhl:hover {
  color: #fff !important;
  box-shadow: 0 8px 30px rgba(0, 92, 168, 0.55);
  transform: translateY(-3px);
}

/* Hover: Shine aktiviert */
.button-uhl:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Hover: Blau läuft rein */
.button-uhl:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Default: Apple-Glass Look */
.header-button-1 .button,
.transparent-button {
  --uhl-accent: #005ca8;

  display: inline-block;
  min-width: 220px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-align: center;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* Glas-Effekt */
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  transition: all 0.6s ease;
  box-shadow: none;
  text-shadow: none;
}

/* Hover: Neon-Effekt */
.header-button-1 .button:hover,
.transparent-button:hover {
  background: var(--uhl-accent) !important;
  color: #fff !important;

  /* Neon Glow */
  text-shadow: 0 0 6px rgba(0, 92, 168, 0.9),
               0 0 12px rgba(0, 92, 168, 1),
               0 0 24px rgba(0, 92, 168, 1);

  box-shadow: 0 0 12px rgba(0, 92, 168, 0.8),
              0 0 24px rgba(0, 92, 168, 0.9),
              0 0 48px rgba(0, 92, 168, 1);

  transform: translateY(-2px);
  transition: all 0.8s ease; /* smoother Aufbau */
}

/* Optional: Pulsierendes Neon beim Hover */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(0, 92, 168, 0.9),
                0 0 32px rgba(0, 92, 168, 0.9),
                0 0 60px rgba(0, 92, 168, 0.8);
    text-shadow: 0 0 8px rgba(255,255,255,0.8),
                 0 0 16px rgba(0,92,168,1);
  }
  50% {
    box-shadow: 0 0 24px rgba(0, 92, 168, 1),
                0 0 48px rgba(0, 92, 168, 1),
                0 0 80px rgba(0, 92, 168, 1);
    text-shadow: 0 0 12px rgba(255,255,255,1),
                 0 0 24px rgba(0,92,168,1);
  }
}

.header-button-1 .button:hover,
.transparent-button:hover {
  animation: neonPulse 1.5s infinite alternate;
}

/* Eltern-Wrapper der drei Boxen */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* immer eine Reihe */
  gap: 40px;                               /* Abstand zwischen den Karten */
  align-items: stretch;
}

/* Karten selbst */
.feature-box{
  width: 100%;
  height: 100%;
  background: #f9f7f6;
  border-radius: 14px;
  padding: 40px 28px;
  box-shadow:
    0 2px 6px rgba(0,0,0,.05),
    0 12px 28px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-box:hover{
  transform: translateY(-8px);
  box-shadow:
    0 10px 20px rgba(0,0,0,.10),
    0 26px 60px rgba(0,0,0,.12),
    0 0 34px rgba(0,92,168,.15); /* dezenter blauer Akzent */
}

/* Mobil: untereinander */
@media (max-width: 900px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/******** HEADER ********/



/******** FOOTER ********/

.absolute-footer {
	display: none !important;
	visibility: hidden !important;
	
}

@media only screen and (max-width: 48em) {

/*************** ADD MOBILE ONLY CSS HERE  ***************/


}