/*

Tooplate 2143 Inner Peace

https://www.tooplate.com/view/2143-inner-peace

Free HTML CSS Template

*/


@charset "utf-8";
/* CSS Document */

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

:root {
	--primary: #2D5A87;
	--secondary: #4A7C8A;
	--accent: #6B9B7A;
	--light: #F7F7F7;
	--dark: #2A2A3E;
	--gradient-1: linear-gradient(135deg, #2D5A87 0%, #4A7C8A 100%);
	--gradient-2: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
}

/* #region ===========================바디=========================== */
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
    background-color: #274731;  /* 원하는 색 (예: 어두운 회색) */
    color: #ddd7bf;             /* 글자색 대비용 */
}
/* #endregion */

/* #region ===========================헤더=========================== */
header {
  position: fixed;            /* 스크롤 시 항상 상단 고정 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #274731;  /* 기존 색 유지 */
  display: flex;
  justify-content: center;    /* 중앙 정렬 */
  align-items: center;
  height: 80px;               /* 고정 높이 */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}


/* 헤더 안의 글자색 */
header nav a,
header .logo-text {
    color: #f5f0e6 !important;   /* 밝은 베이지 톤 글자 */
    font-weight: 600;
}

/* 마우스 올렸을 때 */
header nav a:hover {
    color: #ddd7bf !important;   /* 조금 더 연한 색 */
}

/* ✅ nav는 header 안에서 중앙 고정 */
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; /* 부모(header) 높이에 맞춤 */
  padding: 0;
  margin: 0;
}

@media (max-width: 1000px) and (min-width: 769px) {
	nav {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem 5%;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}
}

/* Logo SVG */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: transform 0.3s ease;
}
/* ✅ 로고 이미지 정확히 세로 가운데 */
.logo-wrapper img {
  display: block;
  height: 60px;   /* 기본 크기 */
  width: auto;
  object-fit: contain;
}

.logo:hover {
	transform: scale(1.05);
}

.logo svg {
	width: 40px;
	height: 40px;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: bold;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	border: 1px solid transparent;
}

.nav-links a:hover {
	color: var(--primary);
	background: rgba(45, 90, 135, 0.05);
	border-color: rgba(45, 90, 135, 0.2);
}

.nav-links a.active {
	color: white;
	background: linear-gradient(135deg, #4a90e2 0%, #F1E5AC 100%);
	border-color: #4a90e2;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--dark);
	transition: all 0.3s ease;
	border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}
/* #endregion */

/* #region ===========================히어로섹션=========================== */
#hero {
	min-height: 60vh;
    background-color: #2f5039;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: var(--gradient-2); */
    background: url("/static/images/main.jpg") no-repeat center center / cover;
	position: relative;
	margin-top: 60px;
	overflow: hidden;
}

/* Central Light Core */
#hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	z-index: 0;
}

/* Connecting Lines and Dots Background */
.network-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
}



.hero-content {
  display: flex;
  flex-direction: column; /* ✅ 순서는 그대로 */
  justify-content: flex-end; /* ✅ 전체를 아래쪽으로 정렬 */
  align-items: center;       /* 중앙 정렬 유지 */
  text-align: center;
  z-index: 1;
  padding: 2rem;
  margin-bottom: 0;
  max-width: 1200px;
  position: relative;
  height: 100%;              /* ✅ 섹션 높이 기준으로 아래 정렬 */
}


.hero-content h1 {
    padding-top: 400px;
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
	text-align: center;
	font-weight: 900;
}

/* 기본값: PC에서는 줄바꿈 숨김 */
.mobile-br {
  display: none;
}

.hero-content p {
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
    font-weight: 700;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: #efede2;
	color: var(--primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* #endregion */

/* #region ===========================어바웃섹션=========================== */
#about {
	padding: 1rem 5%;
	max-width: 1500px;
	margin: 0 auto;
    background-color: #2f5039;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	color: #ffcd4a;
	padding-top: 5%;
}

.section-subtitle {
	text-align: center;
	max-width: 1500px;
	margin: 0 auto 1rem;
	color: #ddd7bf;
	font-size: 1.1rem;
}

/* Floating Cards Design */

.about-floating-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;     /* ✅ 가로 가운데 정렬 */
  align-items: center;         /* ✅ 세로 가운데 정렬 */
  text-align: center;          /* ✅ 카드 내부 텍스트 가운데 */
  gap: 1rem;
  margin-bottom: 0rem;
  padding-top: 5%;
}

