/**
 * BZT Shortcodes - Styles
 * EXACT MATCH to bzt-cnc.de design
 */

:root {
    /* BZT Brand Colors - from live website */
    --bzt-primary: #1a1a2e;
    /* Headline color - near black */
    --bzt-blue: #0066cc;
    /* Stats, primary buttons */
    --bzt-orange: #f39c12;
    /* Secondary buttons */
    --bzt-text: #333333;
    --bzt-text-light: #666666;
    --bzt-bg-light: #f8f9fa;
    --bzt-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --bzt-radius: 8px;
    /* Border radius from BZT */
}

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

.bzt-section {
    padding: 60px 0;
}

.bzt-section--light {
    background: var(--bzt-bg-light);
}

.bzt-section--dark {
    background: var(--bzt-primary);
    color: white;
}

.bzt-section--dark h2 {
    color: white;
}

.bzt-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.bzt-section-header h2 {
    margin-bottom: 10px;
    color: var(--bzt-primary);
}

.bzt-section-header p {
    color: var(--bzt-text-light);
}

.bzt-divider {
    width: 60px;
    height: 4px;
    background: var(--bzt-blue);
    margin: 15px auto;
    border-radius: 2px;
}

/* Hero */
.bzt-hero {
    background: linear-gradient(135deg, var(--bzt-primary) 0%, #2d5a7b 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.bzt-hero--with-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.bzt-hero--with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 82, 0.85);
}

.bzt-hero__content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.bzt-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.bzt-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

.bzt-hero__badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bzt-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Grid */
.bzt-grid {
    display: grid;
    gap: 30px;
}

.bzt-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.bzt-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.bzt-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .bzt-grid--2,
    .bzt-grid--3,
    .bzt-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* Feature */
.bzt-feature {
    padding: 30px;
    background: white;
    border-radius: var(--bzt-radius);
    border-left: 4px solid var(--bzt-blue);
    box-shadow: var(--bzt-shadow);
    transition: transform 0.3s;
}

.bzt-feature:hover {
    transform: translateY(-3px);
}

.bzt-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bzt-feature h3 {
    margin: 0 0 10px;
    color: var(--bzt-primary);
}

.bzt-feature p {
    margin: 0;
    color: var(--bzt-text-light);
}

/* Infobox */
.bzt-infobox {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.bzt-infobox__icon {
    font-size: 1.5rem;
}

.bzt-infobox__content strong {
    display: block;
    margin-bottom: 5px;
}

.bzt-infobox--info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.bzt-infobox--success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.bzt-infobox--warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.bzt-infobox--error {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

/* Team/Person */
.bzt-team {
    gap: 30px;
}

.bzt-person {
    background: white;
    border-radius: var(--bzt-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--bzt-shadow);
    transition: transform 0.3s;
}

.bzt-person:hover {
    transform: translateY(-5px);
}

.bzt-person__image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.bzt-person__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bzt-person__image--placeholder {
    background: var(--bzt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.bzt-person__name {
    margin: 0 0 5px;
    color: var(--bzt-primary);
}

.bzt-person__role {
    color: var(--bzt-text-light);
    margin: 0 0 15px;
}

.bzt-person__contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bzt-person__contact a {
    color: var(--bzt-text);
    text-decoration: none;
    font-size: 0.9rem;
}

.bzt-person__contact a:hover {
    color: var(--bzt-blue);
}

/* FAQ */
.bzt-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bzt-faq__item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.bzt-faq__question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--bzt-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bzt-faq__question::-webkit-details-marker {
    display: none;
}

.bzt-faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--bzt-blue);
    transition: transform 0.2s;
}

.bzt-faq__item[open] .bzt-faq__question::after {
    transform: rotate(45deg);
}

.bzt-faq__answer {
    padding: 0 20px 20px;
    color: var(--bzt-text-light);
}

/* Testimonials */
.bzt-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bzt-testimonial {
    background: white;
    border-radius: var(--bzt-radius);
    padding: 30px;
    box-shadow: var(--bzt-shadow);
    border-left: 4px solid var(--bzt-blue);
}

.bzt-testimonial__stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bzt-testimonial__text {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 20px;
    line-height: 1.7;
}

.bzt-testimonial__author strong {
    display: block;
    color: var(--bzt-primary);
}

.bzt-testimonial__author span {
    color: var(--bzt-text-light);
    font-size: 0.9rem;
}

/* Downloads */
.bzt-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bzt-download {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--bzt-text);
    transition: all 0.3s;
}

.bzt-download:hover {
    background: var(--bzt-bg-light);
    transform: translateX(5px);
}

.bzt-download__icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.bzt-download__info {
    flex: 1;
}

.bzt-download__info strong {
    display: block;
}

.bzt-download__info small {
    color: var(--bzt-text-light);
}

.bzt-download__action {
    font-size: 1.2rem;
}

/* Map */
.bzt-map {
    border-radius: var(--bzt-radius);
    overflow: hidden;
    box-shadow: var(--bzt-shadow);
}

.bzt-map iframe {
    display: block;
}

/* CTA */
.bzt-cta {
    background: linear-gradient(135deg, var(--bzt-primary) 0%, #2d5a7b 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.bzt-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.bzt-cta>p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.bzt-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons - BZT Style */
.bzt-btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--bzt-radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.bzt-btn--primary {
    background: var(--bzt-blue);
    color: white;
}

.bzt-btn--primary:hover {
    background: #0055aa;
    color: white;
}

.bzt-btn--secondary,
.bzt-btn--orange {
    background: var(--bzt-orange);
    color: white;
}

.bzt-btn--secondary:hover,
.bzt-btn--orange:hover {
    background: #e08e0b;
    color: white;
}

.bzt-btn--outline {
    background: transparent;
    color: var(--bzt-blue);
    border: 2px solid var(--bzt-blue);
}

.bzt-btn--outline:hover {
    background: var(--bzt-blue);
    color: white;
}