     /* Banner Section Styles */
.hero-banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  background: url('https://femerling-immobilien.shop-template.de/wp-content/uploads/2025/09/ueber-uns-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(0deg, #1E3A5F 0%, rgba(0, 56, 108, 0) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	  .hero-banner {
    height: 60vh;
  }
	
  .banner-content h1 {
    font-size: 2.2rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width:700px) {
   
  .banner-content h1 {
    font-size: 1.6rem;
  }
  .banner-content p {
    font-size: 0.9rem;
  }
}

@media (max-width:550px) {
 .hero-banner {
        height: 40vh;
	}
}
/* Section base */
.property-header{
 /* background: #0e2a57; */
 color: #ffffff;      /* white text */
 padding: 60px 0;
}

/* Layout container */
.property-wrap{
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

/* Left block */
.property-title{
  margin: 0 0 10px 0;
  font-size:40px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.25;
}

.property-location{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  opacity: 0.95;
}

.property-location .pin{
  color: #7fb3ff; /* gentle blue accent for location pin */
  flex: 0 0 auto;
}

/* Right block */
.property-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.price-tag {
    background: #0084FF;
    color: #ffffff;
    padding: clamp(10px, 2.2vw, 18px) clamp(14px, 3vw, 30px);
    border-radius: 10px;
    font-weight: 500;
    font-size: 50px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}
@media (max-width:1024px){
.price-tag {
	font-size: 28px;
}
}
/* Responsive stacking for small viewports */
@media (max-width: 640px){
  .property-wrap{
    grid-template-columns: 1fr;
  }
  .property-right{
    justify-content: flex-start;
  }
  .price-tag{
    margin-top: 8px;
  }
}

/* Optional: improved focus visibility for keyboard users */
.price-tag:focus-visible,
.property-location:focus-visible{
  outline: 2px solid #e7eefc;
  outline-offset: 3px;
}
.property-container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      text-align: center;
    }

    .main-image {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
    }

    .main-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .property-info {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(to right, #f9f9f9, #eeeeee);
      padding: 20px 30px;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      flex-wrap: wrap;
    }

    .info-box {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
    }

    .info-box i {
      color: #007bff;
      font-size: 18px;
    }

    .info-box span {
      font-weight: bold;
    }

    /* Thumbnails */
    .thumbnails {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .thumbnails img {
      width: 250px;
      height: 160px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .thumbnails img:hover {
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .property-info {
        gap: 20px;
        padding: 15px;
      }
      .thumbnails img {
        width: 200px;
        height: 130px;
      }
    }

    @media (max-width: 768px) {
      .property-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
      .thumbnails {
        gap: 15px;
      }
      .thumbnails img {
        width: 100%;
        max-width: 320px;
      }
    }


.property-features {
  /* background-color:#274D79; */
  /* padding: 50px 50px; */
  color: #ffffff;
  max-width:1350px;
  margin: 0 auto;
  border-radius: 10px;
}

.property-features h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.features-wrapper { display: flex ; flex-wrap: wrap; gap: 40px; /* max-width: 1000px; */ margin: 0 auto; justify-content: space-between; }


.feature {
  /* width: 120px; */
  display: flex;
 flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.feature img {
  width:32px;
  height:32px;
  /* margin-bottom: 12px; */
}

.feature p {
  font-size: 20px;
  font-weight:300;
  margin: 0;
  background-color: #274D79;
  display: block;
  padding: 12px 30px;
  border-radius: 50px;
}

@media (max-width: 1440px) {

}


/* Responsive tweaks */
@media (max-width: 768px) {
  .features-wrapper {
    gap: 30px;
  }


  .feature img {
    width: 40px;
    height: 40px;
  }

  .feature p {
    font-size: 15px;
  }
	

}

@media (max-width: 480px) {
  .features-wrapper {
    gap: 20px;
  }

  .feature {
    width: 100%;
  }

  .property-features h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .feature p {
    font-size: 14px;
  }
}


.property-description {
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  max-width:1350px;
  margin: 0px auto;
  padding-bottom: 75px;
  padding-top:60px;
}

.property-description h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
}

.property-description p {
  font-size: 16px;
  line-height: 1.6;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .property-description {
    padding: 40px 15px;
  }

  .property-description h2 {
    font-size: 24px;
  }

  .property-description p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .property-description {
    padding: 30px 10px;
  }

  .property-description h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .property-description p {
    font-size: 14px;
  }
}



.property-showcase {
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.image-container {
  overflow: hidden;
  border-radius: 8px;
  
}

.image-container img {
  display: block;
  width: 100%;
  height:687px;
  object-fit: cover;
}

.info-overlay {
  position: absolute;
  top: 502px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  width: calc(100% - 40px);
  max-width: 1190px;
  padding: 35px 50px;
  border-radius: 10px;
}

.info-item {
  display: flex;
  /* align-items: center; */
  gap: 12px;
  flex-direction: column;
  padding-right: 45px;
  border-right: 1px solid #8c8c8c;
}

.info-item:last-child {
  border: none;
}

.info-item img {
  width: 32px;
  height: 32px;
}

.info-text {
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
}

.label {
  display: block;
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.value {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .info-overlay {
    padding: 15px 20px;
    gap: 15px;
	top: 375px;
  }

  .info-item img {
    width: 28px;
    height: 28px;
  }

  .label {
    font-size: 13px;
  }

  .value {
    font-size: 17px;
  }

	 .image-container img {
  height:487px;
  object-fit: cover;
 }
	
}

@media (max-width:890px) {
  .info-overlay {
    flex-wrap: wrap;
    gap: 6px;
    width: calc(100% - 40px);
	  top: 400px;
  }

  .info-item {
    flex: 1 1 10%;
	      gap: 4px;
    padding-right: 3px;
  }
	
 .image-container img {
  height:387px;
  object-fit: cover;
 }
	
}


@media (max-width: 480px) {
  .info-overlay {
    padding: 10px 15px;
    gap: 5px;
  }

  .info-item img {
    width: 24px;
    height: 24px;
  }

  .label {
    font-size: 12px;
  }

  .value {
    font-size: 12px;
  }
	
 .image-container img {
  height:287px;
  object-fit: cover;
 }	
	
}


.contact-form div#wpforms-1329 {
    width: 100% !important;
    max-width: 954px !important;
}

/* ====== Contact Form Wrapper ====== */
.contact-form {
  max-width: 1350px !important;
  margin: 120px auto !important;
  padding: 30px !important;
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08) !important;
}

/* ====== Form Title ====== */
.contact-form h2 {
  font-size:34px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 25px !important;
  color: #222 !important;
}

/* ====== Form Layout ====== */
.k-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

/* ====== Labels ====== */
.k-form label {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ====== Inputs & Textarea ====== */
.k-form input,
.k-form select,
.k-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  border: 1px solid #ffffff36 !important;
  border-radius: 6px !important;
  outline: none !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
  background: #F4F4F4 !important;
  height: 54px !important;
}

.k-form input:focus,
.k-form select:focus,
.k-form textarea:focus {
  border-color: #0078d7 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(0,120,215,0.15) !important;
}

/* ====== Placeholder ====== */
.k-form ::placeholder {
  color: #999 !important;
  font-size: 13px !important;
}

/* ====== Textarea ====== */
.k-form textarea {
  min-height: 110px !important;
  resize: vertical !important;
}

/* ====== Submit Button ====== */

.k-form button#wpforms-submit-1329{
  background:#0084FF !important;
  color: #fff !important;
  font-size:24px !important;
  font-weight: 600 !important;
  padding: 12px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.15s !important;
   width: 408px;
    height: 60px;
}

.k-form button:hover,
.k-form input[type="submit"]:hover {
  background: #005fa3 !important;
  transform: translateY(-1px) !important;
}

.k-form button:active,
.k-form input[type="submit"]:active {
  transform: translateY(0) !important;
}

/* ====== Date + Time Row ====== */
.k-form .date-time-row {
  display: flex !important;
  gap: 15px !important;
}

.k-form .date-time-row > div {
  flex: 1 !important;
}

.k-form input#wpforms-1329-field_8 {
    padding-left: 43px !important;
}

.immobilien-slider {
    max-width: 1350px;
    margin: 0 auto;
	padding-bottom:180px !important;
}


.immobilien-slider .slick-dots li button {
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
    width: 246px !important;
    height: 149px !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    background-size: contain !important;
    cursor: pointer !important;
}



.main-section-property{
	position:relative;
}


.immobilien-slider .slick-dots li {
	width:auto !important;
	
}


.immobilien-slider .slick-dots {
    position: relative;
    bottom: -28px !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex !important;
    flex-wrap: wrap;
    gap: 157px 16px;
}

.immobilien-slider .slick-dots li {
  margin: 0; /* Reset any default margin */
}




.immobilien-slider .slick-dots li button:before {
	color:#00000000 !important;
}



	.padding-lr{
		padding-left:15px !important;
		padding-right:15px !important;
	}
	
@media (max-width:1024px) {
.immobilien-slider .slick-dots li button {
    width: 202px !important;
    height: 113px !important;
	}

	
	
}

@media (max-width:890px) {
	.immobilien-slider .slick-dots {
    position: relative;
    bottom: -131px !important;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex !important;
    flex-wrap: wrap;
    gap: 111px 16px;
}
}


	@media (max-width:700px) {
		.immobilien-slider .slick-dots li button {
      width: 111px !important;
    height: 68px !important;
			
		}
		
		.k-form button#wpforms-submit-1329 {
			width:100%;
		}
		
		
	}	


