/* ===========================
   PARTY PEOPLE PAGE STYLES
   =========================== */

/* PARTY INTRO SECTION */
.party-intro-section {
    padding: 80px 0;
    background-color: white;
}

.party-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text strong {
    color: #C41E3A;
}

.intro-text.highlight {
    font-size: 1.15rem;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

/* WHY DIFFERENT SECTION */
.why-different-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #E8E8E8;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #C41E3A;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reason-benefit {
    font-size: 0.95rem;
    background: #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #C41E3A;
    margin-top: 15px;
}

/* REPERTOIRE SECTION */
.repertoire-section {
    padding: 80px 0;
    background-color: white;
}

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.repertoire-card {
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.repertoire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.repertoire-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.songs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.songs-list p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.repertoire-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #C41E3A;
}

.repertoire-note p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #C41E3A 0%, #8B1528 100%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: calc(50% - 30px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 30px);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #C41E3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #C41E3A;
    font-size: 1.2rem;
    z-index: 10;
    top: 0;
}

.timeline-item.pause .timeline-marker {
    font-size: 1.5rem;
    background: #C41E3A;
    color: white;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-top: 0;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.vibe {
    font-weight: bold;
    color: #C41E3A;
}

.songs {
    font-style: italic;
    color: #666;
}

/* PACKAGES SECTION */
.packages-section {
    padding: 80px 0;
    background-color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    border-color: #C41E3A;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
    transform: translateY(-5px);
}

.package-card.featured {
    border-color: #C41E3A;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C41E3A;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.package-header {
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.package-header h3 {
    font-size: 1.3rem;
    margin: 0 0 5px 0;
}

.package-duration {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.package-body {
    padding: 25px;
    flex-grow: 1;
}

.package-body h4 {
    font-size: 1rem;
    color: #2C3E50;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.package-body h4:first-child {
    margin-top: 0;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.package-body li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
}

.package-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C41E3A;
    font-weight: bold;
}

.package-price {
    font-size: 0.95rem;
    color: #555;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #E8E8E8;
}

.package-card .btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

/* VIDEOS & TESTIMONIALS SECTION */
.videos-testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-placeholder {
    background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.video-placeholder h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonials-grid-party {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card-party {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #C41E3A;
    transition: all 0.3s ease;
}

.testimonial-card-party:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FFB800;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #2C3E50;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ SECTION PARTY */
.faq-section-party {
    padding: 80px 0;
    background-color: white;
}

.faq-container-party {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-party {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #E8E8E8;
}

.faq-item-party:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-left-color: #C41E3A;
}

.faq-question-party {
    font-size: 1.05rem;
    color: #C41E3A;
    margin: 0 0 10px 0;
    font-weight: bold;
    cursor: pointer;
}

.faq-answer-party {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* FINAL CTA SECTION PARTY */
.final-cta-section-party {
    padding: 80px 0;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    text-align: center;
}

.final-cta-section-party .section-title {
    color: white;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons-party {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.05rem;
}

.btn-secondary {
    background-color: white;
    color: #C41E3A;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    color: #C41E3A;
}

.btn-tertiary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* TRUST ELEMENTS PARTY */
.trust-elements-party {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.trust-item-party {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon-party {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-item-party p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.reason-card,
.repertoire-card,
.package-card,
.testimonial-card-party,
.faq-item-party {
    animation: fadeInUp 0.6s ease-out;
}

.video-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .party-intro-section,
    .why-different-section,
    .repertoire-section,
    .how-it-works-section,
    .packages-section,
    .videos-testimonials-section,
    .faq-section-party,
    .final-cta-section-party {
        padding: 50px 0;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .repertoire-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-party {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px;
    }

    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-buttons-party {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .trust-elements-party {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-text {
        font-size: 1rem;
    }

    .reason-card h3 {
        font-size: 1.1rem;
    }

    .package-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .party-intro-section,
    .why-different-section,
    .repertoire-section,
    .how-it-works-section,
    .packages-section,
    .videos-testimonials-section,
    .faq-section-party,
    .final-cta-section-party {
        padding: 40px 0;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .intro-text.highlight {
        font-size: 1rem;
        padding: 20px;
    }

    .reason-card,
    .package-card,
    .testimonial-card-party,
    .faq-item-party {
        padding: 20px;
    }

    .reason-icon {
        font-size: 2rem;
    }

    .repertoire-grid {
        grid-template-columns: 1fr;
    }

    .repertoire-card {
        padding: 20px;
    }

    .repertoire-card h3 {
        font-size: 1.05rem;
    }

    .songs-list p {
        font-size: 0.85rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-marker {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .package-header {
        padding: 20px;
    }

    .package-body {
        padding: 20px;
    }

    .package-header h3 {
        font-size: 1.05rem;
    }

    .package-duration {
        font-size: 0.85rem;
    }

    .video-placeholder {
        padding: 40px 20px;
    }

    .video-icon {
        font-size: 2.5rem;
    }

    .video-placeholder h3 {
        font-size: 1rem;
    }

    .video-placeholder p {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    .faq-question-party {
        font-size: 0.95rem;
    }

    .faq-answer-party {
        font-size: 0.9rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons-party {
        flex-direction: column;
        gap: 10px;
    }

    .btn-lg {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .trust-elements-party {
        grid-template-columns: 1fr;
    }

    .trust-item-party {
        justify-content: flex-start;
    }

    .trust-icon-party {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .trust-item-party p {
        font-size: 0.85rem;
    }

    .repertoire-note {
        padding: 20px;
        margin-top: 30px;
    }

    .repertoire-note p {
        font-size: 0.95rem;
    }
}

/* INTERACTIVE ELEMENTS */
.reason-card,
.package-card,
.testimonial-card-party {
    position: relative;
    overflow: hidden;
}

.reason-card::before,
.package-card::before,
.testimonial-card-party::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.reason-card:hover::before,
.package-card:hover::before,
.testimonial-card-party:hover::before {
    left: 100%;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .reason-card,
    .repertoire-card,
    .package-card,
    .testimonial-card-party,
    .faq-item-party,
    .video-placeholder,
    .timeline-content {
        animation: none;
        transition: none;
    }

    .video-icon {
        animation: none;
    }
}

/* DARK MODE SUPPORT (Optional) */
@media (prefers-color-scheme: dark) {
    .reason-card,
    .package-card,
    .testimonial-card-party,
    .faq-item-party,
    .timeline-content {
        background-color: #2C3E50;
        color: #E8E8E8;
    }

    .reason-card h3,
    .package-header h3,
    .testimonial-author,
    .faq-question-party,
    .timeline-content h3 {
        color: #E8E8E8;
    }

    .reason-card p,
    .package-body p,
    .package-body li,
    .testimonial-text,
    .faq-answer-party,
    .timeline-content p {
        color: #CCC;
    }

    .reason-benefit {
        background-color: #1a1a1a;
        color: #E8E8E8;
    }

    .repertoire-note {
        background-color: #1a1a1a;
        color: #E8E8E8;
    }

    .intro-text.highlight {
        background: linear-gradient(135deg, #8B1528 0%, #5a0f1a 100%);
    }
}

/* PRINT STYLES */
@media print {
    .hero,
    .final-cta-section-party,
    .cta-buttons-party {
        display: none;
    }

    .reason-card,
    .package-card,
    .testimonial-card-party,
    .timeline-content {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #DDD;
    }

    .repertoire-card {
        page-break-inside: avoid;
    }
}