.floating-card {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ 내용 가운데 */
  justify-content: center;
  text-align: center;    /* ✅ 텍스트 가운데 */
  background: #efede2;
  border-radius: 25px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.floating-card:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.floating-card:hover::before {
	opacity: 0.05;
}

.card-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	align-items: center;
	position: relative;
}

.icon-wrapper {
	width: 100%;
	height: 100%;
	background: var(--gradient-2);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	animation: morphShape 8s ease-in-out infinite;
	box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg);
	}

	25% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(90deg);
	}

	50% {
		border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
		transform: rotate(180deg);
	}

	75% {
		border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
		transform: rotate(270deg);
	}
}

.floating-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--dark);
    align-items: center;
}

.floating-card p {
	color: #666;
	line-height: 1.6;
    align-items: center;
}
  /* 후기 카드 컨테이너 */
.reviews-grid {
    display: flex;
    flex-direction: column;   /* 세로로 나열 */
    align-items: center;      /* 가로 가운데 정렬 */
}
  
  /* 각 후기 카드 */
.review-card {         /* 카드 최대 폭 줄이기 */
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}
#about img {
  max-width: 80%;     /* 부모 영역 안에서만 커지게 */
  height: auto;        /* 비율 유지 */
  border-radius: 12px; /* 필요시 둥근 모서리 */
  display: block;      /* 인라인 여백 제거 */
  margin: 0 auto;      /* 중앙 정렬 */
}

  
  /* 반응형 */
  @media (max-width: 768px) {
    .review-card {
      max-width: 90%;
      font-size: 0.95rem;
    }
  }


/* #endregion */

/* #region ===========================신청하기섹션=========================== */
#apply {
	padding: 5rem 5%;
	padding-top: 0%;
	color: var(--primary);
}
.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 0%;
	position: relative;
	color: #ffcd4a;
}
.apply-container {
	max-width: 1200px;
	margin: 0 auto;
}

.apply-container h2 {
	color: #ffcd4a;
	margin-bottom: 0rem;
}

.apply-wrapper {
  display: flex;
  flex-direction: column; /* 위아래 정렬 */
  align-items: center;    /* ✅ 수평 중앙정렬 */
  justify-content: center; /* ✅ 세로정렬(옵션) */
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 5%;
  margin: 0 auto;         /* ✅ 화면 중앙 배치 */
  max-width: 700px;       /* ✅ 폼 너비 고정 */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.apply-info {
	padding: 2rem;
}
.apply-card {         /* 카드 최대 폭 줄이기 */
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
	margin-top: 0%;
	padding-top: 0%;
	
  }
  #apply img {
  max-width: 100%;     /* 부모 영역 안에서만 커지게 */
  height: auto;        /* 비율 유지 */
  border-radius: 12px; /* 필요시 둥근 모서리 */
  display: block;      /* 인라인 여백 제거 */
  margin: 0 auto;      /* 중앙 정렬 */
}
.apply-form {
  width: 100%;
  max-width: 500px;       /* ✅ 입력폼 폭 고정 */
  text-align: left;       /* 폼 내부 텍스트 왼쪽 정렬 */
}
.apply-form h4 {
    font-size: 1.3rem;
	color: #274731;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
    font-weight: 700;
	text-align: center;
}
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--primary);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: white;
	transition: all 0.3s ease;
	font-family: inherit;
	color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
}

.submit-btn {
	background: #274731;
	color: white;
	padding: 1rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
	background: var(--dark);
	color: white;
	padding: 2rem 5%;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
}

.copyright {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.multi-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;                 /* 🔹 버튼 사이 간격 */
  justify-content: flex-start;
  align-items: center;      /* 🔹 줄 세로 기준 맞춤 */
}

