/* Grundlegende Einstellungen */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}
main {
    flex: 1;
}

/* Farbvariablen (ein Set auswählen) */
:root {
    --primary-color: #2BB1BB; /* Beispiel: Petrol aus dem ersten Snippet */
    --secondary-color: #8AE1C0; /* Beispiel: Mintgrün aus dem ersten Snippet */
    --light-gray: #F7F7F7;
}

/* Schriftengewicht für Headlines */
h1, h2, h3, h5 {
    font-weight: 700;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}
/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
}
.btn-primary:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hero Section (Allgemeine Variante) */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(43,177,187,0.8), rgba(138,225,192,0.8)), 
                url('../Oase-Sim-Only.webp') center/cover no-repeat; /* Beispiel aus erstem Snippet */
    color: #fff;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto;
}
.hero .btn {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 20px;
    transition: 0.3s;
}
.hero .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Alternative Hero Styles (Optional, kommentieren oder anpassen)
   Falls du die anderen Hintergründe/Gradients brauchst, kannst du alternative Klassen anlegen:
   
.hero-orange {
    background: linear-gradient(135deg, rgba(248,108,15,0.8), rgba(255,192,133,0.8)), 
                url('https://via.placeholder.com/1600x800?text=Fox+Wald+Hintergrund') center/cover no-repeat;
}
*/

/* USP Section (aus dem zweiten Snippet) */
.usp-section {
    background: var(--light-gray);
    padding: 60px 0;
}
.usp-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
}
.usp-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Top-Deals (aus dem zweiten Snippet) */
.top-deals {
    padding: 60px 0;
}
.top-deals .card {
    border: none;
    border-radius: 510;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.top-deals .card:hover {
    transform: translateY(-5px);
}
.top-deals .btn {
    border-radius: 10px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    transition: 0.3s;
}
.top-deals .btn:hover {
    background: var(--secondary-color);
}

/* Kategorien (aus dem zweiten Snippet) */
.category-section {
    padding: 60px 0;
}
.category-section .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.category-section .card:hover {
    transform: translateY(-5px);
}
.category-section .btn {
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: 0.3s;
}
.category-section .btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Intro Section (aus dem zweiten Snippet) */
.intro-section {
    padding: 60px 0;
}
.intro-section h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

/* Cards (auch im ersten und dritten Snippet erwähnt, hier vereinheitlicht) */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

/* Footer (vereinheitlicht) */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: left;
}

/* Links im Footer */
footer a {
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}
footer a:hover {
    color: var(--secondary-color);
}

footer h5 {
    font-weight: 600;
}

/* FAQ Schema Markup (Hidden) aus erstem und drittem Snippet */
.faq-schema {
    display: none;
}
