body {
  margin: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  background: url(https://thegreenroomyoga.com/wp-content/uploads/2024/08/yoga-pattern-01-1.webp);
}

header {
  position: relative;
  height: 230px; /* 필요한 만큼만 높이 설정 */
  background-color: #ffffff;
  overflow: hidden; /* 하단 이미지가 바깥으로 넘치는 것 방지 */

}
/* 공통 헤더 */
header {
  position: relative;
  height: 200px;
  background-color: #ffffff;
  overflow: hidden;
}

/* 로고 */
.logo-container {
  text-align: center;
  max-width: 80px;
  margin: 0 auto;
  padding-top: 40px;
}

.hamburger {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2.5px; /* ✅ 살짝 얇게 */
  width: 100%;
  background-color: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center; /* ✅ 회전 중심을 중앙으로 */
}

/* 균형 잡힌 X 애니메이션 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}

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

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


/* 슬라이드 메뉴 */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 320px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 15px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* 메뉴 리스트 */
.nav-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  margin: 24px 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #111;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-menu ul li a:hover {
  color: #F22A08;
}

/* 스크롤 방지 애니메이션 보정 */
body.menu-open {
  overflow: hidden;
}


h3.section {
  /*padding: 0px 20px 0px 0px;*/
  line-height: 1.5;
}

h1.parallax {
  border-radius: 8px;
    color: white;
    padding: 10px;
    background: #F22A08;
    font-size: 2.5em;
    margin: 0px
}

h2.parallax {
  font-weight: 600;

}

p.parallax {
  max-width:700px;
  line-height: 1.5;
}

/* 로고 중앙 정렬 */
.logo-container {
  text-align: center;
  max-width: 80px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
}

.logo-container img {
  width: 100%;
  height: auto;
  display: block;
  
  /*로고 최상위 위치정렬 */
  position: relative;
  z-index: 2;
}

/* 좌우 하단 이미지 공통 스타일 */
.header-image {
  position: absolute;
  bottom: 0;
  pointer-events: none; /* 클릭 막기 (필요시) */
}

.header-image.left {
  left: 0;
  bottom: -1px;
}

.header-image.right {
  right: 0;
}

.header-image img {
  height: 160px; /* 헤더 높이를 고려해서 조절 */
  width: auto;
  display: block;
}

/* 패턴 밴드 */
.pattern-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 46px; /* 패턴 세로 크기 */
  background-image: url("../images/background3.jpg");
  background-repeat: repeat-x;       /* 가로 방향으로 반복 */
  background-size: auto 100%;        /* 세로는 밴드 높이에 맞춤 */
  background-position: center bottom;
  /* z-index: 1; /* 로고보다 뒤, 다른 요소보다 앞에 오도록 조정 */ 
}


/* 모바일 대응 */
@media (max-width: 768px) {
  .logo-container {
    max-width: 60px;
  }

  .header-image img {
    height: 100px;
  }
}


.parallax-window {
  height: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.centered-text {
  position: static; /* 기존 absolute 제거 */
  transform: none;
  /*padding: 0 20px;*/
  /*color: white; */
  color:black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 30px;
  margin: 100px 0px;
}

.line {
  padding: 120px;
  
}
.border-primary {
  position: relative;
  /*display: inline-block;*/
  padding-bottom: 8px;
  margin:0px 0px 80px 0px
}

.border-primary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: rgb(28, 28, 28);
}

.session-section {
  text-align: center;
  padding: 5%;
}

.session-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.image-box {
  flex: 1 1 calc(33.33% - 10px);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  max-width: 300px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
}

.image-box:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.sticker {
  position: absolute;
  width: 120px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease, opacity 0.5s ease;
  /*z-index: 9999;*/
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.15));

  /* 스티커 1만 활성화 시 */
  top: 60px;
  left: 20px;
  transform: rotate(15deg);
}
  .sticker1 {
    top: 20px;
    left: 20px;
  }

  .sticker2 {
    top: 150px;
    right: 50px;
  }

  .sticker3 {
    top: 500px;
    left: 40%;
  }

.sticker:hover {
  transform: rotate(-5deg) scale(1.05);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.palm-card {
  width: 100%;
  max-width: 960px; /* 카드 최대 크기, 필요시 수정 */
  margin: 40px auto; /* 가운데 정렬 */
}

.palm-card img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;       /* 모바일 시 자동 줄바꿈 */
  margin: 40px auto;
  max-width: 900px;
  padding: 0 50px;
  gap: 30px;             /* 이미지와 텍스트 간격 */
}

.section img {
  width: 400px;
  height: auto;
  border-radius: 8px;
}

.section .text {
  flex: 1;               /* 남는 공간 채우기 */
  min-width: 280px;
  padding: 0 20px;
  font-size: 18px;
}

