/*
Theme Name: Kadence Child - Stadtführer Verein
Theme URI: https://example.com
Template: kadence
Author: forrestq
Author URI: https://example.com
Description: Child theme for Kadence optimized for city guide associations with custom footer
Version: 1.0.0
License: GPL v2 or later
Text Domain: kadence-child-stadtfuhrer
*/

/* Import custom styles */
@import url('assets/css/custom.css');

/* Base customizations */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --secondary-color: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --footer-bg: #1a1a1a;
    --footer-text: #f8f9fa;
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Container */
.kadence-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}