/* fade */
.fade {
    animation: heroFadeIn 0.8s ease-out;
}
/* Hero Section */
.hero {
  height: 100vh;
  background: url(../img/main_1.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  position: relative;
}

.hero-content {
  animation: heroFadeIn 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 900px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-block;
  background: #be9062;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.hero-cta:hover {
  background: #c5a17c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(214, 178, 141, 0.3);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 공통 */
.title-main {
  font-size: 55px;
  font-family: "Pretendard";
  line-height: 1.25;
  padding-bottom: 4rem;
  letter-spacing: -1.8px;
}
.title-main-2 {
  font-size: 45px;
  font-family: "Pretendard";
  line-height: 1.25;
  padding-bottom: 4rem;
  letter-spacing: -1.8px;
}
.title-sub {
  font-size: 23px;
  font-weight: 700;
  color: #bb8f0a;
  font-family: "S-CoreDream";
  padding-bottom: 10px;
}
.title-submain {
  font-size: 28px;
  font-family: "Pretendard";
  line-height: 1.25;
  letter-spacing: -0.8px;
  color: #494949;
  padding: 1rem 0;
}
.title-submain b {
    color: #bb8f0a;
}

/* About Section */
.about {
  background: url(../img/about_bg.jpg) center;
  padding: 120px 5% 100px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.about-image img {

}

.about-text {
  font-size: 20px;
  color: #666666;
  margin-top: 2.2rem;
  margin-bottom: 9rem;
  line-height: 1.7;
}

.about-button {
  font-size: 18px;
  color: #a05d21;
  font-weight: 700;
  display: inline-block;
  padding: 3px;
  border-bottom: 3px solid #a05d21;
}

.about-button:hover {
  color: #000;
  border-color: #000;
}


/* slogan */
.slogan {
  padding: 260px 0 150px;
  background: url(../img/slogan_bg.jpg) center;
  text-align: center;
}
.slogan .t19 {
  font-size: 20px;
  padding-top: 11rem;
  color: #fff;
  opacity: 0.74;
}

/* Products Section */
.products {
  background: #ffffff;
  padding: 120px 5% 100px;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #111111;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  padding: 16px 0;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #111111;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d6b28d;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, #f8f5f2, #e8e0d6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #d6b28d;
}

.product-image img {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.product-info {
  padding: 24px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: #d6b28d;
}

.view-all-btn {
  display: block;
  margin: 0 auto;
  background: none;
  border: 2px solid #d6b28d;
  color: #d6b28d;
  padding: 14px 28px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #d6b28d;
  color: #ffffff;
}

/* 슬라이드 화살표 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
  background: #d6b28d;
  border-color: #d6b28d;
  color: #ffffff;
}

.slider-arrow.prev {
  left: -60px;
}

.slider-arrow.next {
  right: -60px;
}

.slider-arrow i {
  font-size: 16px;
}

/* Reservation CTA */
.reservation-cta {
  background: #d6b28d;
  padding: 100px 5%;
  text-align: center;
}

.reservation-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.4;
}

.reservation-btn {
  display: inline-block;
  background: #ffffff;
  color: #d6b28d;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.reservation-btn:hover {
  background: #d6b28d;
  color: #ffffff;
}

/* cs */
.cs {
  background: url(../img/cs.jpg) center;
  padding: 70px 0;
  text-align: center;
  background-size: cover;
  color: #fff;
}

.cs p {
  font-size: 26px;
  padding: 2rem 0 4rem;
}

.cs .btn {
display: flex;
grid-gap: 10px;
justify-content: center;
}
.cs .btn a:nth-child(2) {
  background: #fff;
  color: rgb(165, 108, 42);
}


/* 모바일 대응 */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero {
    background-image: url(../img/main_1m.jpg);
    background-position-x: 33%;
  }

  .hero-content {
    padding: 1rem;
  }

  .map-card,
  .location-info-box {
    flex: none;
    max-width: 100%;
  }

  .map-container {
    height: 300px;
  }

  .location-info-box {
    max-width: none;
  }

  .slider-arrow {
    display: none;
  }

}

/* Responsive */
@media (max-width: 768px) {

/* 공통 */
.title-main {
  font-size: 40px;
  padding-bottom: 3rem;
  letter-spacing: -1.8px;
}
.title-main-2 {
  font-size: 33px;
}
.title-sub {
  font-size: 18px;
}
.title-submain {
  font-size: 21px;
  color: #494949;
  padding: 1rem 0;
}

.cs
.about,
.slogan,
.products {
  padding: 60px 10px !important;
}


#about {
    padding: 60px 10px 40px !important;
}

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
  .about-text {
    font-size: 18px;
    margin-bottom: 4rem;
  }
.slogan {
  background-size: cover;
}
.slogan .t19 {
  padding-top: 5rem;
  font-size: 17px;
}
}
