/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://deine-domain.de
Description: Child Theme von Twenty Twenty-Five für eigene Anpassungen (CSS, Templates, Funktionen).
Author: Noëlle
Author URI: https://deine-domain.de
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-child
*/

/* =============== EIGENES CSS AB HIER =============== */
/* =================================================== */

:root {
	--ff-accent: #C5407E;
	--ff-accent-dark: #9E2F63;
	--ff-accent-soft: #FBEAF1;
	--ff-accent-bg: rgba(251,234,241,0.2);
	--ff-border: #ece3f5;
	--ff-ink: #3a2145;
	--text-color: #421E38;
	--text-transparent:rgba(66,30,56,0.5);
}

html, body {
	overflow-x: hidden;
	max-width: 100%;
	scroll-behavior: smooth;
}

header, footer {
	display: none;
}

body {
	background-color: #FFFBF5;
	color: var(--text-color);
}

.row {
	max-width: 1200px;
	width: 80%;
	margin:0px auto;
}

.row-small {
	max-width: 900px;
}

.formular .row {
  margin: -56px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero {
	position: relative;
	overflow: visible;
	padding: 72px 0px 30px;
	text-align: center;
}

.hero::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto -20%;
	height: 480px;
	background: 
		radial-gradient(circle at 20% 30%,rgba(255,107,53,0.35), transparent 35%), 
		radial-gradient(circle at 75% 20%, rgba(123,47,247,0.30), transparent 35%), 
		radial-gradient(circle at 50% 60%, rgba(255,61,129,0.30), transparent 35%), 
		radial-gradient(circle at 85% 70%, rgba(0,191,168,0.28), transparent 35%), 
		radial-gradient(circle at 10% 75%, rgba(255,184,0,0.30), transparent 35%);
	filter: blur(50px);
	animation: drift 16s ease-in-out infinite alternate;
	z-index: 0;
	pointer-events: none;
}

.hero p {
	font-weight: 600;
}

.button-row {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.button-row a,
a.button {
	background: var(--ff-accent);
	color: #fff !important;
	font-family: 'Raleway';
	border-radius: 30px;
	padding: 12px 20px;
	border: none;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	margin-top: 30px;
	transition: all 0.3s ease;
	text-decoration:none;
	margin: 0px;
	width: fit-content;
}

.button-wrapper {
	padding: 30px 0px;
}

.button-row a:hover,
a.button:hover {
	background: var(--ff-accent-dark);
	cursor: pointer;
}


.footer {
	background: #F2EBE0;
  	padding: 10px 0px;
}

.footer p {
	text-align: center;
	opacity: 0.7;
	margin: 0px;
}

.footer a {
	text-decoration: none;
}

/* ==== BESTELLEFOMULAR ===== */
#formular .row-small {
	width: 90%;
}

#fluentform_3 {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #ece3f5;
	box-shadow: 0 20px 60px rgba(32,19,49,0.10), 0 2px 8px rgba(32,19,49,0.05);
	margin-bottom: 100px;
}

/* === HINWEIS BLURB === */
.blurb {
	display: flex;
	justify-content: center;
	align-items: start;
	margin-top: 20px;
}

.blurb p {
	color: var(--text-transparent);
}

.info-icon {
	border: 2px solid var(--text-transparent);
	border-radius: 30px;
	padding: 0.5px 4px 2.5px 4.5px;
	margin-right: 15px;
	margin-top: -3px;
}

.info-icon i {
	font-size: 12px;
	color: var(--text-transparent);
}


.info-small {
	font-size: 14px;
	color: var(--text-transparent);
	margin-top: -20px;
}

/* === ZWISCHENÜBERSCHRIFTEN === */
.section-headline {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.headline-number {
	font-weight: 600;
	font-size: 20px;
	background: var(--ff-accent);
	border-radius: 5px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: -3px 15px 0px 0px;
}

.section-headline p {
  font-weight: 600;
	font-size: 16px;
}

/* === PLACEHOLDER === */
.fluentform .ff-el-form-control::placeholder {
	font-family:'Raleway';
	font-size: 14px;
	color: var(--text-transparent);
}

/* === CUSTOM CHECK-BUTTONS === */
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:first-child label > span,
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected:first-child label > span{
	border: 1.5px solid transparent; /* -> Default Border ausblenden*/
}

.ff-el-input--content {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label > span {
	border-radius: 30px !important;
	background: var(--ff-accent-soft);
	color: var(--ff-ink);
	border: 1.5px solid var(--ff-accent-soft) !important;
	transition: all 0.3s ease;
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label > span:hover {
	border-color: var(--ff-accent) !important;
	color: var(--text-color);
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label > span {
	background: var(--ff-accent);
	box-shadow: none;
	border: 1.5px solid var(--ff-accent)!important;
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label > span:hover {
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
		width: 100% !important;
	}
	.ff-el-input--content {
		gap: 5px;
	}
}
/* === DROPDOWN + INPUT === */
.ff-default .ff-el-form-control {
	border: 1.5px solid var(--ff-accent-soft);
	background: var(--ff-accent-bg);
	color: var(--text-color);
  	font-size: 14px;
	font-family: 'Raleway';
	border-radius: 30px;
	transition: all 0.3s ease;
}

.ff-default .ff-el-form-control:hover {
	border-color: var(--ff-accent);
}

.ff-default .ff-el-form-control:focus {
	border: 1.5px solid var(--ff-accent);
}

/* === BUTTON === */
.ff-btn-submit {
	background: var(--ff-accent);
	color: #fff;
	font-family: 'Raleway';
	border-radius: 30px;
	padding: 12px 20px;
	border: none;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	margin-top: 30px;
	transition: all 0.3s ease;
}

.ff-btn-submit:hover {
	background: var(--ff-accent-dark);
	cursor: pointer;
}

/* === SUCCESS MESSAGE === */
.ff-message-success {
	border: none;
	box-shadow: none;
	text-align: center;
}

/* ========== PREISÜBERSICHT ========== */
.preisuebersicht {
	padding: 20px 0 80px;
	text-align: center;
	}

.preisuebersicht h2 {
	font-size: 32px;
	margin-bottom: 8px;
	color: var(--ff-ink);
}

.preis-intro {
	color: #6b5f7c;
	margin-bottom: 36px;
}

.produkt-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	text-align: left;
}

.produkt-card {
	background: #fff;
	border: 1px solid var(--ff-border);
	border-radius: 18px;
	padding: 18px;
	transition: transform .15s ease, box-shadow .15s ease;
}

.produkt-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(32,19,49,0.08);
}

.produkt-bild {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	margin-bottom: 14px;
	object-fit: cover;
}

.produkt-bild--platzhalter {
	background: var(--ff-accent-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}

.produkt-card h3 {
	font-size: 16px;
	margin: 0 0 4px;
	color: var(--ff-ink);
}

.produkt-preis {
	font-weight: 700;
	color: var(--ff-accent);
	margin: 0;
}

.produkt-preis-hinweis {
	font-size: 13px;
	color: #9a8ba8;
	font-style: italic;
	margin: 0;
}
