/* Hen Parties Page Specific Styles */
/* ================================= */

/* Hero Section */
.hen-party-hero {
    background: url('../images/hen-party-hero.jpg') center center/cover;
    position: relative;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
    min-height: 500px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 35px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ffffff;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 1.5;
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background: #00CED1;
    color: #ffffff;
    border: 2px solid #00CED1;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: #00CED1;
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #333;
    transform: translateY(-2px);
}

/* Social Proof Section */
.social-proof {
    background: #f8f8f8;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: #00CED1;
    margin: 0;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
}

.stat-label {
    color: #666;
    margin: 5px 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 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;
}

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

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

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Dance Styles Section */
.dance-styles {
    padding: 80px 0;
    background: #fff;
}

.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 */
.styles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 30px;
    margin-top: 50px;
}

/* Style Card */
.style-card {
    background: #fff;
    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 span {
    font-weight: 600;
    color: #FF6B6B;
}

.style-meta .level {
    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;
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.price-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B6B;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #2D2D2D;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price-card .price {
    font-size: 3rem;
    color: #FF6B6B;
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Bebas Neue', sans-serif;
}

.price-card p {
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

/* Booking Process Section */
.booking-process {
    background: #f8f8f8;
    padding: 80px 0;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #00CED1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2D2D2D;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: visible;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00CED1;
}

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

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00CED1;
    border-radius: 2px;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

.feature {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    min-height: 150px;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00CED1;
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(0, 206, 209, 0.2);
}

.feature:hover::before {
    opacity: 1;
}

.feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #2D2D2D;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Booking Info Section */
.booking-info {
    background: #00CED1;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    animation: float 20s infinite ease-in-out;
}

.booking-info::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.04);
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.booking-info .container {
    position: relative;
    z-index: 1;
}

.booking-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.booking-info p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.booking-info .btn {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.booking-info .btn-primary {
    background: #fff;
    color: #FF6B6B;
    border: 2px solid #fff;
}

.booking-info .btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.booking-info .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.booking-info .btn-secondary:hover {
    background: #fff;
    color: #00CED1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.faqs {
    background: #fff;
}

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

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2D2D2D;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hen-party-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-info h2 {
        font-size: 2.5rem;
    }
    
    .booking-info p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .booking-info .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hen-party-hero h1 {
        font-size: 2rem;
    }
    
    .booking-info h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .booking-info p {
        font-size: 1rem;
    }
    
    .booking-info .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

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

.contact-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* Left side illustration */
.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;
}

/* Right side form container */
.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;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}