/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
 /* ── CSS Variables ── */
:root {
    --pink-bg:   #fce8f0;
    --purple:    #6b4fa0;
    --purple-lt: #9b7ec8;
    --mauve:     #c48bb5;
    --text:      #3a2a4d;
    --border:    #d9b8d0;
}
.kch-opening-hours {
    max-width: 500px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px auto;
}

.kch-hours-title {
    font-size: 28px;
    font-weight: 700;
    color: #696099;
    margin: 0 0 30px 0;
    text-align: left;
}

.kch-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kch-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.kch-hours-row:last-child {
    border-bottom: none;
}

.kch-day {
    font-size: 16px;
    color: #696099;
    font-weight: 400;
}

.kch-time {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.kch-hours-row.kch-today .kch-day {
    color:#696099;
    font-weight: 700;
}

.kch-hours-row.kch-today .kch-time {
    color: #696099;
    font-weight: 700;
}

@media (max-width: 600px) {
    .kch-opening-hours {
        padding: 20px;
    }

    .kch-hours-title {
        font-size: 24px;
    }

    .kch-day,
    .kch-time {
        font-size: 14px;
    }
}

/* ── FORM CARD ── */
.kch-contact-wrap {
    background: var(--pink-bg);
    border-radius: 18px;
    padding: 30px;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 8px 40px rgba(107, 79, 160, 0.12);
}

.kch-contact-wrap h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--purple);
    margin: 0 0 6px;
    letter-spacing: 0.02em;
}

.kch-contact-wrap p.kch-sub {
    font-size: 0.9rem;
    color: var(--mauve);
    margin: 0 0 32px;
    font-weight: 300;
}

/* ── FIELD GROUP ── */
.kch-contact-wrap .kch-field {
    margin-bottom: 22px;
}

.kch-contact-wrap .kch-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 7px;
}

.kch-contact-wrap .kch-field label span.req {
    color: var(--mauve);
    margin-left: 2px;
}

/* Target CF7 generated inputs and textareas */
.kch-contact-wrap .kch-field input[type="text"],
.kch-contact-wrap .kch-field input[type="email"],
.kch-contact-wrap .kch-field input[type="tel"],
.kch-contact-wrap .kch-field textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.kch-contact-wrap .kch-field input::placeholder,
.kch-contact-wrap .kch-field textarea::placeholder {
    color: #c8adc4;
}

.kch-contact-wrap .kch-field input:focus,
.kch-contact-wrap .kch-field textarea:focus {
    border-color: var(--purple-lt);
    box-shadow: 0 0 0 4px rgba(155, 126, 200, 0.15);
}

.kch-contact-wrap .kch-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* ── SEND BUTTON ── */
.kch-contact-wrap .kch-btn,
.kch-contact-wrap input[type="submit"].kch-btn {
    display: inline-block;
    background: var(--purple);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 38px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(107, 79, 160, 0.25);
    -webkit-appearance: none;
    appearance: none;
}

.kch-contact-wrap .kch-btn:hover,
.kch-contact-wrap input[type="submit"].kch-btn:hover {
    background: var(--purple-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 79, 160, 0.3);
}

.kch-contact-wrap .kch-btn:active,
.kch-contact-wrap input[type="submit"].kch-btn:active {
    transform: translateY(0);
}

/* ── CF7 Validation & Response Messages ── */
.kch-contact-wrap .wpcf7-not-valid-tip {
    color: #c0406a;
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

.kch-contact-wrap .wpcf7-response-output {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: none !important;
}

/* CF7 invalid field highlight */
.kch-contact-wrap .wpcf7-not-valid {
    border-color: #c0406a !important;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .kch-contact-wrap {
        padding: 36px 24px;
    }
}