/* ============================================
   PARTY DETAILS PAGES
   Standardized layout for individual party sales pages.
   Used by: laser-tag-party, mini-mischiefs-party, etc.
   ============================================ */

/* --- LAYOUT OVERRIDES --- */
.page-template-full-width #content_left {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.left_title {
    margin-bottom: 25px;
}

/* --- MAIN CONTAINER --- */
.party-container {
    font-family: 'proxima-nova', sans-serif;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 25px;
    clear: both;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

/* --- CARDS --- */
.party-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.card-header {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.card-title {
    margin: 0;
    font-size: 1.4em;
    font-weight: 800;
    color: var(--secondary-purple);
    text-transform: uppercase;
}

/* --- HERO BAR (Price & Title) --- */
.price-hero {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, #6a2c8c 100%);
    /* Default Purple */
    color: white;
    padding: 30px;
    border-radius: var(--radius-card);
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(78, 32, 104, 0.2);
}

/* Variant: Laser Tag (Red) */
.price-hero.hero-laser {
    background: linear-gradient(135deg, #c0392b 0%, #8e44ad 100%);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.2);
}

/* Variant: Standard / Blue */
.price-hero.hero-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

/* Variant: Orange / Brunch */
.price-hero.hero-orange {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

/* Variant: Green / After School */
.price-hero.hero-green {
    background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.price-label {
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}

.big-price {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.price-sub {
    font-size: 0.9em;
    opacity: 0.9;
}


/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 6px;
}

.feature-icon {
    font-size: 2em;
    line-height: 1;
}

.feature-text strong {
    display: block;
    color: var(--secondary-purple);
    margin-bottom: 3px;
}

.feature-text p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}


/* --- BOOKING BUTTON --- */
.book-btn {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: var(--primary-red);
    color: white;
    padding: 15px 20px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(179, 28, 15, 0.3);
    box-sizing: border-box;
    white-space: normal;
    line-height: 1.3;
}

.book-btn:hover {
    background: #94160b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(179, 28, 15, 0.4);
    color: #fff;
}

/* --- ALERTS --- */
.info-alert {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95em;
    color: #0d47a1;
    border-radius: 4px;
}

.info-alert.warning {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .big-price {
        font-size: 2.8em;
    }

    .party-card {
        padding: 20px 15px;
    }
}