.option-btn {
  background: #ffffff;
  border: 2px solid #274731;
  color: #274731;
  padding: 0.4rem 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.option-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}
.option-btn.active {
  background: #274731;
  color: #fff;
  box-shadow: 0 6px 14px rgba(39, 71, 49, 0.45);
  border-color: #274731;
  transform: translateY(-2px);
}

.gender-buttons {
  display: flex;
  gap: 10px;
}

.gender-btn {
  background: #ffffff;
  border: 2px solid #274731;
  color: #274731;
  padding: 0.45rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.gender-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.gender-btn.active {
  background: #274731;
  color: #fff;
  box-shadow: 0 6px 12px rgba(39, 71, 49, 0.4);
  transform: translateY(-2px);
}
/* #endregion */

/* #region ===========================반응형 모바일=========================== css */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(255, 255, 255, 0.98);
		flex-direction: column;
		align-items: center;
		justify-content: start;
		padding-top: 3rem;
		transition: right 0.3s ease;
		gap: 1rem;
		z-index: 999;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		width: 80%;
	}

	.nav-links a {
		width: 100%;
		text-align: center;
		padding: 1rem;
		margin: 0;
		display: block;
		box-sizing: border-box;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.mandala-bg {
		width: 300px;
		height: 300px;
	}

	.about-content,
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.stats-counter {
		grid-template-columns: repeat(2, 1fr);
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.journey-path {
		flex-direction: column;
		gap: 2rem;
	}

	.journey-path::before {
		display: none;
	}

	.practice-layout {
		grid-template-columns: 1fr;
	}

	.timeline-track {
		display: none;
	}

	.practice-content-area {
		gap: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.stats-counter {
		grid-template-columns: 1fr;
	}

	.stat-item::after {
		display: none;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.resource-tabs {
		flex-direction: column;
	}

	.tab-btn {
		width: 100%;
	}

    .logo {
        display: flex;
        align-items: flex-end;   /* 텍스트를 이미지 하단 기준으로 정렬 */
        gap: 10px;
    }
    
    .logo img {
        height: 70px;
        width: auto;
        object-fit: contain;
    }
    
    a.logo {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    a.logo .logo-text {
        color: #ddd7bf !important;   /* 원하는 색상 */
        font-weight: 900 !important;
        font-size: 1.8rem;
        line-height: 1;
    }

        
}
/* #endregion */

/* #region ===========================모먼츠섹션=========================== */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');/* regular - 400, medium - 500, semibold - 600, bold - 700 */ 
@import url('https://fonts.googleapis.com/css2?family=Ysabeau:ital,wght@0,1..1000;1,1..1000&display=swap');

:root{--k-font:'Pretendard';--e-font:"Ysabeau", sans-serif;--primary:#111}
body,html {height:100%;margin:0;padding:0}
ul, li, dl, dt, dd, p, span, h3, h2{margin:0;padding:0}
a{text-decoration:none}
ul, li{list-style:none}
*, :after, :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}


#inc01 {
    overflow: hidden;
    position: relative;
    padding: 100px 5% 60px;
    background-color: #2f5039;
    font-family: var(--e-font), var(--k-font);
    text-align: center;
  }
  
  /* Title */
  #inc01 .tit_area {
    margin-bottom: 30px;
  }

  #inc01 .tit_area h2.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 0%;
	position: relative;
	color: #ffcd4a;
}
  
  /* Swiper Base */
  #inc01 .inc01_slide {
    overflow: visible;
    position: relative;
    width: 100%;
    padding-bottom: 40px;
  }
  #inc01 .inc01_slide .swiper-wrapper {
    align-items: center;
  }
  
  /* Slide Card - 크기 고정 */
  #inc01 .inc01_slide .swiper-slide {
    width: 280px !important;   /* 카드 폭 */
    height: 360px !important;  /* 카드 높이 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #000;
  }
  
  /* Image inside card */
  #inc01 .inc01_slide .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #inc01 .inc01_slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;  /* ← 여기 추가 */
    display: block;
    border-radius: 16px;
  }
  
  /* Hover effect */
  #inc01 .inc01_slide .swiper-slide:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    #inc01 .tit_area h2 { font-size: 36px; }
    #inc01 .inc01_slide .swiper-slide {
      width: 240px !important;
      height: 320px !important;
    }
  }
  @media (max-width: 768px) {
    #inc01 .tit_area h2 { font-size: 28px; }
    #inc01 .inc01_slide .swiper-slide {
      width: 200px !important;
      height: 260px !important;
    }
  }
  @media (max-width: 480px) {
    #inc01 .tit_area h2 { font-size: 22px; }
    #inc01 .controls span { width: 36px; height: 36px; }
    #inc01 .inc01_slide .swiper-slide {
      width: 180px !important;
      height: 220px !important;
    }
  }
