:root {
    --bg-color: #1a1a1a;       /* Tiefes Anthrazit */
    --card-bg: #242424;       /* Etwas helleres Grau für Boxen */
    --text-color: #e0e0e0;    /* Weiches Weiß */
    --accent-color: #ff8c42;  /* Warmes Orange (Sonnenuntergang/Rost) */
    --secondary-accent: #a0522d; /* Siena/Ton-Farbe für Details */
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 2rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #111, transparent);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Main Content Area */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin-bottom: 1.2rem;
}

/* Bilder-Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--secondary-accent);
    margin: 1rem 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0 2rem;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
}


/*** Css Extras ***/
/* Galerie Slider Startseite */
.highlight-slider {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--secondary-accent);
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.quote-box {
    border-left: 4px solid var(--secondary-accent);
    padding: 20px;
    margin: 40px 0;
    background: rgba(160, 82, 45, 0.05);
}


/* Styling für die Galerie-Sektionen */
.gallery-section h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--secondary-accent);
    display: inline-block;
    padding-right: 50px;
    margin-bottom: 25px;
}

.full-gallery {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Logbucheinträge */
.logbook-entry {
    max-width: 800px;
    margin: 0 auto;
}

.logbook-entry .date {
    font-size: 0.9rem;
    color: var(--secondary-accent);
    margin-bottom: 2rem;
    font-style: italic;
}

.entry-image {
    margin: 2.5rem 0;
    text-align: center;
}

.entry-image img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.entry-image .caption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
}

/* Ein schöner Effekt für den ersten Buchstaben */
.logbook-entry p:first-of-type::first-letter {
    font-size: 3rem;
    margin-right: 1px;
    line-height: 1;
    color: var(--accent-color);
    font-weight: bold;
}

/* Eintragsdatum verzieren */
.entry-date {
    display: block;
    color: var(--secondary-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.featured-content h2 {
    margin-top: 5px;
    font-size: 2.2rem;
    line-height: 1.1;
}