/*
Theme Name: Parkside172
Template: hello-elementor
Author: Sonja Gleixner - heart-dsgn.de / Patrick Juchem - juchem-medien.de
Description: Custom Theme for Parkside172 based on Hello Elementor
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.0.1751291324
Updated: 2025-06-30 15:48:44

*/

/* ========================
Fixed Header
======================== */

#masthead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: rgba(255, 255, 255, 1);
	transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

#masthead.scrolled {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ehf-header #masthead {
	background-color: rgba(0, 46, 35, 0) !important;
	backface-visibility: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.3s ease-in-out;
	will-change: all;
}

.ehf-header #masthead.scrolled {
	background-color: rgba(0, 46, 35, 0.6) !important;
	box-shadow: none;
}

.scrolled #logo-mobile {
	display: none;
	opacity: 0;
}

#nav-wrapper {
	padding: 70px 0 40px 0;
}

/* ========================
Mobile Menü
======================== */

.menu-is-active {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	padding: 15vw !important;
	background-color: #F0FCFB !important;
	align-items: center !important;
	z-index: 1 !important;
}

.menu-is-active a {
	font-size: 2.8rem;
	font-family: "the-seasons", sans-serif;
	font-weight: 700 !important;
	font-style: normal;
	letter-spacing: 0;
}

.menu-is-active ul li {
	border-bottom: 0 !important;
}

.hfe-menu-item {
	justify-content: center !important;
}

.hfe-nav-menu__toggle.elementor-clickable.hfe-active-menu.hfe-active-menu-full-width {
	position: relative;
	z-index: 999999;
}

.hfe-nav-menu-icon svg {
	width: 40px !important;
	height: 40px !important;
}

.hfe-menu-item.__mPS2id._mPS2id-h.mPS2id-highlight.mPS2id-highlight-first.mPS2id-highlight-last {
	color: var(--e-global-color-secondary);
}

/* ========================
Buttons & Forms
======================== */

.grundriss-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	max-width: 75%;
	margin: 0 auto;
}

.grundriss-button,
.forminator-button.forminator-button-submit,
.kontaktformular-modal-button {
	background: #FF6E6E;
	border: none;
	padding: 0.4rem 2rem;
	border-radius: 999px!important;
	color: white;
	cursor: pointer;
	text-align: center;
	margin: 0 auto;
}

/* Button Sizes */

/*  Desktop (größer als 1024px) */
@media (min-width: 1025px) {
	.grundriss-button,
	.forminator-button.forminator-button-submit,
	.kontaktformular-modal-button,
	[type="button"], [type="submit"], button{font-size:1.4rem;}
}

/*  Tablet (zwischen 768px und 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
	.grundriss-button,
	.forminator-button.forminator-button-submit,
	.kontaktformular-modal-button,
	[type="button"], [type="submit"], button{font-size:1.2rem;}
}

/*  Mobile (kleiner als 768px) */
@media (max-width: 768px) {
	.grundriss-button,
	.forminator-button.forminator-button-submit,
	.kontaktformular-modal-button,
	[type="button"], [type="submit"], button{font-size:1rem;}
}


.grundriss-button:hover,
.kontaktformular-modal-button:hover,
.grundriss-button:focus,
.kontaktformular-modal-button:focus {
	background-color: #fff;
	color: #FF6E6E;
}


@media (min-width: 1025px) {

	.kontakt-headline {
		font-size: 2.5rem;
		line-height: 1;
		font-weight:bold;
		position:relative;
		padding-left:60px;
	}
	.kontakt-headline::before {
		content: '';
		width: 50px;
		height: 5px;
		position: absolute;
		left: 0;
		top: 30px;
		background: #FF6E6E;

	}
}

/*  Tablet (zwischen 768px und 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

	.kontakt-headline {
		font-size: 2rem;
		line-height: 1;
		font-weight:bold;
		position:relative;
		padding-left:50px;
	}
	.kontakt-headline::before {
		content: '';
		width: 40px;
		height: 4px;
		position: absolute;
		left: 0;
		top: 23px;
		background: #FF6E6E;
	}
}

/*  Mobile (kleiner als 768px) */
@media (max-width: 768px) {
	.kontakt-headline {
		font-size: 2rem;
		line-height: 1;
		font-weight:bold;
		position:relative;
		padding-left:40px;
	}
	.kontakt-headline::before {
		content: '';
		width: 30px;
		height: 3px;
		position: absolute;
		left: 0;
		top: 20px;
		background: #FF6E6E;
	}
}




/* ========================
Modal
======================== */

.grundriss-modal,
.kontaktformular-modal-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	overflow: auto; /* <--- NEU */
	padding: 2rem 1rem; /* etwas Abstand für kleinere Screens */
}
@media (max-width: 600px) {
  .grundriss-modal,
  .kontaktformular-modal-wrapper {
    align-items: flex-start;
  }
}

