/* ========================= */
/* ✨ FAQ SECTION SPACING */
/* ========================= */
.info-section.wedding-info {
    padding-top: 8rem;      /* Increased slightly to clear navbar comfortably */
    padding-bottom: 6rem;   
}

/* ========================= */
/* ✨ FAQ MAIN TITLE — FINAL */
/* ========================= */
.faq-main-title {
    font-family: "DM Serif Display", serif;
    font-size: 3.5rem; /* Made slightly larger */
    text-align: center;
    color: #426A8D;
    margin-bottom: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ========================= */
/* ✨ FAQ GLASS CONTAINER */
/* ========================= */
.accordion {
    max-width: 800px;
    margin: 0 auto 4rem; /* Removed top margin since title handles spacing */
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95); /* Slightly less transparent for readability */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(66, 106, 141, 0.08); /* Softer blue shadow */
}

/* ========================= */
/* ✨ GROUP TITLES */
/* ========================= */
.faq-group-title {
    font-family: "DM Serif Display", serif;
    font-size: 1.8rem;
    color: #426A8D;
    text-align: center;
    margin: 3.5rem 0 2.5rem; 
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
}

/* Reduce space ONLY above first group */
.accordion .faq-group:first-of-type .faq-group-title {
    margin-top: 1rem;
}

/* ========================= */
/* ✨ ACCORDION ITEMS */
/* ========================= */
.accordion-item {
    border-bottom: 1px solid rgba(66, 106, 141, 0.15);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .question {
    font-family: "DM Serif Display", serif;
    font-size: 1.3rem;
    color: #35302A;
    text-align: left;
    transition: color 0.3s ease;
}

/* Interaction */
.accordion-header:hover .question,
.accordion-header.active .question {
    color: #C78D4E; /* Gold/Bronze accent */
}

/* Plus / Minus */
.accordion-header::after {
    content: "+";
    font-family: "DM Sans", sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #C78D4E;
    transition: transform 0.4s ease;
}

.accordion-header.active::after {
    content: "−";
    transform: rotate(180deg);
}

/* ========================= */
/* ✨ ACCORDION CONTENT */
/* ========================= */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    font-family: "DM Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding-bottom: 30px;
    margin: 0;
    max-width: 90%; /* Improves readability */
}

/* ========================= */
/* ✨ MOBILE TUNING */
/* ========================= */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .accordion {
        padding: 2rem 1.5rem;
        width: auto;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .accordion-header {
        padding: 20px 0;
    }
    
    .accordion-header .question {
        font-size: 1.1rem;
    }
}