/* #endregion*/

/* #region ===========================후기섹션=========================== */
#reviews {
    text-align: center;
  }
  
  #reviews h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcd4a;
  }
  
  /* 후기 카드 컨테이너 */
  .reviews-grid {
    display: flex;
    flex-direction: column;   /* 세로로 나열 */
    align-items: center;      /* 가로 가운데 정렬 */
  }
  
  /* 각 후기 카드 */
  .review-card {         /* 카드 최대 폭 줄이기 */
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
  }
  #reviews img {
  max-width: 100%;     /* 부모 영역 안에서만 커지게 */
  height: auto;        /* 비율 유지 */
  border-radius: 12px; /* 필요시 둥근 모서리 */
  display: block;      /* 인라인 여백 제거 */
  margin: 0 auto;      /* 중앙 정렬 */
}

  
  /* 반응형 */
  @media (max-width: 768px) {
    .review-card {
      max-width: 90%;
      font-size: 0.95rem;
    }
  }
  /* #endregion */

/* #region ===========================조인프로세스======================== */

#join-process {
  
  max-width: 1300px;
  margin: 0 auto;
  background-color: #2f5039;
  overflow: hidden;
  display: flow-root;
}

.join-process-container {
  background: #efede2;
  border-radius: 20px;
  padding: 3rem 5%;
  margin: 10px;
  max-width: 1300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px; /* 🔹 원과 원 사이 간격 */
  flex-wrap: wrap;
  position: relative;
    padding-left: 5%;
  padding-right: 5%;
  flex-direction: row;
}

.step {
  text-align: center;
  position: relative;
  width: 180px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

/* ✅ 아이콘 원형 */
.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ddd7bf;
  color: #2f5039;
  font-size: 35px;
  line-height: 80px;
  margin: 0 auto 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
}

/* ✅ hover 시 아이콘 색상 강조 */
.step:hover .circle {
  background: #fd6f22;
  color: #fff;
}

/* ✅ 제목 */
.title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b3b2e;
}

/* ✅ 설명: 항상 표시 */
.desc {
  font-size: 14px;
  color: #444;
  opacity: 1;
  max-height: none;
  overflow: visible;
  transition: none;
  margin-top: 10px;
  white-space: pre-line; /* ✅ 줄바꿈 문자 반영 */
}


/* ✅ 각 step 사이 화살표 */
.step:not(:last-child)::after {
  content: "›";
  font-size: 60px;
  color: #2b3b2e;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(50%, -50%);
  font-weight: 600;
}


/* #endregion */

/* #region =========================반응형모바일====================== */
/* =========================================
   📱 Responsive Global Adjustments
   ========================================= */

/* ✅ 태블릿 (max-width: 1024px) */
@media (max-width: 1024px) {

  /* 헤더 */
  header nav {
    justify-content: center; /* 로고 중앙 */
    height: 90px;
  }

  header nav a {
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    padding-top: 180px;
  }

  .hero-content p {
    font-size: 1.6rem;
  }

  .apply-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .apply-info h3 {
    font-size: 2rem;
  }

  .floating-card {
    padding: 2rem;
  }
}