/* 강조 텍스트(1, 3번) */
.section.wide-text .text {
  
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

/* reverse일 때 방향 반전 */
.section.reverse {
  flex-direction: row-reverse;
}

/* 애니메이션 베이스 */
.section .img-wrap,
.section .text {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

/* 데스크탑: 초기 오프셋(좌/우 슬라이드) */
.section:not(.reverse) .img-wrap { transform: translateX(-24px); }
.section:not(.reverse) .text    { transform: translateX(24px);  }
.section.reverse .img-wrap      { transform: translateX(24px);  }
.section.reverse .text          { transform: translateX(-24px); }

/* in-view 되면 제자리 + 보이기 */
.section.in-view .img-wrap,
.section.in-view .text {
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 768px) {
  .section {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
  }

  /* reverse도 세로 스택 + 동일 정렬 */
  .section.reverse {
    flex-direction: column;
  }

  /* 이미지 래퍼를 중앙 정렬 */
  .section .img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;  /* 👈 중앙 */
  }

  .section img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;           /* 👈 혹시 모를 좌우 치우침 방지 */
  }

  .section .text {
    width: 100%;
    font-size: 16px;
    padding: 0;
    text-align: center;
  }

  .section.wide-text .text {
    font-size: 20px;
  }

  /* 📌 애니메이션: 모바일에서는 좌우가 아니라 위/아래로 살짝 */
  .section:not(.reverse) .img-wrap,
  .section.reverse .img-wrap,
  .section:not(.reverse) .text,
  .section.reverse .text {
    transform: translateY(12px);   /* 👈 좌우 오프셋 제거 */
  }

  .section.in-view .img-wrap,
  .section.in-view .text {
    transform: translateY(0);      /* in-view 시 제자리 */
  }
}


.single-block {
  text-align: center;
  margin: auto;
  max-width: 900px; /* 데스크탑일 때 중앙 폭 제한 */
  padding: 0 20px;
}

.single-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto 100px;
}

/* 텍스트 스타일 */
.single-block p {
  font-size: clamp(16px, 2vw, 22px); /* 화면 크기에 따라 자동 조정 */
  line-height: 1.6;
  color: #222;
  font-weight: 600;
  margin: 40px;
}
.single-block h1 {
  font-size: 24px;
  margin: 30px;
}
/* 반응형 조정 */
@media (max-width: 768px) {
  .single-block {
   margin: auto; 
  }

  .single-block img {
    border-radius: 6px;
  }
}

footer {
  background-color: #222; /* 임의 색상 */
  color: #f5f5f5;
  padding: 40px 20px 20px;
  font-family: 'Pretendard', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p {
  margin: 30px 0;
  font-size: 15px;
  line-height: 1.5;
}

/* 소셜 아이콘 */
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  filter: brightness(0) invert(1); 
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: opacity 0.25s ease;
}

.social-icons a:hover img {
  opacity: 0.7;
}

/* 하단 카피라이트 */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding-top: 16px;
  margin-top: 24px;
  font-size: 14px;
  color: #aaa;
}

/* 반응형 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  animation: fadeIn 1.6s ease-in-out;
  transition: opacity 0.4s ease; /* 👈 부드러운 사라짐 효과 */
}

/* 동그란 원 + 화살표 */
.arrow-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #F22A08;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  animation: bounce 1.8s infinite;
  transition: background-color 0.3s ease;
}

/* 호버 시 밝게 */
.arrow-circle:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* 점프 애니메이션 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* 페이드인 효과 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.section-box {
  max-width: 900px;
  margin:auto;
  padding: 0px 20px;
}

.section-border {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px 0px;
    background: #ffffff;
    border-radius: 12px;
}

.section-border2 {
    padding: 20px 0px;
    border-radius: 12px;
}

.section-border-link {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px 0;
  background: #F22A08;
  border-radius: 12px;
  text-align: center;
  color: white;
  font-weight: 500;
  margin: 120px 0;
  transition: all 0.35s ease;
}
    
.section-border-link a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 8px 16px;
}

.section-border-link:hover {
  background: #FF5436; /* 약간 밝은 톤 */
  transform: translateY(-4px); /* 살짝 떠오르는 효과 */
  box-shadow: rgba(242, 42, 8, 0.4) 0px 8px 20px; /* 붉은 그림자 강조 */
}

.section-border-link a:hover {
  letter-spacing: 0.5px; /* 텍스트 미세한 확장 효과 */
}

a {
    text-decoration: none; /* 링크 밑줄 제거 */
    color: white;           /* 링크 색상 변경 */
}

/* 🔲 팝업 전체 배경 (반투명 검정) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* 팝업 표시 시 활성화 */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 팝업 이미지 박스 */
.popup-content {
  position: relative;
  max-width: 420px;
  width: 90%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
  animation: popupFadeIn 0.4s ease;
}

/* 이미지 */
.popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* 닫기 버튼 */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.popup-close:hover {
  background: rgba(0,0,0,0.8);
}

/* 애니메이션 */
@keyframes popupFadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* About 페이지 */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 80px auto;
  gap: 40px;
  padding: 0 20px;
}

