/*
 Theme Name:   Hello Elementor Child
 Description:  Luxury Theme for The Quiet Collectiv
 Author:       Scriptzen
 Template:     hello-elementor
 Version:      1.0.0
*/


#tribe-events-pg-template {
    background: #0A0A0A;
    max-width: 100% !important;
    padding: 0;
}

.evt-hero-content{
        padding: 0 56px 52px;
            z-index: 3;
}
.evt-hero{
    padding-top: 130px;
}
.evt-hero {
    width: 100%;
    height: 40vh; 
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end; 
}
.evt-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover !important; 
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.evt-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0) 100%);
    z-index: 2;
}






/* Typography & Headings */
.evt-expect-title, .evt-faq-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Expectations List */
.evt-expect ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }
.evt-expect li { 
    font-size: 13px; 
    line-height: 1.7; 
    color: rgba(0,0,0,.5); 
    padding-left: 16px; 
    position: relative; 
}
.evt-expect li::before { 
    content: '--'; 
    position: absolute; 
    left: 0; 
    color: rgba(0,0,0,.28); 
}

/* Accordion Styling */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); overflow: hidden; }
.faq-q { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 18px 0; 
    cursor: pointer; 
    font-size: 14px; 
    color: rgba(0,0,0,.6); 
    transition: color .25s; 
}
.faq-q:hover { color: var(--black); }
.faq-icon { 
    font-size: 18px; 
    color: rgba(0,0,0,.3); 
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Animation Logic */
.faq-a { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); 
    font-size: 13px; 
    line-height: 1.72; 
    color: rgba(0,0,0,.5); 
}

.faq-a-inner { padding-bottom: 20px; }

/* Open State */
.faq-item.open .faq-a { 
    max-height: 1000px; /* Bada number taaki content na kate */
    transition: max-height 0.8s ease-in;
}
.faq-item.open .faq-icon { 
    transform: rotate(45deg); 
    color: var(--black); 
}
.faq-item.open .faq-q { color: var(--black); }

/* Host Section Fix */
.evt-host { 
    display: flex; 
    gap: 16px; 
    align-items: flex-start; 
    padding: 22px; 
    background: rgba(0,0,0,.03); 
    border: 1px solid rgba(0,0,0,.06); 
    margin-top: 28px; 
}
.evt-host-img { 
    width: 52px; 
    height: 52px; 
    border-radius: 50%; 
    background-size: cover; 
    background-position: center; 
    flex-shrink: 0; 
}


/* CONTACT POPUP BASE */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 8900;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.popup-box {
    background: #111111; /* Black2 */
    border: 1px solid rgba(255,255,255,.1);
    padding: 52px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(16px);
    transition: transform .38s cubic-bezier(.25,.46,.45,.94);
}

.popup-overlay.open .popup-box {
    transform: translateY(0);
}

/* CF7 INPUT STYLING */
.custom-cf7-wrapper .wpcf7-text, 
.custom-cf7-wrapper .wpcf7-textarea, 
.custom-cf7-wrapper .wpcf7-select,
.custom-cf7-wrapper .wpcf7-tel,
.custom-cf7-wrapper .wpcf7-email {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 12px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #F8F8F6;
    outline: none;
    transition: border-color .3s;
    margin-bottom: 20px;
    display: block;
}

.custom-cf7-wrapper .wpcf7-text:focus, 
.custom-cf7-wrapper .wpcf7-textarea:focus {
    border-bottom-color: #F8F8F6;
}

/* SUBMIT BUTTON */
.custom-cf7-wrapper .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: #F8F8F6; /* White */
    color: #0A0A0A; /* Black */
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: .26em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .25s;
    margin-top: 10px;
}

.custom-cf7-wrapper .wpcf7-submit:hover {
    background: #DEDEDE; /* Grey5 */
}

.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255,255,255,.3);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}










