/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.2
 Text Domain:  bricks
*/

/* ==========================================
   VALIDVENT PREMIUM DESIGN SYSTEM
   ========================================== */

:root {
    --accent-color: #000000;
    --accent-hover: #1a1a1a;
    --accent-light: #f5f5f5;
}

/* Font Smoothing & Antialiasing */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'ss01' 1, 'ss02' 1, 'cv01' 1, 'cv11' 1;
}

/* ==========================================
   MODERN SHADOWS
   ========================================== */

.shadow-premium {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.04);
}

.shadow-premium-lg {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 16px 32px rgba(0, 0, 0, 0.08);
}

.shadow-ultra {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   PREMIUM CARD STYLES
   ========================================== */

.premium-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.04);
}

/* Pricing cards - ONLY these have hover effect! */
.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    border: 1.2px solid #000000;
    transform: translateY(-2px);
    border-color: #000000;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Most Popular Badge */
.popular-badge {
    background: #ff6b35;
    color: white;
}

/* ==========================================
   BUTTON STYLES
   ========================================== */

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.16);
}

/* ==========================================
   GLASSMORPHISM
   ========================================== */

.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}

@media (min-width: 640px) {
    .intro-text {
        font-size: 1.25rem;
    }
}

p {
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Smooth Transitions */
a, button {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Focus States */
input:focus, textarea:focus {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.05),
        0 0 0 4px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.3);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Featured Testimonial Animations */
@keyframes panDots {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.bg-dots-animated {
    position: absolute;
    inset: -1px;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1.2px, transparent 1.2px);
    background-size: 32px 32px;
    animation: panDots 30s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}

/* ==========================================
   COUNTER ANIMATION CLASS
   ========================================== */

.counter {
    font-feature-settings: 'tnum';
    font-variant-numeric: tabular-nums;
}

/* ==========================================
   PROCESS STEP NUMBERS
   ========================================== */

.process-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #e5e7eb;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

/* ==========================================
   CATEGORY ARCHIVE BENTO GRID
   ========================================== */

/* Grid Container */
#brxe-yrubty,
.vv-bento {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    #brxe-yrubty,
    .vv-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #brxe-yrubty,
    .vv-bento {
        grid-template-columns: repeat(3, 1fr);
    }

    /* First card spans 2 columns for Bento effect */
    #brxe-yrubty > li:first-child,
    .vv-bento > li:first-child {
        grid-column: span 2;
    }
}

/* Grid Cards */
#brxe-yrubty > li,
.vv-bento > li {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #1f2937;
}

/* Card Image */
#brxe-yrubty > li img,
.vv-bento > li img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Card Overlay Gradient */
#brxe-yrubty > li::before,
.vv-bento > li::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    z-index: 1;
}

/* Card Content */
#brxe-yrubty > li > div,
.vv-bento > li > div {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

/* Card Title */
#brxe-yrubty h3,
.vv-bento h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Large card title */
@media (min-width: 1024px) {
    #brxe-yrubty > li:first-child h3,
    .vv-bento > li:first-child h3 {
        font-size: 1.5rem;
    }
}

/* Category Tags */
.vv-zzfcdz .brxe-text-basic:first-of-type,
#brxe-yrubty .category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Author & Date */
#brxe-yrubty .author-info,
.vv-bento .author-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Pagination Styling */
.vv-pagi {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.vv-pagi a,
.vv-pagi span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.vv-pagi a {
    background: #1f2937;
    color: white;
}

.vv-pagi a:hover {
    background: #000000;
    transform: translateY(-2px);
}

.vv-pagi span.current {
    background: #000000;
    color: white;
}
/* ==========================================
   GLOBAL ICON FIX - Validvent
   Dezente Icons für Share-Buttons & Listen
   ========================================== */

/* ==========
   1. SHARE BUTTONS - Dezente SVG Icons
   ========== */

/* Basis-Style für alle Share-Buttons */
.share-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.share-btn::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    opacity: 0.9;
}

/* X (Twitter) Icon */
button[data-share="twitter"]::before,
.share-btn[data-share="twitter"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

/* LinkedIn Icon */
button[data-share="linkedin"]::before,
.share-btn[data-share="linkedin"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
}

/* WhatsApp Icon */
button[data-share="whatsapp"]::before,
.share-btn[data-share="whatsapp"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

/* Telegram Icon */
button[data-share="telegram"]::before,
.share-btn[data-share="telegram"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E");
}

/* Discord Icon */
button[data-share="discord"]::before,
.share-btn[data-share="discord"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189z'/%3E%3C/svg%3E");
}


/* ==========
   2. BLOG CONTENT - Unordered Lists (ul) Bullet Points
   ========== */

/* Dezenter Bullet-Style für ul im Prose-Bereich */
.prose ul,
.brxe-post-content ul,
.article-content ul {
    list-style: none;
    padding-left: 0;
}

.prose ul li,
.brxe-post-content ul li,
.article-content ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

/* Dezenter Kreis als Bullet */
.prose ul li::before,
.brxe-post-content ul li::before,
.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background-color: #1a1a1a;
    border-radius: 50%;
    opacity: 0.6;
}

/* Alternative: Kleines Pfeil-Icon */
/*
.prose ul li::before,
.brxe-post-content ul li::before,
.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}
*/


/* ==========
   3. BLOG CONTENT - Ordered Lists (ol) Numbers
   ========== */

/* Dezenter Nummern-Style für ol im Prose-Bereich */
.prose ol,
.brxe-post-content ol,
.article-content ol {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.prose ol li,
.brxe-post-content ol li,
.article-content ol li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.5em;
    counter-increment: item;
}

.prose ol li::before,
.brxe-post-content ol li::before,
.article-content ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #1a1a1a;
    opacity: 0.7;
    font-size: 0.9em;
}


/* ==========
   4. AUTHOR SOCIAL LINKS (Dezent)
   ========== */

/* Falls Author-Social-Links im Artikel vorhanden sind */
a[href*="linkedin"]:not(.share-btn),
a[href*="twitter"]:not(.share-btn),
a[href*="x.com"]:not(.share-btn) {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* ==========
   5. SIDEBAR TOC Links (optional)
   ========== */

/* Table of Contents dezente Styling */
.toc-link {
    display: block;
    padding: 0.5em 0;
    color: #666;
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: 1em;
    transition: all 0.2s ease;
}

.toc-link:hover,
.toc-link.active {
    color: #1a1a1a;
    border-left-color: #1a1a1a;
}