/* Individual Hen Party Theme Pages Styles */

/* Scroll offset for sticky navigation */
#form,
#enquiry-form {
    scroll-margin-top: 250px;
}

/* iOS Safari select styling fix */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #333 !important;
    background-color: white !important;
}

.form-group select option {
    color: #333 !important;
    background-color: white !important;
}

/* Hero Section - 95vh with black background */
.hero {
    background: #000000 !important;
    background-color: #000000 !important;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 6rem;
    color: orangered;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: slideFromTop 1.2s ease-out;
}

/* Animation - slide from top */
@keyframes slideFromTop {
    from {
        transform: translateY(-100vh);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero bottom links */
.hero-links {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.hero-links a {
    color: orangered;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-links a:hover {
    opacity: 0.8;
}

.hero-links a::after {
    content: '→';
    font-size: 1.2rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Container for content sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #faf9f7;
    padding: 0.7rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.breadcrumb-item {
    font-size: 0.95rem;
    color: #666666;
}

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

.breadcrumb-item a:hover {
    color: orangered;
}

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

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: #999999;
    font-size: 1.1rem;
}

/* Section spacing - but not for hero */
section:not(.hero) {
    padding: 5rem 2rem;
}

/* Background colors for alternating sections - but not for hero */
section:not(.hero):nth-of-type(even) {
    background-color: #faf9f7;
}

section:not(.hero):nth-of-type(odd) {
    background-color: #ffffff;
}

/* Info Section with Two-Column Layout */
.info-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #faf9f7;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 2.5rem;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

/* Alternate rotation for visual interest */
.info-column:first-child .info-card:nth-child(even) {
    transform: rotate(1deg);
}

.info-column:last-child .info-card:nth-child(odd) {
    transform: rotate(1deg);
}

.info-column:last-child .info-card:nth-child(even) {
    transform: rotate(-1deg);
}

.info-card:hover {
    transform: rotate(-0.5deg);
}

.info-card h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Title with partial background highlight */
.title-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.title-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -0.2em;
    right: -0.2em;
    height: 50%;
    background-color: orangered;
    z-index: -1;
    opacity: 0.9;
}

.info-card p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.enquiry-link {
    color: orangered;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.enquiry-link:hover {
    opacity: 0.8;
}

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

.package-list li {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

/* Perfect For List */
.perfect-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perfect-for-list li {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Venue Locations Styling */
.venue-locations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.venue-item {
    padding: 1rem;
    background: #ffffff;
    border-left: 3px solid orangered;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
}

.venue-item strong {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Mobile Service Section */
.mobile-service {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-left: 3px solid orangered;
    border-radius: 4px;
}

.mobile-service h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    display: block;
}

.mobile-service p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Options Styling */
.pricing-options {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.pricing-item:first-child {
    border-radius: 8px 8px 0 0;
}

.pricing-item:last-child {
    border-radius: 0 0 8px 8px;
    border-top: none;
}

.pricing-duration {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-cost {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: orangered;
}

/* Enquiry Card within Info Section */
.info-card.enquiry-card {
    background: #ffffff;
    border-color: orangered;
}

.enquiry-subtitle {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Enquiry Form */
.enquiry-form {
    padding: 0.5rem 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid #000000;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: orangered;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: orangered;
    color: #ffffff;
    border: 2px solid orangered;
    border-radius: 4px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #ffffff;
    color: orangered;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #faf9f7;
    padding: 5rem 2rem;
}

.section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: orangered;
}

/* Testimonials Bento Grid */
.testimonials-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-box {
    background: #ffffff;
    border: 3px solid #000000;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Large box spans 2 columns and 2 rows */
.testimonial-box.large {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 300px 1fr;
}

/* Medium box spans 1 column and 2 rows */
.testimonial-box.medium {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    align-items: center;
}

/* Small boxes */
.testimonial-box.small {
    grid-column: span 1;
    grid-row: span 1;
}

.testimonial-box.small.with-image {
    height: 250px;
}

/* Images in testimonials */
.testimonial-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-box.large img {
    height: 300px;
}

/* Testimonial Content */
.testimonial-content {
    padding: 2rem;
}

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

.testimonial-box.large .testimonial-text {
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
}

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

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.scroll-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #000000;
    border: 3px solid orangered;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.scroll-button:hover {
    background: orangered;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.faq-item {
    background: #faf9f7;
    border: 3px solid #000000;
    margin-bottom: 1rem;
}

.faq-checkbox {
    display: none;
}

.faq-question {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #000000;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0efed;
}

.faq-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: orangered;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 20px;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 3px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

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

.faq-answer p {
    margin: 0;
    padding: 0 1.5rem;
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.5rem 0;
}

.faq-checkbox:checked ~ .faq-question {
    background-color: #f0efed;
}

.faq-checkbox:checked ~ .faq-question .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

/* CTA Section */
.cta-section {
    background-color: #faf9f7;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.cta-main-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #000000;
    border: 3px solid orangered;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-main-button:hover {
    background: orangered;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
}

/* Map Section */
.map-section {
    background-color: #faf9f7;
    padding: 5rem 2rem;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.map-info-card {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 2.5rem;
}

.map-info-card h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.map-info-card > p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-item {
    background: #faf9f7;
    border: 2px solid #000000;
    padding: 0.75rem;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #000000;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: orangered;
    color: #ffffff;
}

.location-item.venue-highlight {
    grid-column: span 3;
    background: orangered;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.location-item.venue-highlight:hover {
    background: #000000;
}

.map-description {
    border-left: 4px solid orangered;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.map-description p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.map-container {
    border: 3px solid #000000;
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-column {
        gap: 1.5rem;
    }
    
    .info-card {
        transform: rotate(0) !important;
        padding: 2rem;
    }
    
    .info-card h2 {
        font-size: 1.75rem;
    }
    
    .enquiry-card {
        transform: rotate(0);
        padding: 2rem;
    }
    
    .enquiry-card h2 {
        font-size: 2.5rem;
    }
    
    /* Testimonials responsive */
    .testimonials-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .testimonial-box.large,
    .testimonial-box.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .testimonial-box.large {
        grid-template-rows: 250px 1fr;
    }
    
    .testimonial-box.large img {
        height: 250px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* CTA responsive */
    .cta-title {
        font-size: 1.8rem;
    }
    
    /* Map responsive */
    .map-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-item.venue-highlight {
        grid-column: span 2;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h2 {
        font-size: 1.5rem;
    }
    
    .enquiry-card h2 {
        font-size: 2rem;
    }
    
    /* CTA responsive */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-main-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}