.mobile-info {
	display:none !important;
    position: unset !important;
    transform: unset !important;
    margin: 0 auto !important;

   
}
.mobile-info .info-item:nth-child(2),
.mobile-info .info-item:nth-child(4) {
    border: none !important;
}


@media (max-width:700px) {
		.immobilien-slider {
    padding-bottom: 95px !important;
   }
   .immobilien-slider .slick-dots {
        position: relative;
        bottom: -23px !important;
		gap: 58px 14px !important;
    }
	 .info-overlay {
    bottom:83px;
	}
	
	.mobile-info{
		display:block ;
		 display: grid !important;                          /* enable grid */
    grid-template-columns: repeat(2, 1fr);  /* 2 equal columns */
    grid-template-rows: repeat(2, auto);    /* 2 rows, auto height */
    gap: 1rem;                              /* optional spacing */
	}
	
	.desktop-info{
		display:none !important;
	}
	
	
}

/*--new-code--*/
.hero-banner-Immobilien {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  background: url('https://femerling-immobilien.shop-template.de/wp-content/uploads/2025/09/immobilien-banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-banner-Immobilien .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(0deg, #1E3A5F 0%, rgba(0, 56, 108, 0) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .banner-content h1 {
    font-size: 2.2rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
	
	.hero-banner-Immobilien {
		height: 52vh !important;
	}
}

@media (max-width: 576px) {
  .hero-banner-Immobilien  {
    height: 40vh !important;
  }
  .banner-content h1 {
    font-size: 1.6rem;
  }
  .banner-content p {
    font-size: 0.9rem;
  }
}

 
   .section-title {
      text-align:left;
      margin-bottom:-50px;
    }
    .section-title span { font-size: 20px; color: #fff; display: block; }
    .section-title h2 { font-size: 36px; margin-top: .5rem; color: #fff; }

    
 
    .property-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform .2s ease;
      display: flex;
      justify-content: center;
    }
 
    .property-card img { width: 100%; display: block; }
    .property-info-2{ padding: 1rem; }
    .property-info-2 .price { color: #00386c; font-size: 30px; font-weight: 400;  }
.property-info-2 .price-smb{font-size:20px;}
    .property-info-2 p { color:#000; padding-bottom: 10px; }
  
    .property-meta span {
      display: flex;
      align-items: center;
      gap: .3rem;
      border-right: 1px solid #000;
      padding-right: 15px;
      
    }
.property-meta {
  display: flex;              /* keep flex layout always */
  gap: 1rem;
  font-size: 14px;
  color: #333;

  opacity: 0;                 /* start hidden */
  max-height: 0;              /* collapse space */
  overflow: hidden;           /* prevent content spill */
  transform: translateY(10px);/* slight slide down */
  transition: all 0.3s ease;  /* smooth animation */
}

.property-card:hover .property-meta {
  opacity: 1;
  max-height: 200px;          /* enough to reveal content */
  transform: translateY(0);   /* slide into place */
}

     .property-meta span:last-child{
      border: none;
     }
    .property-meta img { width: 18px; height: 18px; }

    .property-card{
      position: relative;
    }

    .banner-glass-box {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 0.5px solid rgba(255, 255, 255, 0.51);
    max-width: 394px;
    position: absolute;
    bottom: 16px;
    transition: background-color 0.6s ease;
    will-change: background-color;
  }


 .property-card:hover .banner-glass-box{
  background-color: rgba(255, 255, 255, 0.85);
}

