/*
========================================
Iron Pinbreaker Theme
Global Styles
========================================
*/
:root {
    /* Farben */
    --primary: #c9a227; /* Gold */
    --primary-dark: #a8841d; /* Dunkleres Gold für Hover */
    --secondary: #111111; /* Schwarz */

    --white: #ffffff;
    --light: #f5f5f5;
    --text: #333333;
    /* Layout */
    --container: 1200px;
    --radius: 8px;
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
}

/* Links */

a {
    color: inherit;
    text-decoration: none;
}

/* Container */

.container {
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
}