.elementor-3557 .elementor-element.elementor-element-7bcae92{--display:flex;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-9922d0c *//* Texas Music Cafe FAQ Style Module - Dark Theme Edition */

.tmc-faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #e2e8f0; /* Soft light gray for premium look & readability */
    line-height: 1.6;
}

.tmc-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.tmc-faq-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tmc-faq-header p {
    color: #a0aec0; /* Subdued gray text */
    font-size: 1.1rem;
}

.tmc-faq-category {
    margin-bottom: 40px;
}

.tmc-faq-category h3 {
    font-size: 1.4rem;
    color: #ff4d4d; /* Bright neon-electric red for dark backgrounds */
    border-bottom: 2px solid #2d3748; /* Dark divider line */
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.tmc-cat-icon {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Accordion Core Structure (Pure CSS Dark Mode) */
.tmc-faq-item {
    position: relative;
    background: #1a202c; /* Deep Charcoal background */
    border: 1px solid #2d3748; /* Slate border */
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.14);
    transition: all 0.2s ease;
}

.tmc-faq-item:hover {
    border-color: #4a5568;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Hide the native checkbox completely */
.tmc-faq-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

/* Question style serving as the toggle click area */
.tmc-faq-question {
    display: block;
    padding: 18px 50px 18px 20px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #edf2f7;
    cursor: pointer;
    position: relative;
    user-select: none;
}

/* Custom chevron pseudo-element arrow indicators */
.tmc-faq-question::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #a0aec0;
    border-bottom: 2px solid #a0aec0;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease, top 0.3s ease;
}

/* Hidden Answer Styling */
.tmc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #141923; /* Even darker shade for answer dropdown contrast */
}

.tmc-faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #cbd5e0; /* Clean, legible body gray */
    font-size: 1rem;
}

.tmc-faq-answer a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(255, 77, 77, 0.4);
    transition: border-color 0.2s ease;
}

.tmc-faq-answer a:hover {
    border-bottom-style: solid;
    border-color: #ff4d4d;
}

/* Checked State Styles (Activates when a question is clicked) */
.tmc-faq-toggle:checked ~ .tmc-faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.tmc-faq-toggle:checked ~ .tmc-faq-question {
    background-color: #232b38; /* Distinct highlighted look when active */
    color: #ffffff;
}

.tmc-faq-toggle:checked ~ .tmc-faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
    border-color: #ff4d4d; /* Arrow glows red when open */
}

/* CTA Footer Callout */
.tmc-faq-footer {
    text-align: center;
    background: #1a202c;
    border: 1px dashed #4a5568;
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.tmc-faq-footer h4 {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.tmc-faq-footer p {
    color: #a0aec0;
    margin: 0 0 20px 0;
}

.tmc-btn {
    display: inline-block;
    background: #ff4d4d;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(255, 77, 77, 0.2);
}

.tmc-btn:hover {
    background: #e03e3e;
    box-shadow: 0 6px 12px rgba(255, 77, 77, 0.3);
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .tmc-faq-header h2 { font-size: 1.8rem; }
    .tmc-faq-question { font-size: 1rem; padding: 15px 45px 15px 15px; }
    .tmc-faq-answer p { padding: 0 15px 15px 15px; }
    .tmc-faq-question::after { right: 18px; }
}/* End custom CSS */