/* Hen Parties Page Specific Styles */

/* Hero Section with Background Image */
.hen-party-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('../images/hen-party-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hen-party-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hen-party-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hen-party-hero-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hen-party-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hen-party-hero-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 40px;
    background: #FFFFFF;
    color: #000000;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    transition: all 0.3s ease;
    display: inline-block;
}

.hen-party-hero-btn:hover {
    background: transparent;
    color: #FFFFFF;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #FFFFFF;
    padding: 15px 0;
    border-bottom: 1px solid #E5E5E5;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999999;
}

.breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #000000;
}

.breadcrumb .active {
    color: #000000;
    font-weight: 400;
}

/* SEO Content Section */
.seo-intro-section {
    background: #FAF8F3;
    padding: 80px 20px;
}

.seo-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.seo-intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.seo-intro-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #333333;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Packages Section */
.packages-section {
    background: #FAF8F3;
    padding: 80px 20px;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.packages-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.02em;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.package-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.package-card-featured {
    border: 2px solid #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    margin-top: 15px;
}

.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1;
}

.package-duration {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #666666;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.package-features li {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #333333;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: #4CAF50;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.package-note {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}

.pricing-info {
    margin-top: 40px;
    text-align: center;
}

.pricing-highlight {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-highlight i {
    color: #FFD700;
}

.pricing-footer {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section - Accordion */
.faq-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.02em;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #FAF8F3;
    border-radius: 8px;
    border-left: 4px solid #000000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
    border-left-color: #D32F2F;
}

.faq-question {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    padding: 25px 30px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    line-height: 1.4;
    transition: all 0.3s ease;
    user-select: none;
}

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

.faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* Plus/Minus Icon */
.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #000000;
    transition: all 0.3s ease;
}

/* Horizontal line (always visible) */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 24px;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line (hidden when open) */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
}

/* Rotate icon and hide vertical line when open */
.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-icon::before {
    background: #D32F2F;
}

.faq-answer {
    padding: 0 30px 25px 30px;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Themes Section */
.themes-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

.themes-container {
    max-width: 1400px;
    margin: 0 auto;
}

.themes-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.02em;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.theme-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.theme-card-content {
    padding: 30px 25px;
}

.theme-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.theme-card-description {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.theme-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: #000000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.theme-card-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #D32F2F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.theme-card-link:hover {
    color: #B71C1C;
    gap: 12px;
}

.theme-card-link .arrow {
    transition: transform 0.3s ease;
}

.theme-card-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hen-party-hero {
        height: 60vh;
        min-height: 400px;
    }

    .hen-party-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hen-party-hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .breadcrumb {
        padding: 0 20px;
        font-size: 0.85rem;
    }

    .seo-intro-section {
        padding: 60px 20px;
    }

    .themes-section {
        padding: 60px 20px;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .theme-card-title {
        font-size: 1.5rem;
    }

    .packages-section {
        padding: 60px 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-price {
        font-size: 2.5rem;
    }

    .package-features li {
        font-size: 0.9rem;
    }

    .pricing-highlight {
        font-size: 1rem;
        flex-direction: column;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-accordion {
        gap: 12px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px;
        gap: 15px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-icon::before {
        width: 20px;
    }

    .faq-icon::after {
        height: 20px;
    }
}
