/*
Theme Name: Tamis Bilderglück
Author: Reimar Große-Bölting
Description: Ein persönliches Theme für die Familienfotografin Tamara Große-Bölting.
Version: 1.0
*/

/* --- Schriftarten einbinden --- */
@font-face {
    font-family: 'Nickainley';
    src: url('fonts/nickainley-normal.woff2') format('woff2'),
         url('fonts/nickainley-normal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Globale Design-Regeln --- */
body {
    background-color: #fff8ea; /* Hintergrundfarbe für alle Seiten */
    color: #a06e6f;            /* Standard-Schriftfarbe */
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

/* --- Typografie --- */
h1, h2, h3, h4, h5, h6, .site-title {
    font-family: 'Nickainley', cursive;
    color: #a06e6f;
    font-weight: normal;
}

/* --- Links --- */
a {
    color: #a06e6f;
    text-decoration: underline;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

/* --- Layout-Struktur --- */
.site-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Header --- */
.site-header {
    padding: 40px 0;
    text-align: center;
    border-bottom: 2px solid #a06e6f;
    margin-bottom: 40px;
}

/* NEU: Flex-Container für Titel und Logo */
.header-main {
    display: flex;
    justify-content: space-between; /* Schiebt Elemente an die Enden */
    align-items: center;          /* Zentriert Elemente vertikal */
    padding-bottom: 20px;
}

/* NEU: Styling für das Logo */
.site-logo .custom-logo {
    max-height: 100px; /* Passen Sie die Höhe nach Bedarf an */
    width: auto;
}

/* Anpassung für den Seitentitel */
.site-title {
    margin: 0; /* Entfernt unnötigen Abstand */
}

.site-title a {
    font-size: 3.5em; /* Schriftgröße ggf. anpassen */
    text-decoration: none;
}

.site-title a {
    font-size: 4em;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    font-size: 1.2em;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    border-top: 2px solid #a06e6f;
}

/* --- Spezifische Seiten-Stylings werden später ergänzt --- */