body {
    margin: 0;
}













/* HEADER -------------------------------------------------------------------------------- */
header {
    height: 50px;
    background-color: hsl(0, 0%, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.MainLogo {
    width: 100px;
    height: auto;
    margin: 5px 10px 0 10px; 
}   
.SnsBtn {
    display: flex;
    align-items: center;
    gap: 8px;
}
.SnsBtn img {
    width: 36px;
    height: auto;
}           


























/* NAV-------------------------------------------------------------------------------- */
nav {
    height: 5px;
    background-color: hsla(0, 0%, 0%, 0.795);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    gap: 10px;
    padding: 10px 0;
}

.nav-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0);
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0);
}

.nav-btn.active {
    background-color: white;
    color: black;
}


.nav-btn .long-label {
  display: none;
  white-space: pre-line;
  
}
.nav-btn:hover .short-label {
  display: none;
}
.nav-btn:hover .long-label {
  display: inline;
}


















/* MAIN------------------------------------------------------------------------------------------------ */
main {
    overflow: hidden;
    width: 100vw;
    
}

.main-slider {
    display: flex;
    width: 500vw; /* 5�? ?��?���? */
    transition: transform 0.5s ease;

}



.slide {
    width: 100vw;
    min-height: 200px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* �ʿ�� align-items: center; �߰� ���� */
}

.slide:nth-child(1) { background-color: #ffffff; }
.slide:nth-child(2) { background-color: #ffffff; }
.slide:nth-child(3) { background-color: #ffffff; }
.slide:nth-child(4) { background-color: #ffffff; }
.slide:nth-child(5) { background-color: #ffffff; }

.LandingImg {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover; 
    display: block;
    margin: 0 auto;
}
.LandingImgContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    
}
.LandingText {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* ���� �߾� ���� */
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    padding: 20px;
    border-radius: 8px;
}
.prewrap-text {
  background-color: #ffffff;
  padding: 20px;
  max-width: 600px;    /* PC���� �ִ� �ʺ� ���� */
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .prewrap-text {
    max-width: 100%;   /* ����Ͽ����� �� ���� */
    padding: 16px;
  }
}

.prewrap-text p {
    white-space: pre-wrap; /* �ٹٲ��� �����ϸ鼭 ���鵵 ���� */
    word-wrap: break-word; /* �� �ܾ�� �ٹٲ� */
    overflow-wrap: break-word; /* �� �ܾ�� �ٹٲ� */
    line-height: 1.6; /* �� ���� */
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    text-align: left;
    text-align: justify;
}

.prewrap-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0; /* �̹����� �ؽ�Ʈ ������ ���� */
}


































/* FOOTER-------------------------------------------------------------------------------- */
footer {
    background-color: #ffffff;
 
    color: #000000;
    padding: 1px 0;
    text-align: center;
    font-size: 0.8rem;
    
}
footer p {
    margin-bottom: 0em;
}