/* Hen Party Page Styles */

/* Hero Section */
.hen-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hen-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hen-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hen-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(139, 69, 19, 0.5) 100%);
    z-index: 2;
}

.hen-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--spacing-md);
    width: 100%;
    max-width: 1200px;
}

.hen-hero-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: calc(var(--spacing-xxl) + 20px) var(--spacing-xl) calc(var(--spacing-xxl) + 35px) var(--spacing-xl);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hen-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: calc(var(--spacing-md) + 10px);
    padding-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hen-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: calc(var(--spacing-xl) + 15px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding-bottom: 10px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 25px;
    margin-bottom: 0;
}

.btn {
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

    .hen-hero-container {
        padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
        margin: 0 var(--spacing-sm);
        margin-top: 140px;
        margin-bottom: 60px;
    }

    .hen-hero-title {
        font-size: 2rem;
    }

    .hen-hero-subtitle {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hen-hero {
        height: 55vh;
        min-height: 400px;
    }

    .hen-hero-container {
        padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg) var(--spacing-md);
        margin-top: 160px;
        margin-bottom: 80px;
    }

    .hen-hero-title {
        font-size: 1.75rem;
    }
}

/* Hen Party Info & Booking Section */
.hen-info-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

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

.hen-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Info Card */
.hen-info-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hen-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.accent-line-hen {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 30px;
}

.hen-package-details {
    margin-bottom: 35px;
}

.hen-package-details h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.package-list {
    list-style: none;
    padding: 0;
}

.package-list li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-list li i {
    color: var(--accent-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Pricing Cards */
.pricing-options {
    margin-bottom: 35px;
}

.pricing-options h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.price-card {
    background: #faf5f7;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.price-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
}

.price-features li {
    padding: 5px 0;
}

.price-features li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
}

/* Venue Options */
.venue-options {
    margin-bottom: 30px;
}

.venue-options h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

.hen-special-note {
    background: linear-gradient(135deg, #faf5f7 0%, #fff 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.hen-special-note p {
    color: #333;
    margin: 0;
    font-size: 1.05rem;
}

/* Right Form Card */
.hen-form-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hen-form-card .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.hen-booking-form .form-group {
    margin-bottom: 20px;
}

.hen-booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.hen-booking-form input[type="text"],
.hen-booking-form input[type="email"],
.hen-booking-form input[type="tel"],
.hen-booking-form select,
.hen-booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.hen-booking-form input:focus,
.hen-booking-form select:focus,
.hen-booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.hen-booking-form textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit-hen {
    width: 100%;
    padding: 14px 30px;
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-hen:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive for Info Section */
@media (max-width: 968px) {
    .hen-info-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hen-info-card,
    .hen-form-card {
        padding: 25px 20px;
    }
    
    .hen-info-title {
        font-size: 1.75rem;
    }
}

/* Manchester Venues Section */
.hen-venues-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.hen-venues-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.hen-venues-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-align: center;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.venue-card {
    background: #faf5f7;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.venue-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.venue-icon i {
    color: white;
    font-size: 1.5rem;
}

.venue-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.venue-address {
    margin-bottom: 20px;
}

.venue-address p {
    color: #666;
    line-height: 1.5;
    margin: 3px 0;
    font-size: 0.95rem;
}

.venue-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.venue-badge {
    background: white;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

.venue-note {
    background: linear-gradient(135deg, #faf5f7 0%, #fff 100%);
    padding: 25px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.venue-note p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.venue-note i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Locations Section */
.hen-locations-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #faf5f7 100%);
}

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

.hen-locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.accent-line-center {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 30px;
}

.hen-locations-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.location-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.location-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.location-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.location-note {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-note p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.location-note strong {
    color: #333;
}

.location-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-make-enquiry {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-make-enquiry:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Testimonials Section */
.hen-testimonials-section {
    padding: 80px 20px;
    background-color: #faf5f7;
}

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

.hen-testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.hen-testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-cta {
    text-align: center;
    padding: 40px 20px 0;
}

.cta-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
}

.btn-testimonial-enquiry {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-testimonial-enquiry:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive for Venues */
@media (max-width: 768px) {
    .hen-venues-title {
        font-size: 2rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .venue-card {
        padding: 25px;
    }
}

/* Responsive for Testimonials */
@media (max-width: 768px) {
    .hen-testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* Responsive for Locations */
@media (max-width: 768px) {
    .hen-locations-title {
        font-size: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .location-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hen-locations-title {
        font-size: 1.75rem;
    }
    
    .hen-locations-subtitle {
        font-size: 1rem;
    }
}