.about-intro .intro-text {
  flex: 1 1 45%;
  font-size: 18px;
  line-height: 1.8;
}

.about-intro .intro-image {
  flex: 1 1 45%;
}

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

/* 세션 카드 */
.sessions {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.sessions h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.session-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0,0,0,0.1) 0px 4px 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.session-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(0,0,0,0.15) 0px 8px 24px;
}

.session-card img {
  width: 100%;
  height: auto;
  display: block;
}

.session-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.session-card p {
  font-size: 15px;
  color: #555;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* 반응형 */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
  }
  .about-intro .intro-text, .about-intro .intro-image {
    flex: 1 1 100%;
  }
}

/* Crew Page */
.crew-intro {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 60px;
  padding: 0 20px;
}

.crew-intro h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.crew-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* 각 크루 섹션 */
.crew-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  gap: 40px;
}

.crew-section.reverse {
  flex-direction: row-reverse;
}

.crew-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 16px;
}

.crew-text {
  flex: 1 1 45%;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.crew-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* JOIN US 섹션 */
.join-us {
  text-align: center;
  padding: 100px 20px;
  background: #fafafa;
}

.join-us h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.join-us p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #555;
}

.join-btn {
  display: inline-block;
  background-color: #F22A08;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background-color: #ff4c2c;
  transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 768px) {
  .crew-section {
    flex-direction: column;
    text-align: center;
  }
  .crew-text {
    flex: 1 1 100%;
  }
}
/* Menu Page */
.menu-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.menu-section h1, .menu-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.menu-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 20px;
}

.menu-item img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 300px;
  object-fit: cover;
}

.menu-item h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.menu-item p {
  font-size: 15px;
  color: #555;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* DJ 테마 섹션 */
.dj-section {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.dj-section h2 {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 600;
}

.dj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dj-card {
  background-color: #111;
  color: white;
  border-radius: 12px;
  padding: 30px 20px;
  transition: background 0.3s ease;
}

.dj-card:hover {
  background-color: #F22A08;
}

.dj-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.dj-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

/* 반응형 */
@media (max-width: 768px) {
  .menu-section h1, .menu-section h2 {
    font-size: 26px;
  }
  .dj-card {
    padding: 24px 16px;
  }
}

/* See all 버튼 */
.see-all-container {
  text-align: center;
  margin: 50px 0;
}

.see-all-btn {
  background-color: #F22A08;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.see-all-btn:hover {
  background-color: #d11f07;
  transform: scale(1.05);
}

/* 모달 */
.menu-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
}

/* 닫기 버튼 */
.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #F22A08;
}

/* 슬라이드 이미지 */
.modal-content {
  position: relative;
  margin: auto;
  max-width: 500px;
  top: 10%;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  border-radius: 12px;
  animation: fade 0.8s ease;
}

/* 좌우 화살표 */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  margin-top: -22px;
  color: rgba(0, 0, 0, 0.373);
  font-weight: bold;
  font-size: 28px;
  transition: 0.3s;
  user-select: none;
}

.prev:hover, .next:hover {
  color: #F22A08;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* Fade 효과 */
@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* ============================
   session.html 전용 스타일
   (기존 레이아웃/푸터 영향 X)
============================ */

.sessions-page {
  max-width: 1100px;
  margin: 80px auto 140px;
  padding: 0 20px;
}

/* 인트로 영역 */
.sessions-hero {
  text-align: center;
  margin-bottom: 80px;
}

.sessions-hero h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.sessions-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 14px 0;
}

/* 이미지 + 텍스트 블록 공통 */
.sessions-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.sessions-block:last-of-type {
  margin-bottom: 40px;
}

/* 좌우 반전 */
.sessions-block.sessions-reverse {
  flex-direction: row-reverse;
}

.sessions-text {
  flex: 1 1 50%;
}

.sessions-text h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.sessions-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

/* 이미지 영역 */
.sessions-image {
  flex: 1 1 50%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.sessions-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.sessions-image:hover img {
  transform: scale(1.04);
}

/* CTA 버튼 그룹 */
.sessions-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sessions-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

/* 인스타 버튼 색감 */
.sessions-btn-instagram {
  background: #e1306c;
  color: #fff;
}

.sessions-btn-instagram:hover {
  background: #c02559;
  transform: translateY(-2px);
}

/* 구글폼 버튼 색감 */
.sessions-btn-form {
  background: #0073e6;
  color: #fff;
}

.sessions-btn-form:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

/* 반응형 처리 */
@media (max-width: 900px) {
  .sessions-block {
    flex-direction: column;
  }

  .sessions-block.sessions-reverse {
    flex-direction: column;
  }

  .sessions-text h1 {
    font-size: 22px;
    text-align: center;
  }

  .sessions-text p {
    font-size: 16px;
    text-align: center;
  }

  .sessions-hero h1 {
    font-size: 28px;
    text-align: center;
  }

  .sessions-hero p {
    font-size: 16px;
    text-align: center;
  }
}
