/* Custom CSS
    * --------------------------------------- */
body {
  font-family: arial, helvetica;
  color: #F2F2F2;
}

.content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}


/* =============================================
   main.css - 메인 컨텐츠 스타일
   ============================================= */

/* ── Hero Section ─────────────────────────── */
#fullpage section {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

#hero {
  position: relative;
  padding-top:50px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 40px 30px;
}

.hero-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
}

/* Hero Title */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
  flex-shrink: 0;
  flex: 1;
}

.hero-title .subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.hero-title .main-title {
  font-size: 96px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-title .main-title p {
  margin: 0;
}

/* Hero Cards Grid */
.hero-cards {
  flex: 1;
  min-width: 0;
}

/* Desktop Layout */
.cards-desktop {
  display: flex;
  gap: 14px;
  height: 767px;
}

.cards-desktop .col-left {
  display: flex;
  flex-direction: column;
  flex: 1.4;
  gap: 14px;
}

.cards-desktop .col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  flex-shrink: 0;
}

/* Mobile Layout */
.cards-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
}

/* Generic Card */
.card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: filter 0.2s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.card:hover {
  filter: brightness(1.1);
}

.card-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.card-title p {
  margin: 0;
}

.card-bottom {
  display: flex;
  align-items: center;
}

.card-bottom.end {
  justify-content: flex-end;
}

/* Card Colors */
.card-bootcamp {
  background-color: var(--color-primary);
  flex: 1;
}

.card-inorganic {
  background-color: var(--color-secondary01);
  flex: 1;
}

.card-organic {
  background-color: var(--color-secondary02);
  flex: 1;
}

.card-guidebook {
  background-color: var(--color-secondary04);
  flex: 1;
}

/* Hiring Fair Card */
.card-hiring {
  flex: 2.5;
  background: linear-gradient(135deg, rgb(246, 208, 50) 50%, rgb(186, 101, 23) 94%);
}

.card-hiring .card-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  object-fit: contain;
  z-index: 0;
  display: block;
  max-width: none;
}

.card-hiring .card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.card-hiring .arrow-btn-black {
  filter: brightness(1) invert(1);
}

.card-hiring .card-title {
  color: #000000;
  margin-bottom:5px;
}

