/* =========================================
   1. 기본 설정
   ========================================= */

a {
  text-decoration: none;
  color: inherit;
}

/* 영문 강조 폰트 */
.cate,
.logo,
.footer-logo,
.sub-title {
  font-family: "Playfair Display", serif;
}
/* 1. 스크롤 애니메이션 효과 */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   3. 메인 비주얼 (Hero) - 핀터레스트 무드
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../img/main.jpg);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-text {
}

.hero-text .sub-title {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-style: italic;
}

.hero-text h1 {
  font-size: 66px;
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 40px;
}

.hero-text p {
  font-size: 22px;
  padding-bottom: 3rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 1px solid #000000;
  font-size: 16px;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* =========================================
   4. 브랜드 소개
   ========================================= */
.about {
  padding: 120px 20px;
  background: url(../img/about_bg.jpg) no-repeat;
  background-position: 90% center;
}

.about h2 {
  font-size: 46px;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-family: "Playfair Display";
}

.divider {
  width: 1px;
  height: 60px;
  background: #000;
  margin: 30px 7px;
}

.about .desc {
  font-size: 20px;
  color: #252525;
}
.about strong {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================================
    디렉터
   ========================================= */
.director {
  background: url(../img/director_bg.jpg);
  padding: 70px 0;
}

.director .container {
  display: grid;
  grid-template-columns: 1.24fr 1fr;
}

.director .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-family: "Playfair Display";
}
.director h2 {
  font-size: 38px;
  font-weight: 500;
}
.director p {
  font-size: 19px;
  line-height: 1.66;
  padding-bottom: 2rem;
}
.director span {
  opacity: 0.6;
  font-size: 16px;
}
/* =========================================
    서비스 (Grid Layout)
   ========================================= */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
  max-width: 1400px;
  margin: 0 auto;
}

.service-item {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
}

/* PC 라인 설정 */
.border-right {
  border-right: 1px solid #e0e0e0;
}
.border-top {
  border-top: 1px solid #e0e0e0;
}

.img-area {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 4px;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.service-item:hover .img-area img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.text-area .cate {
  display: block;
  font-size: 15px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.text-area h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}
.text-area p {
  font-size: 18px;
  color: #666;
  font-weight: 300;
}

/* =========================================
   6. 예약 배너 & 푸터
   ========================================= */
.reservation {
  padding: 100px 20px;
  text-align: center;
  background: #f9f9f9;
}
.res-text {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 300;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 50px;
  background: #000;
  color: #fff;
  font-size: 18px;
  border-radius: 50px; /* 둥근 버튼 */
  transition: 0.3s;
}
.btn-book:hover {
  background: #333;
  transform: translateY(-3px);
}

.main-footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.main-footer {
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid #eee;
}
.main-footer p {
  font-size: 13px;
  color: #888;
}
.main-footer .copy {
  margin-top: 10px;
  opacity: 0.5;
}
/* =========================================
   7. 모바일 반응형 (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

  .header-icon {
    display: block;
  }

  .hero {
    background-image: url(../img/main_m.jpg);
    background-size: cover;
    padding: 1rem;
  }

  .hero-text h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .hero-text h1 br {
    display: none;
  }
  .hero-text .sub-title {
    font-size: 14px;
    margin-bottom: 0;
    padding-bottom: 1rem;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-overlay {
    margin: auto;
    left: 30px;
    padding-bottom: 100px;
  }

  .about {
    padding: 60px 20px 120vw;
    background-position: center bottom;
    background-size: 80%;
  }
  .about h2 {
    font-size: 33px;
  }
  .about .desc {
    font-size: 18px;
  }

  .director .container {
    grid-template-columns: 1fr;
grid-gap: 33px;
}

  .services {
    grid-template-columns: 1fr;
    border: none;
  }

  .service-item {
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
  }
  .border-right {
    border-right: none;
  }
  .border-top {
    border-top: none;
  }

  .img-area {
    height: 250px;
  }

  .btn-book {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}
