/* Themes Page Specific Styles */
/* ============================ */

/* Hero Section */
.hen-party-hero {
    background: url('../images/hen-party-hero.jpg') center center/cover;
    position: relative;
    padding: 120px 0 80px;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    background: rgba(0,0,0,0.7);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.btn-outline-primary {
    background: transparent;
    color: #00CED1;
    border: 2px solid #00CED1;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: #00CED1 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,206,209,0.3);
}

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

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #999;
}

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

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

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

/* Pricing Section */
.intro-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.intro-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #2D2D2D;
}

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

.price-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 2px solid #FF6B6B;
}

.price-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF6B6B;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2D2D2D;
}

.price-card .price {
    font-size: 3rem;
    color: #FF6B6B;
    margin: 20px 0;
    font-weight: bold;
}

.price-card .subtitle {
    color: #666;
}

.price-card ul {
    list-style: none;
    padding: 20px 0;
    text-align: left;
}

.price-card li {
    padding: 8px 0;
    color: #666;
}

.btn-primary {
    background: #00CED1;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #00B5B8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,206,209,0.3);
}

/* Dance Themes Section */
.dance-styles {
    padding: 80px 0;
    background: white;
}

.dance-styles h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2D2D2D;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.style-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.style-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.style-content {
    padding: 25px;
}

.style-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2D2D2D;
}

.style-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.style-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.style-meta .level {
    font-weight: 600;
    color: #00CED1;
}

.style-meta .duration {
    color: #666;
}

.style-link {
    display: inline-block;
    color: #00CED1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.style-link:hover {
    color: #FF6B6B;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 80px 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.form-illustration {
    text-align: center;
}

.form-illustration-image {
    margin: 0 auto;
    max-width: 400px;
}

.form-illustration-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.form-illustration h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-top: 30px;
    color: #2D2D2D;
}

.form-illustration p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-intro-text {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
}

.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

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

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

.form-field select {
    cursor: pointer;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    resize: vertical;
    font-family: inherit;
}

#hen-party-enquiry-form input:focus,
#hen-party-enquiry-form select:focus,
#hen-party-enquiry-form textarea:focus {
    border-color: #00CED1;
    outline: none;
}

.form-submit-wrapper {
    grid-column: 1 / -1;
}

.form-submit-btn {
    background: #2D2D2D;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 45, 45, 0.3);
}

.form-submit-arrow {
    background: white;
    color: #2D2D2D;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Decorative Divider */
.decorative-divider {
    text-align: center;
    padding: 40px 0;
}

.decorative-divider hr {
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    border: none;
    border-top: 2px solid #2D2D2D;
    opacity: 0.8;
}

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

.faq-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.faq-accordion input[type="checkbox"] {
    display: none;
}

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

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2D2D2D;
    font-size: 1.1rem;
    user-select: none;
    position: relative;
}

.faq-question:hover {
    color: #00CED1;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #00CED1;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-accordion input[type="checkbox"]:checked + label .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-accordion input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-answer-content p {
    margin: 0;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: white;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2D2D2D;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* CTA Section styles */
.classes-cta {
    background: linear-gradient(135deg, #00CED1 0%, #4ECDC4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.classes-cta p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
}

.classes-cta .hero-buttons {
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hen-party-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 250px;
        text-align: center;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hen-party-hero h1 {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .btn-outline-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}