/*******************************************************************/
/* LAYOUT STRUKTUR -> Startseite */
/*******************************************************************/
/* --- HERO BEREICH MOBILE --- */
.hero {
    background: url('/_img/BG01.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 25%;
    min-height: 50vh; /* Etwas flexibler für Mobile */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;    /* Mobile: Zentriert */
    text-align: right;     /* Mobile: Zentriert */
    padding: 0 20px;
    position: relative;
}
.hero-video {
	max-width: 50%;
	height: auto;
	filter: sepia(70%) contrast(110%) brightness(90%);
	margin: auto;
	padding: 25px;
}
.hero h1 { 
    font-size: 1.8rem;      /* Mobile Schriftgröße */
    margin-bottom: 10px; 
	margin-left: 25px; 
    letter-spacing: 3px; 
    text-transform: uppercase;
}
.hero p { 
    font-size: 1rem; 
    margin-bottom: 10px; 
    margin-left: 25px; 
    font-weight: bold; 
    font-style: italic; 
    color: var(--color-text); 
}
.hero a { 
    font-size: 1rem; 
    margin-bottom: 10px; 
    margin-left: 25px; 
    font-weight: normal; 
    text-decoration: underline; 
    color: var(--color-text); 
    transition: color 0.3s; 
}
.hero a:hover { 
    font-weight: bold; 
    color: var(--color-accent-hover); 
}
.hero-link {
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}
.hero-link:hover {
    color: var(--color-accent-hover);
}

.hero-section {
    background-color: var(--color-bg);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px;
}

/* Hero Logo & Widget */
.hero-logo-link {
    position: absolute;
    bottom: 5px;
    left: 0px;
    display: block;
    line-height: 0;
    width: 50px;
    transition: transform 0.2s;
}

.hero-logo-link:hover {
    transform: scale(1.1);	
}

.hero-logo {
    width: 50px;
    height: auto;
    transition: opacity 0.3s ease;
	transition: transform 0.3s ease;
}
.experience-widget-link {
    position: absolute;
    bottom: 5px;
    right: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.experience-widget-link:hover {
    transform: scale(1.1);
}
.experience-widget {
    background: transparent;
    backdrop-filter: blur(5px);
    padding: 5px 5px;
    border: 2px solid var(--color-text);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-main);
}
.rating-stars { 
	color: var(--color-text-main); 
	font-size: 0.75rem; 
	font-weight: bold; 
	letter-spacing: 1px; 
	}
.rating-count { 
	font-size: 0.5rem; 
	text-transform: uppercase; 
	letter-spacing: 0.5px; 
	opacity: 0.8; 
	margin-top: 4px; 
}

/* --- 3 CONTAINER STARTSEITE MOBILE --- */
.three-fields-container {
    display: flex;
    flex-direction: column; /* Mobile: Untereinander */
    gap: 20px;
    margin: 20px;
}

.info-field {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-3d);
    border: 1px solid var(--color-accent);
    padding: 20px;
    padding-bottom: 70px;
    border-radius: 8px;
    cursor: pointer;
}

.info-field h3 {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-field p {
    line-height: 1.5;
    font-size: 0.95rem;
}
/* --- HERO BEREICH DESKTOP --- */
@media (min-width: 769px) {
.hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 41% 25%;		
	height: 60vh;
	align-items: flex-end; /* Rechtsbündig */
	text-align: right;     /* Rechtsbündig */
	padding: 0 40px;
}
.hero h1 { 
	font-size: 3rem; 
}
.hero p, .hero a { 
	margin-left: 25px; 
}
.hero-section {
	min-height: 300px;
}
.hero-logo-link {
	width: 50px;
	bottom: 5px;
	left: 5px;
}
.hero-logo-link:hover,
.experience-widget-link:hover {
	transform: scale(1.1);
}
/* 3 Container Desktop */
.three-fields-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px;
	justify-content: space-between;
}
.info-field {
	flex: 1;
	min-width: 250px;
	padding-bottom: 60px;
}
.info-field:hover {
	border-color: var(--color-main);
}
}