.card-hiring .card-date {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.card-hiring .card-date p {
  margin: 0;
}

/* Edu Apply Card */
.card-edu {
  flex: 1;
  background: transparent;
  background-image: url('/html/assets/img/main/hero_img02.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-edu .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.card-edu .card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Arrow Button SVG */
.arrow-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Bootcamp Icon Group */
.bootcamp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 66px;
}

.bootcamp-icons img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ── Participation Sections (sec01 / sec02 / sec03) ── */
.section-participation {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-participation .sec-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-participation .sec-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-participation .sec-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.sec-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1464px;
  margin: 0 auto;
  padding: 96px 32px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Section rows */
.sec-row {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

/* Title block */
.sec-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ffffff;
  flex-shrink: 0;
  width: 360px;
}

.sec-title-block h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color:#fff;
}

.sec-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.sec-subtitle p {
  margin: 0;
}

.sec-desc {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.sec-desc p {
  margin: 0;
}

/* Logo area */
.sec-logos {
  flex: 1;
  min-width: 0;
  width:100%;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Logo Card */
.logo-card {
  background: #ffffff;
  border-radius: 80px;
  height: 80px;
  flex: 0 0 calc(33% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-card img {
  max-height: 50px;
  max-width: 180px;
  width:100%;
  object-fit: contain;
  display: block;
}

.logo-card svg {
  max-height: 50px;
  max-width: 200px;
  display: block;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1199.98px) {
	.cards-desktop .col-left,
  .cards-desktop .col-right {
    flex:1;
  }
}

/* 1280px 이하: 타이틀 축소 */
@media (max-width: 991.98px) {
  #hero {
    padding-top: 40px;
  }

  .hero-content {
    padding: 32px 16px 48px;
  }

  .hero-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-top: 0;
  }

  .hero-title {
    width: 100%;
    gap: 12px;
  }

  .hero-title .subtitle {
    font-size: 15px;
  }

  .hero-title .main-title {
    font-size: 40px;
  }

  .hero-title .main-title p {
    display: inline-block;
  }

  .card-hiring .card-bg-img {
    width:60%;
  }
  .sec-row {
    flex-direction: column;
    gap: 24px;
  }

  .sec-title-block {
    width: 100%;
  }

  .sec-content {
    padding: 30px 16px;
    gap: 48px;
  }
  .sec-title-block {
    gap:5px;
  }
  .sec-title-block h2 {
    font-size: 32px;
  }

  .sec-subtitle {
    font-size: 20px;
    padding-top:15px;
  }

  .sec-desc {
    font-size: 15px;
  }

  .sec-subtitle p,
  .sec-desc p {
    display:inline-block;
  }
}

/* 640px 이하 모바일 */
@media (max-width: 767.98px) {
  #fullpage section {
    background-attachment:unset;
    height:auto !important;
    min-height:auto !important;
  }
  .fp-tableCell {
    height:auto !important;
    display:flex;
    align-items:center;
  }
  #footer .fp-tableCell {
    display:table-cell;
    vertical-align:middle;
  }
  #hero {
    padding-top: 0;
  }
  #hero {background-image:url('/html/assets/img/main/main_section01_mo_bg.jpg') !important;}
  #sec01 {background-image:url('/html/assets/img/main/main_section02_mo_bg.jpg') !important;}
  #sec02 {background-image:url('/html/assets/img/main/main_section03_mo_bg.jpg') !important;}
  #sec03 {background-image:url('/html/assets/img/main/main_section04_mo_bg.jpg') !important;}
  
  .hero-content {
    padding:calc(80px + 60px) 16px 80px;
  }
  .sec-content {
    gap: 40px;
    padding: 80px 16px;
  }

  .cards-desktop {
    height:600px;
  }
  .hero-title .main-title {
    font-size: 28px;
    white-space: normal;
  }

  .card-hiring .card-bg-img {
    width:64%;
  }

  .card {
    padding: 20px;
    border-radius:10px;
  }

  .card-title {
    font-size: 18px;
  }

  .bootcamp-icons {
    width:50px;
  }
  .bootcamp-icons img {
    width:20px;
    height:20px;
  }
  .logo-grid {
    gap:6px;
  }

  .logo-card {
    height: 60px;
    flex:0 0 calc(33% - 6px);
    padding:6px 30px;
  }

  .logo-card img {
    max-height: 40px;
    max-width: 140px;
  }

  .arrow-btn {
    width:30px;
    height:30px;
  }
  .sec-title-block h2 {
    font-size: 24px;
  }

  .sec-subtitle {
    font-size: 14px;
    padding-top:10px;
  }

  .sec-desc {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .hero-content {
    padding:calc(80px + 30px) 16px 40px;
  }
  .sec-content {
    padding: 40px 16px;
  }

  .hero-title {
    gap:10px;
  }
  .hero-title .main-title {
    font-size: 20px;
  }
  .hero-title .subtitle {
    font-size: 14px;
  }
	.cards-desktop {
    flex-direction: column;
    height:auto;
    gap:6px;
  }
  .cards-desktop .col-left,
  .cards-desktop .col-right {
    gap:6px;
    flex:unset;
    flex-direction: row;
    flex-wrap:wrap;
  }
  .cards-desktop .col-left {
    flex-direction: row;
    flex-wrap:wrap;
  }
  .card-bootcamp { flex:0 0 100%; }
  .card-hiring .card-date {
    font-size:11px;
  }
  .card {
    padding:15px;
  }
  .card-title {
    font-size:13px;
  }
  .card-title p {
    display:inline-block;
  }
  .card-bootcamp {
    flex-direction: row;
  }
  .bootcamp-icons {
    gap:6px;
    width:auto;
  }
  .arrow-btn {
    width:20px;
    height:20px;
  }
  .card-edu .card-inner .card-bottom{
    justify-content: flex-end;
  }
  .card-hiring {
    flex:0 0 100%;
  }
  .card-hiring .card-bg-img {
    width:auto;
    height:100%;
  }
  .card-hiring .card-bg-img img {
    width:auto;
    height:150%;
    object-fit: contain;
    padding:10px 10px 0 0;
  }

  .sec-content {
    gap: 30px;
  }

  .logo-card {
    height: 50px;
    padding:6px 25px;
  }
  .sec-title-block h2 {
    font-size: 16px;
  }
}
@media (max-width: 430.98px) {
  .logo-card {
    height: 40px;
    padding:6px 15px;
  }
}


/* BUILD_STAMP: 2026-03-05T20:45:00+09:00 */