/*
Theme Name: RUFA Headless Theme
Theme URI: https://digitaldeck.de
Author: DIGITALDECK
Author URI: https://digitaldeck.de
Description: Minimales Theme für Headless WordPress - Leitet alle Frontend-Anfragen auf eine Info-Seite um
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rufa-headless
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    padding: 60px 40px;
    text-align: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
}

h1 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 30px;
}

p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-box {
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    border-radius: 4px;
}

.info-box strong {
    color: #2d3748;
    display: block;
    margin-bottom: 10px;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tech-badge {
    background: #edf2f7;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.cta {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
}
