/* Webseite/picweb/assets/css/style.css - Haupt-CSS für die Werbe-Website */

:root {
    --primary-color: #4a6cf7;
    --primary-light: #e8edff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-radius: 0.5rem;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Allgemeine Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #3a5ce5;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6a82fb 100%);
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

/* Navigation */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Feature Cards */
.feature-card {
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Steps */
.step-card {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Stats Section */
.stat-card {
    transition: var(--transition);
}

.stat-card:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    box-shadow: var(--box-shadow);
}

.avatar-placeholder {
    font-size: 1.2rem;
}

/* Pricing Cards */
.pricing-card {
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.pricing-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.price {
    font-weight: 700;
}

/* Registration Form */
.registration-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.form-label {
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(74, 108, 247, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #3a5ce5;
    border-color: #3a5ce5;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(to right, #1a237e 0%, #283593 100%);
}

.footer a:hover {
    color: #bbdefb !important;
}

.social-icons a {
    display: inline-block;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .step-card {
        margin-bottom: 2rem;
    }
}