/*
Theme Name: Modern Model Portfolio
Theme URI: https://example.com
Author: Dein Name
Author URI: https://example.com
Description: Ein modernes Portfolio-Theme für ein weibliches Model, mit kreativen Header- und Footer-Designs, seitlichen Menüs und einem zentralen Layout.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modern-model-portfolio
*/

/* Allgemeine Stile */
body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #333;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header-Stile */
header {
    background: url('images/header-background.jpg') no-repeat center center;
    background-size: contain;
    height: 350px;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 20px; /* Adds left and right margin */
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

header .site-branding, header .header-images {
    z-index: 2;
    position: relative;
}

header .header-images {
    display: flex;
    gap: 20px;
}

header .header-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

/* Hauptmenü-Stile */
nav.main-navigation {
    background: #ff6f61;
    padding: 15px 0;
}

nav.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav.main-navigation li {
    margin: 0 15px;
}

nav.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

nav.main-navigation a:hover {
    background: #ff8f82;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Seitliches Menü-Stile */
aside.sidebar-menu {
    position: absolute;
    top: 100px;
    width: 200px;
    padding: 20px;
    background: #f4f4f4;
}

aside.sidebar-menu.left {
    left: 0;
}

aside.sidebar-menu.right {
    right: 0;
}

aside.sidebar-menu ul {
    list-style: none;
    padding: 0;
}

aside.sidebar-menu li {
    margin-bottom: 10px;
}

aside.sidebar-menu a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

aside.sidebar-menu a:hover {
    text-decoration: underline;
}