/* ✅ 모바일 (max-width: 768px) */
@media (max-width: 768px) {
  /* 기본 폰트 및 배치 */
  body {
    font-size: 0.95rem;
    line-height: 1.5;
    overflow-x: hidden;
  }

  /* 헤더 */
  header nav {
    justify-content: center;   /* ✅ 중앙 정렬 유지 */
    align-items: center;
    padding: 0.8rem 0;
    height: 80px;
  }

  .logo-wrapper img {
    height: 65px;
    width: auto;
  }

  /* 히어로 섹션 */
  #hero {
    position: relative !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
    background-position: center bottom !important;
  }

  #hero::before {
    height: 0 !important;
    width: 0 !important;
    content: none !important;
    display: none !important; /* ✅ 완전히 제거 */
  }

  .hero-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding-top: 150px;
    line-height: 1.3;
	font-weight: 900;
  }
    .mobile-br {
    display: inline;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.5;
	margin-bottom: 1rem;
  }

  .cta-button {
    transform: none !important;
    line-height: normal !important;
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
  }

  /* about 섹션 */
  #about {
    padding: 3rem 1.5rem;
  }
  
  .about-floating-cards {
    grid-template-columns: repeat(2, 1fr); /* 두 개씩 두 줄 */
    gap: 1rem;
  }

  .floating-card {
    padding: 1.5rem;
  }

  /* 신청 섹션 */
  #apply {
    padding: 3rem 1.5rem;
  }

  .apply-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .apply-info h3 {
    font-size: 1.7rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }


  /* 조인 프로세스 */

  #join-process {
  padding: 3rem 1rem;
}

#join-process .join-process-container {
  width: fit-content;         /* ✅ 컨텐츠 크기에 맞게 */
  max-width: 90%;             /* ✅ 너무 넓어지지 않게 제한 */
  margin: 2rem auto;          /* ✅ 가운데 정렬 */
  padding: 2rem 1.5rem;       /* ✅ 내부 여백 조금 줄임 */
  box-sizing: border-box;
}

#join-process .step-container {
  flex-direction: column;
  align-items: center;         /* ✅ 세로 정렬 시 중앙 정렬 */
  gap: 25px;
}

#join-process .step {
  width: auto;                 /* ✅ 고정폭 해제 → 내용 크기에 맞게 */
}

#join-process .step:not(:last-child)::after {
  display: none;               /* ✅ 세로 구조에서 화살표 제거 */
}

  /* Moments 섹션 */
  #inc01 {
    padding: 60px 1rem 40px;
  }

  #inc01 .tit_area h2 {
    font-size: 1.8rem;
  }

  #inc01 .inc01_slide .swiper-slide {
    width: 200px !important;
    height: 240px !important;
  }

  /* 후기 섹션 */
  #reviews h2 {
    font-size: 1.9rem;
  }

  .review-card {
    max-width: 95%;
    font-size: 0.9rem;
  }

  /* 푸터 */
  footer {
    font-size: 0.85rem;
    padding: 2rem 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ✅ 초소형 디바이스 (max-width: 480px) */
@media (max-width: 480px) {

  /* 헤더 */
  header nav {
    justify-content: center;
    height: 70px;
    padding: 0.6rem 0;
  }

  .logo-wrapper img {
    height: 55px;
  }

  /* 히어로 섹션 */
  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    padding-top: 120px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    width: 80%;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  /* 신청 섹션 */
  .apply-info h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
  }

  /* 카드형 요소 */
  .floating-card h3 {
    font-size: 1.2rem;
  }

  .floating-card p {
    font-size: 0.9rem;
  }

  /* 조인 프로세스 */

  .circle {
    width: 60px;
    height: 60px;
    font-size: 25px;
    line-height: 60px;
  }

  .title {
    font-size: 0.9rem;
  }

  .desc {
    font-size: 0.8rem;
  }

  /* 푸터 */
  .footer-links {
    flex-direction: column;
    font-size: 0.85rem;
  }
}
/* #endregion */

/* #region ================== 데이트피커=================== */
#dates {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  overflow-x: hidden;
}
/* #endregion */

/* #region ================= 스피너 ====================== */
#loadingIndicator {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: #274731;
  font-weight: 600;
  font-size: 0.95rem;
}

.spinner {
  margin: 0 auto 0.5rem auto;
  border: 3px solid #ddd7bf;
  border-top: 3px solid #274731; /* 메인 컬러 */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* #endregion */