/* Google Fonts einbinden: Patrick Hand für Titel, Manrope für Fließtext */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&family=Patrick+Hand&display=swap');

/* ---- DESIGN SYSTEM VARIABLEN ---- */
:root {
    --bg-beige: #E8DDCA;
    --bg-offwhite: #F5EFE3;
    --color-sand: #D6C3A5;
    --color-wood: #5A4634;
    --color-sage: #7C8060;
    
    --font-creative: 'Patrick Hand', cursive;
    --font-body: 'Manrope', sans-serif;
    
    --radius-organic: 32px;
    --transition-smooth: all 0.4s ease-in-out;
}

/* ---- BASIS STYLES ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-beige);
    color: var(--color-wood);
    font-family: var(--font-body);
    line-height: 1.6;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- TYPOGRAFIE ---- */
h1, h2, h3 {
    font-family: var(--font-creative);
    font-weight: normal;
    color: var(--color-wood);
}

a {
    color: var(--color-wood);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ---- NAVIGATION ---- */
.nav-gallery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    width: 100%;
}

.logo {
    font-family: var(--font-creative);
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav-links a {
    margin-left: 2rem;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--color-sage);
}

/* ---- HOME PAGE LAYOUT ---- */
.hero-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-style: italic;
    color: var(--color-sage);
    font-size: 1.3rem;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- 4 EINSTIEGSKACHELN (GRID) ---- */
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.home-card {
    background-color: var(--bg-offwhite);
    padding: 3rem 2rem;
    border-radius: var(--radius-organic);
    box-shadow: 0 4px 20px rgba(90, 70, 52, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.home-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.home-card span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-sage);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

/* ---- HOVER EFFEKTE (Ruhig & Sanft) ---- */
.home-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(90, 70, 52, 0.08);
}

.home-card:hover span {
    opacity: 1;
    transform: translateY(0);
}

/* ---- FOOTER ---- */
footer {
    margin-top: auto;
    padding-top: 5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-wood);
    margin: 0 auto 1rem auto;
    opacity: 0.4;
}