/* ===== TABORY PAGE STYLES ===== */

/* Hero background */
.hero-subpage {
    background: linear-gradient(rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.6)), url('../images/kone-vybeh.jpeg') center/cover no-repeat;
}

/* Taller content images on this page */
.content-img { height: 500px; }

/* Info box */
.tabor-info-box {
    background-color: #f4f4f0;
    padding: 25px;
    border-radius: 4px;
    margin-top: 40px;
    border-left: 4px solid var(--taupe);
}

.tabor-info-box h4 {
    margin-top: 0;
    color: var(--antracit);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.tabor-info-box p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== REGISTRATION FORM SECTION ===== */

html {
    scroll-behavior: smooth;
}

/* Hero section adjustments */
.hero-action-wrapper {
    text-align: center;
    margin-top: 100px; 
    margin-bottom: 10px;
}

.btn-scroll {
    display: inline-block;
    background-color: var(--taupe);
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 50px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.btn-scroll:hover {
    background-color: #938579;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Info highlights list */
.info-highlights-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0 0;
    text-align: left;
}

.info-highlights-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
}

.info-highlights-list li strong {
    color: #2c2a29;
}

.info-highlights-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--taupe);
    font-weight: bold;
    font-size: 16px;
}

.price-highlight {
    font-weight: bold;
    color: #b85c4c;
    font-size: 17px;
}

/* Urgency badges */
.urgency-badge {
    display: inline-block;
    font-size: 11px;
    padding: 3px 10px;
    margin-left: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    border-radius: 2px;
}

.urgency-high {
    background-color: rgba(235, 104, 88, 0.18);
    color: #ff8a7a;
    border: 1px solid rgba(235, 104, 88, 0.3);
}

.urgency-med {
    background-color: rgba(244, 180, 93, 0.18);
    color: #f4b45d;
    border: 1px solid rgba(244, 180, 93, 0.3);
}

.urgency-low {
    background-color: rgba(140, 180, 135, 0.18);
    color: #a3d99b;
    border: 1px solid rgba(140, 180, 135, 0.3);
}

/* Action promo box */
.action-promo-box {
    background-color: rgba(255, 255, 255, 0.07);
    border-left: 4px solid var(--taupe);
    padding: 16px 22px;
    margin: 30px auto;
    max-width: 620px;
    text-align: left;
    box-sizing: border-box;
}

.action-promo-box p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.5;
    color: #e0e0e0 !important;
}

.action-promo-box strong {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .content-img { height: 300px; }
}