/*
Theme Name: Iron Pinbreaker
Theme URI: https://iron-pinbreaker.de
Author: Daniel Neumann
Description: Eigenes WordPress Theme für den Sportverein Iron Pinbreaker e.V.
Version: 1.0
License: GPL v2 or later
Text Domain: iron_pinbreaker
*/

/* Grundlayout */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
    line-height:1.6;
}

a{
    color:#0055aa;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.site-header{
    background:#111;
    color:#fff;
    padding:20px 0;
}

.site-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo a{
    color:#fff;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration:none;
}

.main-navigation ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.main-navigation a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.main-navigation a:hover{
    color:#e63946;
}

.content{
    padding:60px 0;
    width:90%;
    max-width:1200px;
    margin:auto;
}

.site-footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:25px;
    margin-top:60px;
}