/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			ProLight
	Based on style:		prosilver (the default phpBB 3.3.x style)
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		Ian Bradley ( http://phpbbstyles.iansvivarium.com/ )
    --------------------------------------------------------------
*/

@import url("normalize.css?v=1.1.11");
@import url("base.css?v=1.1.11");
@import url("utilities.css?v=1.1.11");
@import url("common.css?v=1.1.11");
@import url("links.css?v=1.1.11");
@import url("content.css?v=1.1.11");
@import url("buttons.css?v=1.1.11");
@import url("cp.css?v=1.1.11");
@import url("forms.css?v=1.1.11");
@import url("icons.css?v=1.1.11");
@import url("colours.css?v=1.1.11");
@import url("responsive.css?v=1.1.11");
@import url("prolight.css?v=1.1.11");

.site_logo {
    background-image: url('./images/site_logo.png');
    width: 300px; /* Passe die Breite an */
    height: 100px; /* Passe die Höhe an */
        object-fit: fill; /* Bild wird gestaucht, um den Raum auszufüllen */
/* Schriften einbinden */
@font-face {
    font-family: 'Manrope';
    src: url('./Manrope-Bold.ttf') format('truetype');
    font-weight: bold; /* Für fette Schrift (Überschriften) */
}

@font-face {
    font-family: 'Manrope';
    src: url('./Manrope-Light.ttf') format('truetype');
    font-weight: 300; /* Für leichte Schrift (Fließtext) */
}

/* Globale Farbdefinitionen */
:root {
    --color-primary: #000000; /* Schwarz */
    --color-secondary: #FFFFFF; /* Weiß */
    --color-accent: #FFEE58; /* Akzentfarbe (Gelb) */
}

/* Standardstil für die gesamte Seite */
body {
    font-family: 'Manrope', sans-serif; /* Hauptschriftart */
    font-weight: 300; /* Leichte Schrift für Fließtext */
    font-size: 14px; /* Schriftgröße für Fließtext */
    line-height: 1.4; /* Zeilenabstand */
    color: var(--color-primary); /* Textfarbe: Schwarz */
    background-color: var(--color-secondary); /* Hintergrundfarbe: Weiß */
    margin: 0;
    padding: 0;
}

/* Überschriften */
h1 {
    font-size: 24px; /* Hauptüberschrift */
    font-weight: bold;
    margin: 1rem 0;
    color: var(--color-primary); /* Textfarbe: Schwarz */
}

h2 {
    font-size: 20px; /* Zweite Ebene */
    font-weight: bold;
    margin: 0.8rem 0;
    color: var(--color-primary); /* Textfarbe: Schwarz */
}

h3, h4, h5, h6 {
    font-size: 16px; /* Kleinere Überschriften */
    font-weight: bold;
    margin: 0.6rem 0;
    color: var(--color-primary); /* Textfarbe: Schwarz */
}

/* Links */
a {
    color: var(--color-accent); /* Akzentfarbe für Links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--color-primary); /* Schwarz beim Hover */
}

/* Buttons */
button {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: var(--color-secondary); /* Weißer Text */
    background-color: var(--color-accent); /* Gelber Hintergrund */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--color-primary); /* Schwarz beim Hover */
    color: var(--color-secondary); /* Weißer Text */
}

/* Akzentboxen oder Markierungen */
.accent {
    background-color: var(--color-accent); /* Gelber Hintergrund */
    color: var(--color-primary); /* Schwarzer Text */
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Weitere Stile */
hr {
    border: none;
    height: 2px;
    background-color: var(--color-accent); /* Akzentfarbe für Linien */
}

