/* Job Search Joy - Homepage Styles */

/* Hero Section */
.jsj-hero {
    background-color: var(--primary-yellow);
    background-image: url('/content/images/wordpress/2022/10/pet-shop-06.png');
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    overflow: hidden;
}

.jsj-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.jsj-hero-content {
    padding-right: 40px;
}

.jsj-hero h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.jsj-hero-tagline {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.5;
}

.jsj-hero-image img {
    width: 100%;
    max-width: 500px;
}

/* Problem Section */
.jsj-problem {
    background: var(--light-teal-bg);
    padding: 80px 60px;
}

.jsj-problem-container {
    max-width: 800px;
    margin: 0 auto;
}

.jsj-problem h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.jsj-problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.jsj-problem-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jsj-problem-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.jsj-problem-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.jsj-problem-text p {
    color: var(--black);
    font-size: 1rem;
}

/* Features Section */
.jsj-features {
    padding: 80px 60px;
    background: var(--white);
}

.jsj-features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jsj-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.jsj-features-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 48px;
}

.jsj-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.jsj-feature-card {
    text-align: center;
}

.jsj-feature-icon {
    margin-bottom: 16px;
}

.jsj-feature-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.jsj-feature-box {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px 30px;
    margin-top: -35px;
    position: relative;
    box-shadow: 0 15px 55px -10px var(--shadow-color);
}

.jsj-feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.jsj-feature-box p {
    font-size: 1rem;
    color: var(--black);
}

/* How It Works Section */
.jsj-steps {
    padding: 80px 60px;
    background: var(--white);
}

.jsj-steps-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jsj-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.jsj-steps-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 48px;
}

.jsj-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.jsj-step {
    text-align: center;
}

.jsj-step-icon {
    margin-bottom: 16px;
}

.jsj-step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.jsj-step h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.jsj-step p {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.6;
}

.jsj-steps-cta {
    text-align: center;
    margin-top: 48px;
}

/* FAQ Section */
.jsj-faq {
    padding: 80px 60px;
    background: var(--white);
}

.jsj-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.jsj-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.jsj-faq-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.jsj-faq-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jsj-faq-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.jsj-faq-text p {
    color: var(--black);
    font-size: 1rem;
}

/* Contact Section */
.jsj-contact {
    padding: 0 60px 80px;
}

.jsj-contact-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-teal-bg);
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
}

.jsj-contact-box h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.jsj-contact-box p {
    color: var(--black);
}

/* Testimonial Section */
.jsj-testimonial {
    padding: 80px 60px;
    background: var(--white);
}

.jsj-testimonial-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.jsj-testimonial blockquote {
    font-family: 'Autour One', cursive;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 24px;
}

.jsj-testimonial cite {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--black);
}

/* Responsive */
@media (max-width: 992px) {
    .jsj-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jsj-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jsj-hero {
        padding: 60px 24px;
    }

    .jsj-hero-container {
        grid-template-columns: 1fr;
    }

    .jsj-hero-content {
        padding-right: 0;
        text-align: center;
    }

    .jsj-hero h1 {
        font-size: 2rem;
    }

    .jsj-hero-image {
        display: none;
    }

    .jsj-problem,
    .jsj-features,
    .jsj-steps,
    .jsj-faq,
    .jsj-contact,
    .jsj-testimonial {
        padding-left: 24px;
        padding-right: 24px;
    }

    .jsj-problem h2,
    .jsj-features h2,
    .jsj-steps h2,
    .jsj-faq h2 {
        font-size: 1.75rem;
    }

    .jsj-features-grid,
    .jsj-steps-grid {
        grid-template-columns: 1fr;
    }

    .jsj-testimonial blockquote {
        font-size: 1.1rem;
    }
}
