/*
Theme Name: Tehra Child
Template: twentytwentyfive
Description: Motyw potomny dla TEHRA SERWIS INŻYNIERIA z szablonem wizytówek SEO
Version: 1.0
Author: TEHRA SERWIS
*/

/* ===== STRONA GŁÓWNA – USUNIĘCIE BIAŁEGO PASKA ===== */
.is-front-page .wp-site-blocks > * {
    margin-block-start: 0 !important;
    padding-block-start: 0 !important;
}

.is-front-page .wp-site-blocks {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Usuń domyślny padding bloku Cover/hero na stronie głównej */
.is-front-page .wp-block-cover:first-of-type,
.is-front-page .wp-block-group:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Usuń gap między header a pierwszym blokiem */
body.home .wp-site-blocks {
    padding-top: 0 !important;
}

/* ===== WIZYTÓWKI SEO – GLOBALNE STYLE ===== */
body.single-wizytowki_seo {
    background-color: #0d0d0d;
    color: #f0f0f0;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body.single-wizytowki_seo .wp-site-blocks,
body.single-wizytowki_seo header,
body.single-wizytowki_seo footer,
body.single-wizytowki_seo nav {
    display: none !important;
}

/* ===== GŁÓWNY WRAPPER WIZYTÓWKI ===== */
.wizytowka-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px 100px 16px;
    background-color: #0d0d0d;
    min-height: 100vh;
}

/* ===== LOGO / MARKA ===== */
.wizytowka-brand {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #222;
}

.wizytowka-brand a {
    color: #888;
    text-decoration: none;
}

/* ===== H1 ===== */
.wizytowka-h1 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

/* ===== PRZYCISK TELEFONU – WIBRUJĄCY ===== */
.wizytowka-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    margin: 0 0 32px 0;
    animation: vibrate 2.5s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wizytowka-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(230, 57, 70, 0.6);
    color: #fff;
    text-decoration: none;
}

.wizytowka-cta-icon {
    font-size: 22px;
    animation: ring 2.5s ease-in-out infinite;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-3px) rotate(-1deg); }
    20% { transform: translateX(3px) rotate(1deg); }
    30% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    50% { transform: translateX(0); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* ===== TEKST SEO ===== */
.wizytowka-tekst {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    margin: 0 0 40px 0;
    background: #141414;
    padding: 20px 24px;
    border-left: 3px solid #e63946;
    border-radius: 0 6px 6px 0;
}

/* ===== SEKCJA LINKÓW ===== */
.wizytowka-linki {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #222;
}

.wizytowka-linki h3 {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px 0;
    font-weight: 400;
}

.wizytowka-linki-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.wizytowka-linki-lista li a {
    display: inline-block;
    color: #aaaaaa;
    font-size: 13px;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: color 0.2s, border-color 0.2s;
}

.wizytowka-linki-lista li a:hover {
    color: #ffffff;
    border-color: #666;
}

/* ===== STOPKA WIZYTÓWKI ===== */
.wizytowka-footer {
    margin-top: 48px;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
    font-size: 12px;
    color: #444;
    text-align: center;
}

.wizytowka-footer a {
    color: #555;
    text-decoration: none;
}

/* ===== STICKY PRZYCISK MOBILNY ===== */
.wizytowka-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(230, 57, 70, 0.3);
}

@media (min-width: 768px) {
    .wizytowka-sticky-cta {
        display: none;
    }
}