.kontaktformular-modal-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index:-1;
}

.grundriss-modal,
.kontaktformular-modal-wrapper {
	background: rgba(0, 0, 0, 0.9);
}
.modal-inner,
.kontaktformular-modal-content {
	background: #002E23;
	padding: 2rem;
	max-width: 800px;
	width: 100%;
	max-height: 100%; /* <--- WICHTIG */
	overflow: auto;   /* <--- damit Inhalt gescrollt werden kann */
	box-sizing: border-box;
}


.kontaktformular-modal-close-wrapper { 
position:relative;
	text-align:right;
}

.modal-close-wrapper {
  text-align: right;
}



.modal-close,
.kontaktformular-modal-close,
.modal-close:hover,
.kontaktformular-modal-close:hover,
.modal-close:focus,
.kontaktformular-modal-close:focus {
	width: 20px !important;
	height: 20px !important;
	
	top: 15px;
	right: 10px;
	background: transparent;
	background-image: url('https://parkside.der-juchem.de/wp-content/uploads/2025/06/Gruppe-63.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	cursor: pointer;
	color: transparent;
	z-index: 99999;
}

.modal-navigation {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
}

.modal-navigation button {
	background: #FF6E6E;
	color: white;
	padding: 0.6rem 1.2rem;
	border: none;
	border-radius: 99px;
	cursor: pointer;
}

.modal-content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
}

.modal-inner hr {
	background: #FF6E6E;
	height: 5px;
	border: none;
	margin-bottom: 20px;
	width: 50px;
}

/* ========================
Listen & Text
======================== */

.list-text .elementor-icon-list-item {
	border-bottom-color: #fff;
}

.list-text .elementor-icon-list-text {
	color: #002E23;
}

textarea {
	background: transparent !important;
	border: 0 !important;
}

/* Standard-Schriftgröße */
.forminator-custom-form *{
  font-size: 1.2rem!important;
}

/* Tablets */
@media (max-width: 1024px) {
  .forminator-custom-form *{
    font-size: 1.2rem!important;
  }
}

/* Smartphones */
@media (max-width: 768px) {
  .forminator-custom-form * {
    font-size: 1rem!important;
  }
}

/* Tabelle mit Flächen */ 
.vermietet { 
	padding:10px;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cline x1='0' y1='12' x2='12' y2='0' stroke='rgba(255,110,110,0.35)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.verfuegbar-ab { padding:10px; border:3px solid #fff; }

.sofort-verfuegbar { padding:10px; border:3px solid rgba(255,110,110,1);}





/* ========================
Desktop Layout
======================== */

@media (min-width: 1025px) {
	.eingerueckt {
		padding-left: 100px;
	}

	.line:before {
		content: '';
		width: 80px;
		height: 7px;
		background: var(--e-global-color-secondary);
		position: absolute;
		left: 0;
		top: 46px;
	}

	.list-background {
		background-color: #F0FCFB;
	}

	.elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child)::after {
		border-top: 1px solid #002E23;
	}

	.hfe-menu-item.__mPS2id._mPS2id-h {
		margin-right: 3rem;
	}

	.list-text .elementor-icon-list-item {
		border-bottom-color: #fff!important
	}

	.list-text .elementor-icon-list-text {
		color: #002E23!important;
	}
	
	.grundriss-buttons {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 1rem;
		max-width: unset;
		margin: 0 auto;
		justify-content: center;
	}

	.grundriss-button {
		width: 100%;
		padding: 0.4rem 1rem;
		text-align: center;
	}
	
}

/* ========================
Tablet Layout
======================== */

@media (max-width: 1024px) {
	.grundriss-buttons {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		max-width: unset;
		margin: 0 auto;
		justify-content: center;
	}

	.grundriss-button {
		width: 100%;
		padding: 0.4rem 1rem;
		text-align: center;
	}

	.modal-navigation button span {
		font-size: 0;
	}

	.etage {
		display: none;
	}

	.hfe-menu-item.__mPS2id._mPS2id-h {
		text-align: center;
	}

	.modal-navigation button {
		height: 50px;
		width: 50px;
		padding: 0;
	}
}

/* ========================
Mobile Layout
======================== */

@media (max-width: 768px) {
	#nav-wrapper {
		padding: 40px 0;
		transition: padding 0.3s ease;
	}

	.scrolled #nav-wrapper {
		padding: 0;
	}

	.ehf-header #masthead.scrolled {
		background-color: rgba(0, 46, 35, 0.0) !important;
		box-shadow: none;
	}
}



/* Adds */ 

.modal-content a,.modal-content a:hover {
display:block;
	color: var( --e-global-color-secondary );
	text-align:center;
}
}


