/*
Theme Name: Landhaus Rustikal Premium
Theme URI: https://example.com
Author: RealKev
Description: Rustikales Premium-Theme für ein Landhaus-Hotel mit modularer Startseite und 5 Zimmern
Version: 1.1
*/

:root {
  --brown-dark: #4A3728;
  --brown-warm: #7C5C45;
  --beige: #C8A882;
  --cream: #EDE5D8;
  --green-forest: #5B6E4E;
  --green-light: #B7C4A6;
  --text-dark: #3A2A1F;

  /* Default für dynamischen Glow */
  --scroll-glow: 1;
}


body {
	font-family: 'Source Sans Pro', sans-serif;
	background-color: #EDE6DB;
	color: #3E2F2A;
	margin: 0;
}

body:not(.home) {
	padding-top: 50px; /* Höhe des Headers */
}

section {
	clear: both;
	padding-top: 0.1em;
}

.page-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	border-left: 1px solid #e5e0da;
	border-right: 1px solid #e5e0da;
	background: #faf8f5; /* optional, aber sehr harmonisch */
	padding-block-end: 1rem;
}


h1, h2, h3 {
	font-family: 'Playfair Display', serif;
        color: var(--brown-dark);
        font-size: 1.4rem;
	margin-block-start: 0.3rem;
}

a {
	color: #6B7A4A;
	text-decoration: none;
}

.btn-primary {
	background-color: #B85A3A;
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	display: inline-block;
}

.container {
	max-width: 1200px;   /* Empfehlung */
	margin: 0 auto;
	padding: 0 20px;
}

.invisible {
	display: none !important;
}

.floatLeft {
	float: left;
	margin-right: 0.5em;
}

.floatRight {
	float: Right;
	margin-left: 0.5em;
}

.clearFloat {
	clear: both;
}

.padTop10 {
	padding-top: 1rem;
}

/* Header über dem Hero */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;

	/* Transparenz + Holztextur */
	/*background: rgba(255, 255, 255, 0.10);*/
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);

}

/* Container im Header */
.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;

	/* Transparenz + Holztextur */
	/*background: rgba(255, 255, 255, 0.10);*/
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	/* leichte Holztextur */
	background-image: url('./assets/images/wood-texture.png');
	background-size: cover;
	background-blend-mode: overlay;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.site-header .container div {
	padding: 0px 10px;
}

/* Sticky Zustand */
.site-header.is-sticky {
	position: fixed;
	width: 100%;
	z-index: 1000;
	/*background: rgba(255, 255, 255, 0.10);*/
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

footer {
	clear: both;
}

.footer {
    color: var(--brown-dark);
    text-align: center;
    /*padding: 10px 10px;*/
    font-size: 0.95rem;
    /*background: rgba(255, 255, 255, 0.10);*/
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.footer a {
    color: var(--brown-dark);
    text-decoration: none;
}

.footer a:hover {
    color: var(--brown-warm);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    /*background: rgba(255, 255, 255, 0.10);*/
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-image: url(./assets/images/wood-texture.png);
    background-size: cover;
    background-blend-mode: overlay;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: bolder;
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
}

.main-nav a {
	text-decoration: none;
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	color: var(--brown-dark);
	font-weight: 600;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
}

.main-nav a:hover {
	border-bottom: 2px solid #c8a97e;
	color: #2a2117;
}

.main-nav .current-menu-item a {
	border-bottom: 2px solid #c8a97e;
}

/* Burger-Icon */
.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.burger span {
	width: 25px;
	height: 3px;
	background: #3a2d1f;
	border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.main-nav ul {
		display: none;
		flex-direction: column;
		background: rgba(255,255,255,0.95);
		padding: 20px;
		position: absolute;
		top: 70px;
		right: 20px;
		border-radius: 8px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	}

	.main-nav.open ul {
		display: flex;
	}

	.burger {
		display: flex;
	}
}
