/*
Theme Name: YOKOSO Theme
Theme URI: https://example.com
Author: You
Description: Next.js → WordPress (Tailwind CDN)
Version: 1.0.0
Text Domain: yokoso-theme
*/

/* =========================
   BASE STYLES
========================= */

/* Containers */

.ast-container{
	flex-direction: column;
}

/* Hero Section */
.hero-section {
  background-color: #f9f5e7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
	padding-bottom: 11rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 11rem;
  }
}

/* Left Section */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-top-text p {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0;
}



.hero-top-text p:first-child {
  font-weight: bold;
}

.hero-top-text p:last-child {
  font-weight: 600;
}

/* Heading */
.hero-heading h1 {
  font-size: 3.75rem;
  font-weight: bold;
  color: #323232;
  line-height: 1.1;
  margin: 0;
}

@media  (max-width: 768px) {
  .hero-top-text p, .hero-heading {
    text-align: center;
  }
}

.hero-heading span {
  display: block;
}

.hero-heading .subheading {
  font-size: 3rem;
}

@media (min-width: 640px) {
  .hero-heading h1 {
    font-size: 5rem;
  }
  .hero-heading .subheading {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading h1 {
    font-size: 6rem;
  }
  .hero-heading .subheading {
    font-size: 4.5rem;
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 25px;
  font-weight: 600;
  color: white;
  border-radius: 38px;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px rgba(0,0,0,0.2);
}

.btn-company {
  background-color: #1A4D40;
	color: white !important;
}

.btn-company:hover {
  background-color: #153d32;
	color: white !important;
}

.btn-jobseekers {
  background-color: #5E9C90;
	color: white !important;
}

.btn-jobseekers:hover {
  background-color: #4a7d73;
	color: white !important;
}

.btn-text {
  text-align: center;
}

.btn-text .main {
  font-weight: 600;
}

.btn-text .sub {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Right Section */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image {
    justify-content: flex-end;
  }
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 20rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-circle {
    width: 24rem;
    height: 24rem;
  }
}

.hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section Base */
.reasons-section {
  background-color: #fff;
  position: relative;
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 1.5rem 5rem;;
    text-align: center;
	z-index: 10;
	position: relative;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
	padding-top: 5rem;
  margin-bottom: 8rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}
.job_filters .showing_jobs{
	display: none !important;
}
/* Row Layout */
.reasons-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .reasons-row {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Images */
.reason-image {
  width: 100%;
}

.reason-image img {
  width: 100%;
  height: auto;
  border-radius: 0.375rem; /* 6px */
  object-fit: cover;
}

/* Text */
.reason-text {
  text-align: left;
}

.reason-text h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.reason-text p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151; /* text-gray-700 */
}

@media (min-width: 768px) {
  .reason-text p {
    font-size: 1rem;
  }
}

/* Decorative background block */
.decorative-block {
  position: absolute;
  right: 0;
  top: 45%;
  width: 50%;
  height: 17rem;
  background-color: #f0fdf4; /* green-50 */
  z-index: 1;
}


.local-focus-section {
  background-color: #fff;
  position: relative;
}

.local-focus-container {
  max-width: 1200px; /* Tailwind max-w-6xl */
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
}

.focus-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-top:-30px;
}



.focus-image img {
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
  object-fit: cover;
}

.focus-text {
  text-align: left;
}

.focus-text h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.focus-text p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151;
}

@media (min-width: 768px) {
  .focus-row {
    flex-direction: row;
  }
  .focus-image, {
    width: 30%;
  }
  .focus-text {
	width:65%	
   }
  .focus-text p {
    font-size: 1rem;
  }
}

/* Decorative green banner */
.local-focus-banner {
  position: absolute;
  top: 45%;
  left: 0;
  width: 55%;
  height: 17rem;
  background-color: #f0fdf4; /* green-50 */
  z-index: 1;
  margin-top:60px;
}

.features-section {
  background-color: #f9f5e7;
  padding: 4rem 1rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.features-title {
  font-size: 2rem;
  font-weight: bold;
  color: #323232;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .features-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .features-title {
    font-size: 3rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  position: relative;
  text-align: center;
}

.feature-badge {
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(156, 163, 175, 0.4); /* gray-300/40 */
}

@media (min-width: 640px) {
  .feature-badge {
    font-size: 7rem;
  }
}

@media (min-width: 1024px) {
  .feature-badge {
    font-size: 5rem;
  }
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-left: 3rem;
}

.feature-content img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.feature-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #323232;
}

@media (min-width: 640px) {
  .feature-text h3 {
    font-size: 1.25rem;
  }
}

.feature-text p {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: left;
  color: #4b5563; /* gray-600 */
}

@media (min-width: 640px) {
  .feature-text p {
    font-size: 1rem;
  }
}



/* Timeline */
.timeline-wrapper {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 2rem;
	height: 93%;
  top: 25px;
  bottom: 0;
  width: 2px;
  background-color: #047857; /* green-700 */
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 3rem;
}

.timeline-dot {
  margin-top: -9px;
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #047857;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.timeline-number {
  position: absolute;
  left: -2rem;
  top: -0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #323232;
}

@media (min-width: 640px) {
  .timeline-number {
    font-size: 1.875rem;
  }
}

.timeline-content h3 {
  font-size: 25px;
  font-weight: 900;
  color: #323232;
  margin-bottom: 0.5rem;
  text-align: left;
}

.timeline-content p {
  font-size: 18px;
  line-height: 1.75;
  color: #4b5563; /* gray-600 */
  text-align: left;
}

@media (min-width: 640px) {
  .timeline-content p {
    font-size: 1rem;
  }
}


.case-studies {
  padding: 60px 0;
  background: #fff;
  font-family: sans-serif;
}
.case-studies .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.case-studies .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.case-studies .section-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}
.case-studies .case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .case-studies .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .case-studies .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .case-studies .case-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.case-studies .case-card {
  position: relative;
  background: #FFFBEB;
  padding: 24px;
	border-radius: 20px;
  min-height: 100%;
}
.case-studies .case-id {
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: fantasy, serif;
  font-size: 48px;
  color: #4a9782;
  line-height: 1;
}
.case-studies .case-icon {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 20px;
  font-size: 32px;
}
.case-studies .case-industry {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}
.case-studies .case-company p {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0;
  color: #000;
}
.case-studies .case-section {
  margin-bottom: 20px;
}
.case-studies .case-section h5 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
  border-left: 4px solid #4a9782;
  padding-left: 8px;
}
.case-studies .case-section p {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
}
.case-studies .case-section ul {
  font-size: 12px;
  color: #000;
  list-style: disc;
  padding-left: 18px;
}
.case-studies .case-result {
  font-style: italic;
}

