/* ==================== */
/* Hen Party Theme Pages CSS */
/* ==================== */

/* Hero Section */
.hen-theme-hero {
    background: rgba(0,206,209,0.8), url('../images/hen-party-hero.jpg') center center/cover;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.hen-theme-hero .hero-content-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 0 auto;
}

.hen-theme-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hen-theme-hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: white;
    line-height: 1.7;
}

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

.hen-theme-hero .btn-primary {
    background: transparent;
    border: 2px solid white;
    padding: 12px 35px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.hen-theme-hero .btn-secondary {
    background: white;
    border: 2px solid white;
    padding: 12px 35px;
    border-radius: 5px;
    color: #2D2D2D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.hen-theme-hero .btn-primary:hover {
    background: white !important;
    color: #2D2D2D !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hen-theme-hero .btn-secondary:hover {
    background: transparent !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Breadcrumb */
.hen-breadcrumb {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.hen-breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hen-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.hen-breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.hen-breadcrumb .active {
    color: #2D2D2D;
    font-weight: 600;
}

/* Main Content */
.hen-main-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.hen-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2D2D2D;
}

.info-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Pricing Grid */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.price-item {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    text-align: center;
}

.price-item .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF6B6B;
}

/* Songs List */
.songs-list {
    list-style: none;
    padding: 0;
}

.songs-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.songs-list li:before {
    content: "♪";
    color: #FF6B6B;
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.btn-submit {
    background: #2D2D2D;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* Package List */
.package-list {
    list-style: none;
    padding: 0;
}

.package-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.package-list li:before {
    content: "✓";
    color: #4CAF50;
    margin-right: 10px;
    font-weight: bold;
}

/* Gallery Section */
.hen-gallery-section {
    padding: 80px 0;
    background: white;
}

.hen-gallery-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,206,209,0.4);
    color: white;
    padding: 20px;
    text-align: center;
}

/* Why Choose Section */
.hen-why-section {
    padding: 80px 0;
    background: white;
}

.hen-why-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Venues Section */
.hen-venues-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.hen-venues-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hen-venues-section .subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.venue-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.venue-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2D2D2D;
}

.venue-card .venue-name {
    font-weight: 600;
    margin-bottom: 10px;
}

/* CTA Section */
.hen-cta-section {
    padding: 80px 0;
    background: #2D2D2D;
    color: white;
    text-align: center;
}

.hen-cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hen-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hen-cta-section .btn-primary {
    background: #FF6B6B;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
}

.hen-cta-section .btn-primary:hover {
    background: white;
    color: #2D2D2D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* FAQ Accordion */
.hen-faq-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.hen-faq-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2D2D2D;
    padding-right: 40px;
}

.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon:before {
    content: '+';
    font-size: 1.5rem;
    color: #FF6B6B;
    transition: transform 0.3s;
}

.faq-toggle:checked + .faq-question .faq-icon:before {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hen-content-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid,
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .hen-theme-hero h1 {
        font-size: 2.5rem;
    }
    
    .hen-theme-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hen-theme-hero .btn-primary,
    .hen-theme-hero .btn-secondary {
        width: 250px;
        text-align: center;
    }
}