/*
Theme Name: Patronato SIAS Deutschland
Theme URI: https://patronatosias.de
Author: Patronato SIAS
Author URI: https://www.patronatosias.it
Description: Tema bilingue (Deutsch/Italiano) per il Patronato SIAS Germania
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: patronato-sias
Tags: two-columns, custom-colors, custom-menu, translation-ready
*/

:root {
    --sias-navy: #003366;
    --sias-dark-navy: #002244;
    --sias-light-navy: #004488;
    --sias-gold: #d4af37;
    --sias-light-gold: #e8c45c;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-blue: #0066cc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--sias-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--sias-light-navy);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.button,
.wp-block-button__link {
    display: inline-block;
    background: var(--sias-navy);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover,
.wp-block-button__link:hover {
    background: var(--sias-light-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,51,102,0.2);
}

.section-title {
    font-size: 2.5rem;
    color: var(--sias-navy);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sias-gold);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
