
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-family: 'Pretendard', sans-serif;
  --color-text: #111;
  --color-bg: #fff;
  --color-accent: #f0c040;
  --color-footer-bg: #3c4043;
  --color-footer-text: #ccc;

  --font-h1: clamp(2rem, 5vw, 3.5rem);
  --font-h2: clamp(1.5rem, 4vw, 2.5rem);
  --font-h3: clamp(1.25rem, 3.5vw, 2rem);
  --font-p: clamp(1rem, 2.5vw, 1.125rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: #fff;
  color: #111;
  word-break: break-all;
  padding-top: 90px;
}

body.menu-open {
  overflow: hidden !important;
  height: 100vh;
  position: fixed;
  width: 100%;
  overscroll-behavior: none; /* 모바일에서 bounce 효과 제거 */
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 헤더 레이아웃 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
}

.header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-right {
  z-index: 2;
}

.header-left .btn-reserve {
  padding: 8px 16px;
  background: #444;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-logo img {
  height: 60px;
  max-width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:focus,
.hamburger:active {
  outline: none;
  box-shadow: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* 사이드 네비게이션 */
.side-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
  padding: 100px 20px 40px;
  text-align: center;
  z-index: 100;
}

.side-nav.open {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}

.side-nav-menu {
  list-style: none;
  font-size: 1.5rem;
}

.side-nav-menu li {
  margin-bottom: 1.5rem;
}

.side-nav-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.side-nav-menu a:hover {
  color: gold;
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #111;
}

.hero-subheading {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 15px;
  color: #444;
}

.hero-quote {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: #666;
  margin-bottom: 40px;
}

.hero-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  background-color: #f8f6f3;
  padding: 6rem 2rem;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-feature.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.about-feature img {
  flex: 1 1 40%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 320px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); 
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-feature img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h3 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.about-content p {
  color: #444;
  line-height: 1.7;
}




.gallery-section {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
              url('/wp-content/themes/generatepress-child/img/gallery-bg.webp') no-repeat center center / cover;
  padding: 5rem 1rem;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-section.reveal {
  opacity: 1;
  transform: translateY(0);
}

.gallery-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.gallery-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.gallery-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: #c49a6c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #a3784d;
  transform: scale(1.05);
}

.gallery-images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-images img {
  width: 240px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}


.invitation-section {
  background: linear-gradient(to bottom, #111, #1e1e1e);
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.invitation-inner {
  max-width: 1200px;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.invitation-image {
  flex: 1 1 400px;
}

.invitation-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.invitation-text {
  flex: 1 1 500px;
  max-width: 600px;
}

/* 글라스모피즘 효과 */
.invitation-text.glass-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.invitation-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
  font-weight: 700;
}

.invitation-text h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #f9f9f9;
  font-weight: 600;
}

.invitation-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1rem;
}

.invitation-text ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.invitation-text ul li {
  color: #ddd;
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* 스크롤 애니메이션 */
.invitation-section.reveal {
  animation: fadeInUp 1.2s ease-out both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* BLOG SECTION */

.blog-section {
  padding: 80px 20px;
  background-color: #111;
  color: #fff;
}

.blog-section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.blog-swiper {
  padding-bottom: 60px;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  height: auto;
  overflow: visible;
}

.blog-slide-card {
  width: 100%;
  max-width: 360px;
  min-width: 280px;
  min-height: 440px;
  margin: 0 auto; /* ✅ 가운데 정렬 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #1c1c1c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding-bottom: 20px;
  transition: transform 0.3s;
}

.blog-slide-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-slide-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-slide-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.blog-slide-content p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more {
  display: inline-block;
  align-self: center;
  margin-top: auto;
  padding: 6px 14px;
  background: #c49a6c;
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* CONTACT SECTION */

.contact-section {
  background-color: #111;
  padding: 80px 20px;
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.contact-left {
  flex: 1 1 480px;
  position: relative;
}

.contact-bg {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  max-height: 400px;
  filter: brightness(0.6);
}

.contact-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.contact-right {
  flex: 1 1 400px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.contact-right h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.contact-right p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.contact-buttons a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-call {
  background-color: #c49a6c;
  color: #fff;
}

.btn-sms {
  background-color: #333;
  color: #fff;
}

.btn-call:hover {
  background-color: #b46c1f;
}

.btn-sms:hover {
  background-color: #444;
}


/* page-about */

/* ABOUT 페이지 전용 클래스 */
.about-hero {
  width: 100%;
  height: 60vh;
  background: url('../img/about-banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
  border-radius: 12px;
}

.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.about-section.alt-bg {
  background-color: #f9f9f9;
}

.about-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.about-section-feature {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
  gap: 40px;
}

.about-section-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.about-section-image {
  flex: 1 1 400px;
}

.about-section-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-section-text {
  flex: 1 1 480px;
}

.about-section-text h3 {
  font-size: var(--font-h2);
  margin-bottom: 1rem;
  color: #111;
}

.about-section-text p {
  font-size: var(--font-p);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-section-cta {
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: #111;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e5b531;
}


/* 푸터 스타일 */
.site-footer {
  background-color: #3c4043;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-column {
  flex: 1 1 30%;
}

.footer-logo img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer-menu-list,
.footer-partners ul {
  list-style: none;
  padding: 0;
}

.footer-menu-list li,
.footer-partners li {
  margin-bottom: 10px;
}

.footer-menu-list a,
.footer-partners a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu-list a:hover,
.footer-partners a:hover {
  color: #f0c040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}





/* Responsive */

@media (max-width: 768px) {
.about-feature {
  flex-direction: column !important;
}

.about-feature img {
  max-height: 240px;
}

.gallery-images {
  flex-direction: column;
  align-items: center;
}

.gallery-images img {
  width: 90%;
  max-width: 320px;
}

.invitation-inner {
  flex-direction: column;
}

.invitation-image,
.invitation-text {
  max-width: 100%;
  flex: 1 1 100%;
}

.invitation-text.glass-box {
  padding: 1.5rem;
}

.invitation-text h2 {
  font-size: 1.6rem;
}

.contact-container {
  flex-direction: column;
}

.contact-title {
  font-size: 2.2rem;
}

.contact-right {
width: 100%;
}

.footer-inner {
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-column {
flex: 1 1 100%;
width: 100%;
margin-bottom: 30px;
}

.footer-bottom {
margin-top: 0;
}


/* page about */
.about-section-feature {
flex-direction: column;
}

.about-section-text {
padding: 0 16px;
}

.about-section-feature {
    flex-direction: column !important;
  }

  .about-hero h1 {
    font-size: 2rem;
    padding: 0.75rem 1.5rem;
  }

  .about-section {
    padding: 60px 16px;
  }

  .about-section-text,
  .about-section-image {
    flex: 1 1 100%;
  }

}

