/* BASIC css start */
/* ±âº» ½ºÅ¸ÀÏ */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* °¡·Î ½ºÅ©·Ñ ¹æÁö */
}

h1, h2 {
  margin: 0;
}

h1 span {
  display: block;
  margin-top: -5px;
}

/* #wrapÀÇ ·¹ÀÌ¾Æ¿ô Á¶Á¤ */
#wrap {
  display: flex;
  flex-direction: column;
}

/* °øÅë p ÅÂ±× ½ºÅ¸ÀÏ */
p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* ÆÐ·²·¢½º ÄÁÅ×ÀÌ³Ê */
.parallax-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ÆÐ·²·¢½º ¹è°æ */
.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* ÅØ½ºÆ® ÄÁÅÙÃ÷ */
.content {
  position: relative;
  text-align: center;
  z-index: 1;
  color: #fff;
  max-width: 80%;
}

.content h1, .content h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

/* ÅØ½ºÆ® ¼½¼Ç */
.text-section {
  padding: 40px 20px; /* ±âÁ¸º¸´Ù ÁÙÀÓ */
  margin: 0; /* Ãß°¡ÀûÀÎ ¿©¹é Á¦°Å */
  background-color: #222;
  text-align: center;
}

.text-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

/* ÇªÅÍ */
footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}


/* Swiper Ä³·¯¼¿ ½ºÅ¸ÀÏ (¹è°æ¸¸ º¯°æ) */
.swiper-container {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ÆÐ·²·¢½º ¹è°æ (Ä³·¯¼¿¿¡ ¿µÇâ¹ÞÀ½) */
.swiper-slide .parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* ÅØ½ºÆ® °íÁ¤ */
.fixed-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 1rem;
  z-index: 2; /* Ä³·¯¼¿º¸´Ù À§¿¡ Ç¥½Ã */
}
/* BASIC css end */

