/* ==========================================================================
   Saraswati Evender - Site Enhancements
   Event-planner color accents, motion/scroll effects, small responsive fixes.
   Loaded AFTER style.css so these rules take priority.
   ========================================================================== */

:root {
    --se-blush: #92623D;
    --se-blush-dark: #7A5130;
    --se-gold: #92623D;
    --se-cream: #F7F1EA;
    --se-ink: #300406;
}

html {
    scroll-behavior: smooth;
}

/* ---- Gold accent on primary buttons ---- */
.theme-btn,
.theme-btn-s2,
.theme-btn-s4 {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn-s4:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(146, 98, 61, 0.35);
}

/* ---- Section title gold underline flourish ---- */
.wpo-section-title h2 {
    position: relative;
    display: inline-block;
}

/* ---- Card / image hover-lift, used across grids ---- */
.wpo-story-img,
.dest-frame,
.gal-frame,
.office-info-item,
.wpo-fun-fact-grids .grid {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wpo-story-img:hover,
.office-info-item:hover,
.wpo-fun-fact-grids .grid:hover {
    transform: translateY(-6px);
}

/* ---- Scroll-reveal (for elements without the wow.js "wow" class) ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-up.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-up.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-up.reveal-delay-4 { transition-delay: 0.48s; }

/* ---- Sticky header polish ---- */
.wpo-site-header.sticky-header {
    box-shadow: 0 6px 24px rgba(146, 98, 61, 0.25);
}

/* ---- Back to top button gold accent ---- */
a.back-to-top {
    background: linear-gradient(135deg, var(--se-blush), var(--se-gold)) !important;
}

/* ---- Our Process (about page) ---- */
.wpo-process-section {
    background: var(--se-cream);
    padding: 90px 0;
}

.wpo-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1150px;
    margin: 0 auto;
}

.wpo-process-item {
    background: #fff;
    border: 1px solid #E6D6C6;
    border-radius: 16px;
    padding: 34px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(146, 98, 61, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wpo-process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(146, 98, 61, 0.22);
}

.wpo-process-item .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--se-blush), var(--se-gold));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
}

.wpo-process-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--se-ink);
    margin-bottom: 10px;
}

.wpo-process-item p {
    font-size: 14px;
    color: #5A3F34;
    margin: 0;
}

/* ---- Our Services (home page) ---- */
.wpo-services-section {
    padding: 90px 0;
}

.wpo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1150px;
    margin: 0 auto;
}

.wpo-service-card {
    background: #fff;
    border: 1px solid #E6D6C6;
    border-top: 3px solid var(--se-blush);
    border-radius: 16px;
    padding: 36px 26px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 30px rgba(146, 98, 61, 0.1);
}

.wpo-service-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--se-gold);
    box-shadow: 0 20px 45px rgba(146, 98, 61, 0.2);
}

.wpo-service-card .service-ico {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F7F1EA, #E6D6C6);
    color: var(--se-gold);
    font-size: 24px;
    transition: all 0.4s ease;
}

.wpo-service-card:hover .service-ico {
    background: linear-gradient(135deg, var(--se-blush), var(--se-gold));
    color: #fff;
}

.wpo-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--se-ink);
    margin-bottom: 10px;
}

.wpo-service-card p {
    font-size: 14px;
    color: #5A3F34;
    margin: 0;
}

/* ---- FAQ accordion (contact page) ---- */
.wpo-faq-section {
    padding: 90px 0;
    background: var(--se-cream);
}

.wpo-faq-wrap {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #E6D6C6;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--se-ink);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--se-gold);
    font-size: 22px;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    color: #5A3F34;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.wpo-hours-strip {
    max-width: 850px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.wpo-hours-strip .hours-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--se-gold);
    margin-bottom: 6px;
}

.wpo-hours-strip .hours-block p {
    margin: 0;
    color: var(--se-ink);
}

/* ---- Responsive collapse for the new grids ---- */
@media (max-width: 991px) {
    .wpo-process-grid,
    .wpo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .wpo-process-grid,
    .wpo-services-grid {
        grid-template-columns: 1fr;
    }
}
