/* Budo-Team Simple CSS - Keine Animationen, keine komplexen Features */

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

/* Base */
html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    font-size: 16px;
}

body {
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #cc0000;
    text-decoration: none;
}

nav a {
    margin-left: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #cc0000;
}

.cta-button {
    background: #cc0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-left: 30px;
}

.cta-button:hover {
    background: #990000;
}

/* Main Content */
main {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #cc0000, #990000);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #cc0000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Page Header (für Unterseiten) */
section.page-header {
    background: linear-gradient(135deg, #4a4a4a, #333333) !important;
    color: white !important;
    padding: 40px 0 !important;
    text-align: center;
}

section.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
    color: white !important;
}

section.page-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    color: white !important;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card a {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    text-decoration: underline;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-link {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.quick-link:hover {
    border-color: #cc0000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quick-link h3 {
    font-size: 32px;
    color: #cc0000;
    margin-bottom: 10px;
}

/* Gray Background */
.bg-gray {
    background: #f9f9f9;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #cc0000;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 99;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-nav a:hover {
    background: #f9f9f9;
    color: #cc0000;
}

/* Responsive Design - Tablet und kleiner */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    section.page-header {
        padding: 30px 0 !important;
    }

    section.page-header h1 {
        font-size: 26px;
    }

    section.page-header p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-white, .btn-outline {
        width: 250px;
    }
    
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Kleine Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    section {
        padding: 50px 0;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
}