
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    margin: 0;
    padding: 0;
    height: auto;
}
  body{
    font-family: 'Cormorant', serif;

  }
  .gradient-overlay {
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    /* min-height: 110vh; */
    padding-bottom: 4vh;
    background: linear-gradient(to bottom, #EFEFEF, #967B87);
  }
  .gradient-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #EFEFEF, #967B87);
    z-index: -99;
  }

  .gradient-overlay-gallery {
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    /* height: 200%; */
    background: linear-gradient(to bottom, #EFEFEF, #967B87);
  }
  .top-bar {
    width: 100vw;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  /* 스크롤 시 배경색 변경을 위한 클래스 */
.top-bar.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease;
}

  /* 로고 이미지 스타일 */
  .logo img {
    height: 6vh;
    width: auto;
  }

  .menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  /* 메뉴 스타일 */
  .menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8vw;
  }


  .menu a {
    color: #939092;
    text-decoration: none;
    font-size: 2.5vh;
    line-height: 8vh;
    transition: all 0.3s ease;
  }

  /* 활성 상태 메뉴 스타일 */
  .menu a.active {
    color: #966c81;
    border-bottom: 1px solid #966c81; /* 활성 상태에서 밑줄을 표시 */
  }

  .menu a:hover {
    color: #966c81;
  }

  .main-container {
    display: flex;
    flex-direction: row;
    /* position: absolute; */
    /* top: 20%; 
    left: 50%;  */
    padding-top: 16vh;
    /* transform: translateX(-50%);  */
    width: 90%; 
}

.column {
    width: 33.33%; /* 각 컬럼의 너비를 1/3로 설정 */
    box-sizing: border-box; /* 패딩과 보더를 너비에 포함 */
}

/* 컬럼 간의 간격 조절 */
.column:not(:last-child) {
    margin-right: 1%; /* 컬럼 사이의 간격 조정 */
}


  .image-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
}


  .rounded-image {
    /* position: flex;
    top: 20%; 
    left: 8%; */
    width: 30vmin;
    height: 30vmin; 
    object-fit: cover;
    object-position: center 20%; 
    border-radius: 50%; /* 둥근 모서리 설정 */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* 그림자 효과 */
}

  .name-text {
    margin-top: 4vh; /* 이미지와 텍스트 사이 간격 */
    font-size: 3.6vh; /* 텍스트 크기 */
    color: #797677; /* 텍스트 색상 */
    text-align: center;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
}

.name-text .korean {
    font-family: "Nanum Gothic", sans-serif;
    /* font-size: large; */
    font-size: 2.8vh;
}


.name-text .english {
    font-family: 'Cormorant', serif; /* 기존 영문 폰트 */
}


.profile-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

  .contact-title {
        margin-top: 10vh;
        font-weight: bold;
        font-size: 3.2vh;
        color: #966c81;
        text-align: left;
        /* text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); */
        align-self: flex-start;
        
      }


  .profile-title {
    margin-top: 4vh;
    font-size: 3.2vh;
    color: #966c81;
    text-align: left;
    /* text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); */
    align-self: flex-start;
    font-weight: bold;
  }
  

  .profile-info {
    margin-top: 4vh;
    font-size: 2.8vh;
    color: #000000;
    text-align: left;
    border-left: 1px solid #000000;
    padding-left: 1vw;
  }
  .profile-info p {
    margin-bottom: 1vh; /* 단락 사이의 간격 조절 */
}

  .text-overlay {
    position: absolute;
    top: 65%;
    left: 4%;
    color: white;
    font-size: 7vh;
    font-weight: bold;
    letter-spacing: 0.05em;
    z-index: 8;
}

  .highlight {
      color: #b3648a;
  }

  .img-container {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translateY(-50%);
    width: 30vw;
    height: auto;
    padding: 4%;
    /* background-color: #ffffff; */
    border-radius: 0%;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); */
    z-index: 5;
}


/* .img-container {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 30%;
    background-color: #ffffff;
    border-radius: 0%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); 
    z-index: 5; 
} */

.img-container img {
    width: 100%;
    /* margin: 10px auto; */
    display: block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    /* 필요에 따라 추가 스타일을 적용하세요 */
}

.column-gal {
    width: 20%; /* 각 컬럼의 너비를 1/3로 설정 */
    box-sizing: border-box; /* 패딩과 보더를 너비에 포함 */
}

/* 컬럼 간의 간격 조절 */
.column-gal:not(:last-child) {
    margin-right: 1%; /* 컬럼 사이의 간격 조정 */
}

/* 갤러리 컨테이너 스타일 */
.gallery-container {
    position: absolute;
    /* top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); */
    z-index: 2;
    box-sizing: border-box; 
    min-width: 100%; 
    overflow-y: visible;
    background: linear-gradient(to bottom, #EFEFEF, #967B87);
    margin-bottom: 0;
}

.gallery-container h1 {
    text-align: left;
    padding-left: 3vw;
    padding-bottom: 1vw;
    margin-bottom: 1vh;
    margin-top: 12vh;
    border-bottom: 1px solid #b3b2b2;
    font-size: 1.6vw;
    color: #333333;
}


/* 갤러리 그리드 스타일 */
.gallery {
    padding-top: 2vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    width: 100%; /* 전체 너비 사용 */
}

/* 갤러리 아이템 스타일 */
.gallery-item {
    /* display: flex;
    flex-wrap: wrap; */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2vh;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
    justify-content: flex-start; /* 갤러리 아이템을 왼쪽 정렬 */
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 갤러리 이미지 스타일 */
.gallery-item img {
    height: auto;
    width: 100%; /* 고정 높이 제거 */
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* 반응형 디자인 조정 */
/* @media (max-width: 768px) {
    .gallery-container {
        width: 100%;
        margin-bottom: 0;
    }

    .gallery-container h1 {
        font-size: 2.5vh;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-item img {
        height: auto;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        width: 100%;
        margin-bottom: 0;
    }

    .gallery-container h1 {
        font-size: 2vh;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .gallery-item img {
        height: auto;
    }
} */
