/* Styles extracted from inline style="" attributes in index.html */

/* --- Hero --- */
.hero-title-shadow { text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); }

/* --- Status / generic hidden helpers --- */
.is-hidden { display: none; }

/* --- Date/time & availability widget --- */
.sub-note-light { font-weight: 400; font-size: 0.8em; opacity: 0.7; }
.icon-lg { font-size: 1.2rem; }
.border-top-soft { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.border-left-soft { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.ai-overview-label { opacity: 0.6; font-size: 0.75rem; }
.price-highlight { color: #5ddb6e !important; }
.price-breakdown-tight { margin-top: -0.5rem; line-height: 1.7; }
.price-min-order { color: #ffc107; margin-top: -0.5rem; }

/* Prominent min-order alert in the contact form (cílem je hodně zvýraznit
   spodní hranici objednávky tak, aby si jí zákazník všiml před odesláním). */
.contact-min-order-alert {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.15rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.18), rgba(255, 152, 0, 0.10));
    border: 2px solid #ffc107;
    border-radius: 0.6rem;
    color: #ffc107;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.65);
    animation: contactMinOrderPulse 2.4s ease-in-out infinite;
}
.contact-min-order-icon {
    font-size: 1.6rem;
    color: #ffc107;
    flex-shrink: 0;
}
.contact-min-order-text { line-height: 1.25; }
.contact-min-order-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    opacity: 0.9;
}
.contact-min-order-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
@keyframes contactMinOrderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.55); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 193, 7, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .contact-min-order-alert { animation: none; }
}
.footer-note {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.5;
}
.link-info { color: #7ab3ff; text-decoration: underline; }

/* --- Mixcloud floating button --- */
.mixcloud-layer { z-index: 2; left: 0; }
.mixcloud-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    cursor: pointer;
    min-height: 60px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.flex-no-shrink { flex-shrink: 0; }
.flex-col-grow { flex: 1; min-width: 0; }
.mixcloud-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mixcloud-subtitle { color: rgba(255, 255, 255, 0.5); font-size: 0.7rem; }
.mixcloud-badge {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    text-transform: uppercase;
}

/* --- Reasons / AI assistant section --- */
.reasons-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, #050505 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    padding: 5rem 0;
}
.reasons-glow-top {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.reasons-glow-bottom {
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.reasons-z { z-index: 2; }
.reasons-pill {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.reasons-heading { text-transform: uppercase; line-height: 1.15; }
.reasons-lead { font-size: 1.15rem; line-height: 1.7; }
.reasons-item-hover { transition: all 0.3s ease; }

/* --- Volné termíny: animovaná zlatá záře v pozadí (přitáhne pozornost) --- */
#freeDates {
    position: relative;
    overflow: hidden;
}
#freeDates .container {
    position: relative;
    z-index: 1;
}
.free-dates-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    max-width: 760px;
    max-height: 760px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, rgba(255, 193, 7, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: freeDatesGlowDrift 8s ease-in-out infinite;
    will-change: transform;
}
@keyframes freeDatesGlowDrift {
    0%   { transform: translate(-68%, -52%) scale(0.9); }
    50%  { transform: translate(-32%, -48%) scale(1.25); }
    100% { transform: translate(-68%, -52%) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
    .free-dates-glow { animation: none; transform: translate(-50%, -50%); }
}

/* --- AI device mockup --- */
.ai-mock-wrapper { perspective: 1000px; max-width: 530px; width: 100%; }
.ai-mock-frame {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
    margin: 0 auto;
    overflow: hidden;
}
.ai-mock-iframe { border: 1px solid rgba(0, 0, 0, 0.3); width: 100%; display: block; }
.ai-float-card-top {
    top: 10%;
    right: -20px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}
.ai-float-card-bottom {
    bottom: 15%;
    left: -20px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    animation: float 5s ease-in-out infinite alternate-reverse;
    z-index: 10;
}
.ai-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lh-1 { line-height: 1; }
.ai-float-subtitle { font-size: 0.7rem; margin-top: 3px; }

/* --- Sections backgrounds --- */
.bg-dark-solid { background: #0f0f0f; }
.bg-dark-gradient { background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%); }
.bg-subtle-white { background: rgba(255, 255, 255, 0.05); }

/* --- Contact section visuals --- */
.img-cap-280 { max-width: 280px; max-height: 280px; }
.upload-placeholder {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    border: 2px dashed #ffc107;
    transition: all 0.3s ease;
    margin: 0 auto;
}
.upload-caption { max-width: 250px; white-space: normal; line-height: 1.4; }
.contact-section {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.visually-hidden-offscreen {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}
.contact-icon { width: 20px; text-align: center; }
.contact-map {
    height: 300px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tech-list { padding-left: 1.2rem; }
.video-overlay-cap { background: rgba(0, 0, 0, 0.6); pointer-events: none; }
.price-breakdown-inline { line-height: 1.7; }
.btn-spaced { letter-spacing: 1px; font-size: 1.1rem; }
.btn-pay-info { background-color: #3dd5f3; border-color: #3dd5f3; }
.alert-soft-warning { background-color: rgba(255, 193, 7, 0.1); color: #fff; }
.deposit-info-text { opacity: 0.95; }
.section-heading-spaced { letter-spacing: 1px; }

/* --- Manual / pruvodce section cards --- */
.heading-underline-warning {
    border-bottom: 2px solid #ffc107;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- Footer --- */
.site-footer {
    background: #050505;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.opacity-90 { opacity: 0.9; }
.link-warning { color: #ffc107; }
.icon-inline-sm { font-size: 0.8em; }

/* --- Payment modal --- */
.text-price-green { color: #5ddb6e; }
.icon-xl { font-size: 2.5rem; }
.icon-xxl { font-size: 4rem; }
.payment-card-disabled {
    background: rgba(40, 167, 69, 0.08);
    filter: grayscale(100%);
    pointer-events: none;
    padding-bottom: 2.5rem !important;
}
.micro-note { font-size: 0.7rem; }
.payment-tooltip {
    bottom: 10px;
    left: 15px;
    right: 15px;
    z-index: 10;
}

/* --- Info / success modal --- */
.list-loose { line-height: 1.6; }
