/*
Theme Name: Florian Freiberger Theme
Description: Ein modernes WordPress-Theme für Florian Freiberger - Banker, Macher, Entrepreneur in Entwicklung. PHP 8.3 kompatibel.
Version: 2.0
Author: Florian Freiberger
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 8.0
Text Domain: florian-theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #24292f;
    background: #ffffff;
}

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

/* Header */
header {
    background: white;
    border-bottom: 1px solid #d1d9e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #24292f;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #656d76;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #238636;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #24292f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #656d76;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #238636;
    color: white;
}

.btn-primary:hover {
    background: #2da44e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #24292f;
    border: 2px solid #d1d9e0;
}

.btn-secondary:hover {
    background: #f6f8fa;
    border-color: #238636;
    color: #238636;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Help Section */
.help-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #24292f;
    margin-bottom: 3rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #d1d9e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.help-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    font-size: 1.25rem;
    color: #24292f;
    margin-bottom: 1rem;
}

.help-card p {
    color: #656d76;
    margin-bottom: 1rem;
}

/* Service status badges */
.service-status {
    display: inline-block;
    background: #656d76;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-status.status-active {
    background: #238636;
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #f6f8fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #24292f;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #656d76;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #238636;
}

.stat-label {
    font-size: 0.9rem;
    color: #656d76;
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #d1d9e0;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #238636 0%, #2da44e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Individual project card gradients */
.project-card:nth-child(1) .project-image {
    background: linear-gradient(135deg, #238636 0%, #2da44e 100%);
}

.project-card:nth-child(2) .project-image {
    background: linear-gradient(135deg, #1f7a2e 0%, #238636 100%);
}

.project-card:nth-child(3) .project-image {
    background: linear-gradient(135deg, #238636 0%, #40a85c 100%);
}

.project-content {
    padding: 1.5rem;
}

.project-status {
    display: inline-block;
    background: #238636;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.project-card h3 {
    color: #24292f;
    margin-bottom: 1rem;
}


/* Blog Section */
.blog-section {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #d1d9e0;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #656d76;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #24292f;
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #238636;
}

/* Footer */
footer {
    background: #24292f;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #7d8590;
    text-decoration: none;
}

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

/* Landingpage Styles */
.service-hero {
    background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #238636;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-section {
    padding: 5rem 0;
}

.pricing-section {
    padding: 5rem 0;
    background: #f6f8fa;
}

.price-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #d1d9e0;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #238636;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #d1d9e0;
}

.faq-item h3 {
    color: #24292f;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #656d76;
    margin: 0;
}

.cta-section {
    padding: 5rem 0;
    background: #24292f;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Coming Soon Styles */
.coming-soon-hero {
    background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.coming-soon-status {
    display: inline-block;
    background: #238636;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expected-date {
    background: #f6f8fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #238636;
}

.timeline-section {
    padding: 5rem 0;
    background: #f6f8fa;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d1d9e0;
}

.timeline-item {
    position: relative;
    padding: 0 0 2rem 60px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #656d76;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-item.completed .timeline-marker {
    background: #238636;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #d1d9e0;
}

.timeline-content h3 {
    color: #24292f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #656d76;
    margin-bottom: 1rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: #238636;
    font-weight: 600;
}

.notification-section {
    padding: 5rem 0;
    background: #24292f;
    color: white;
    text-align: center;
}

.notification-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.notification-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto;
    gap: 1rem;
}

.notification-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.notification-form button {
    background: #238636;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.notification-form button:hover {
    background: #2da44e;
}

.notification-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* HTML Page Styles */
.html-page-content {
    min-height: 60vh;
}

.html-page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.html-editor-notice {
    text-align: center;
}

.html-editor-notice h3 {
    color: #238636;
    margin-bottom: 1rem;
}

.html-editor-notice p {
    color: #656d76;
    margin-bottom: 0.5rem;
}

/* KIRA Case Study Styles */
.kira-hero {
    background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%) !important;
    padding: 6rem 0 !important;
}

.kira-hero-content {
    display: grid !important;
    grid-template-columns: 1fr 300px !important;
    gap: 3rem !important;
    align-items: center !important;
}

.kira-service-subtitle {
    font-size: 1.1rem !important;
    color: #238636 !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.kira-hero h1 {
    font-size: 3rem !important;
    font-weight: bold !important;
    color: #24292f !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.kira-hero h1 span {
    color: #238636 !important;
}

.kira-hero-text p {
    font-size: 1.25rem !important;
    color: #656d76 !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
}

.kira-hero-buttons {
    display: flex !important;
    gap: 1rem !important;
}

.kira-hero-image {
    text-align: center !important;
}

.kira-logo-circle {
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #238636 0%, #2da44e 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 3rem !important;
    font-weight: bold !important;
    margin: 0 auto !important;
}

.kira-section {
    padding: 5rem 0 !important;
}

.kira-section-alt {
    padding: 5rem 0 !important;
    background: #f6f8fa !important;
}

.kira-grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.kira-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

.kira-grid-stats {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 4rem !important;
}

.kira-feature-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    border: 1px solid #d1d9e0 !important;
}

.kira-feature-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
}

.kira-feature-card h3 {
    font-size: 1.25rem !important;
    color: #24292f !important;
    margin-bottom: 1rem !important;
}

.kira-feature-card p {
    color: #656d76 !important;
}

.kira-stat-card {
    text-align: center !important;
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    border: 1px solid #d1d9e0 !important;
}

.kira-stat-number {
    font-size: 3rem !important;
    font-weight: bold !important;
    color: #238636 !important;
    margin-bottom: 0.5rem !important;
}

.kira-stat-label {
    color: #656d76 !important;
    font-weight: 600 !important;
}

.kira-section h2 {
    font-size: 2.5rem !important;
    color: #24292f !important;
    margin-bottom: 1.5rem !important;
}

.kira-section-title {
    text-align: center !important;
    font-size: 2.5rem !important;
    color: #24292f !important;
    margin-bottom: 3rem !important;
}

.kira-bullet-list {
    list-style: none !important;
    padding: 0 !important;
}

.kira-bullet-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
}

.kira-bullet-dot {
    width: 8px !important;
    height: 8px !important;
    background: #238636 !important;
    border-radius: 50% !important;
    margin-right: 1rem !important;
}

.kira-dark-section {
    padding: 5rem 0 !important;
    background: #24292f !important;
    color: white !important;
    text-align: center !important;
}

.kira-dark-section h2 {
    color: white !important;
    margin-bottom: 1rem !important;
    font-size: 2.5rem !important;
}

.kira-demo-interface {
    background: #f6f8fa !important;
    padding: 3rem !important;
    border-radius: 12px !important;
    color: #24292f !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.kira-demo-box {
    border: 2px solid #d1d9e0 !important;
    border-radius: 8px !important;
    padding: 2rem !important;
    background: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .kira-hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .kira-hero h1 {
        font-size: 2rem !important;
    }
    
    .kira-grid-2 {
        grid-template-columns: 1fr !important;
    }
    
    .kira-grid-4 {
        grid-template-columns: 1fr !important;
    }
    
    .kira-grid-stats {
        grid-template-columns: 1fr !important;
    }
    
    .kira-logo-circle {
        width: 180px !important;
        height: 180px !important;
        font-size: 2rem !important;
    }
    
    .kira-hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .notification-form {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: -15px;
        width: 30px;
        height: 30px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .service-hero {
        padding: 4rem 0;
    }
}