/* 세원프린팅 메인 스타일시트 */

/* 폰트 설정 */
@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-1Thin.woff2') format('woff2'),
       url('../fonts/Paperlogy-1Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-2ExtraLight.woff2') format('woff2'),
       url('../fonts/Paperlogy-2ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-3Light.woff2') format('woff2'),
       url('../fonts/Paperlogy-3Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-4Regular.woff2') format('woff2'),
       url('../fonts/Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-5Medium.woff2') format('woff2'),
       url('../fonts/Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-6SemiBold.woff2') format('woff2'),
       url('../fonts/Paperlogy-6SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-7Bold.woff2') format('woff2'),
       url('../fonts/Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-8ExtraBold.woff2') format('woff2'),
       url('../fonts/Paperlogy-8ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../fonts/Paperlogy-9Black.woff2') format('woff2'),
       url('../fonts/Paperlogy-9Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* 오로라 애니메이션 배경 효과 */
.aurora-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(45deg, 
    rgba(26, 58, 95, 0.15) 0%, 
    rgba(242, 121, 53, 0.12) 25%, 
    rgba(26, 58, 95, 0.15) 50%, 
    rgba(242, 121, 53, 0.12) 75%, 
    rgba(26, 58, 95, 0.15) 100%);
  filter: blur(60px);
  border-radius: 40%;
  animation: aurora-rotate 20s linear infinite;
}

.aurora:nth-child(2) {
  opacity: 0.6;
  filter: blur(80px);
  animation: aurora-rotate 30s linear infinite;
  animation-direction: reverse;
  background: linear-gradient(120deg, 
    rgba(242, 121, 53, 0.1) 0%, 
    rgba(26, 58, 95, 0.12) 25%, 
    rgba(242, 121, 53, 0.1) 50%, 
    rgba(26, 58, 95, 0.12) 75%, 
    rgba(242, 121, 53, 0.1) 100%);
}

.aurora:nth-child(3) {
  opacity: 0.4;
  filter: blur(90px);
  animation: aurora-rotate 40s linear infinite;
  background: linear-gradient(60deg, 
    rgba(26, 58, 95, 0.08) 0%, 
    rgba(242, 121, 53, 0.1) 25%, 
    rgba(26, 58, 95, 0.08) 50%, 
    rgba(242, 121, 53, 0.1) 75%, 
    rgba(26, 58, 95, 0.08) 100%);
}

@keyframes aurora-rotate {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, 0, 0) rotate(180deg) scale(1.2);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(360deg) scale(1);
  }
}

/* 변수 및 기본 설정 */
:root {
  /* 색상 팔레트 */
  --primary-color: #1a3a5f; /* 짙은 네이비 - 신뢰와 전문성 */
  --secondary-color: #f27935; /* 따뜻한 오렌지 - 따뜻함과 창의성 */
  --light-gray: #f5f5f5;
  --medium-gray: #e9e9e9;
  --dark-gray: #333333;
  --white: #ffffff;
  
  /* 폰트 크기 */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-xxl: 2rem;
  --font-hero: 3rem;
  
  /* 여백 */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* 그 외 */
  --border-radius: 0.375rem;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* 전체 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 기본 폰트 및 스타일 + 배경 이미지 설정 */
body {
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url('../images/back_image.png');
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.8),
    0px 0px 2px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: clamp(2rem, 5vw, var(--font-hero));
}

h2 {
  font-size: clamp(1.5rem, 4vw, var(--font-xxl));
}

h3 {
  font-size: clamp(1.25rem, 3vw, var(--font-xl));
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* 페이지 헤더 스타일 */
.page-header {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white) !important;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0px 0px 8px rgba(0, 0, 0, 0.5),
    1px 1px 0px rgba(0, 0, 0, 0.9),
    -1px -1px 0px rgba(255, 255, 255, 0.1) !important;
  font-weight: 700 !important;
}

.page-header p {
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.7),
    0px 0px 6px rgba(0, 0, 0, 0.4),
    1px 1px 0px rgba(0, 0, 0, 0.8) !important;
  font-weight: 500 !important;
}

/* 유틸리티 클래스 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xxl) 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.3),
    0px 0px 4px rgba(255, 255, 255, 0.8),
    -1px -1px 0px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: var(--spacing-sm) auto 0;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  min-height: 44px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-size: var(--font-md);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translate3d(0, -2px, 0);
  box-shadow: var(--box-shadow);
}

.btn:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.btn:active {
  transform: translate3d(0, 0, 0);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
}

.card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-lg);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.card:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* 헤더 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img, .logo svg {
  height: 45px;
  object-fit: contain;
  margin-right: 3px;
}

.logo-text {
  margin-left: 0;
  font-weight: 800;
  font-size: var(--font-xl);
  color: var(--primary-color);
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-toggle {
  display: none;
  font-size: var(--font-xl);
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: var(--spacing-lg);
}

.nav-link {
  position: relative;
  font-weight: 500;
  padding: var(--spacing-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* 언어 선택기 */
.language-switcher {
  display: flex;
  gap: 5px;
  margin-left: var(--spacing-md);
}

.lang-btn {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.lang-btn.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

/* 히어로 섹션 */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: rgba(26, 58, 95, 0.4); /* 네이비 색상의 투명도 높임 */
  overflow: hidden;
  margin-top: 80px; /* 헤더 높이만큼 마진 추가 */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px; /* 800px에서 700px로 변경 */
  width: 80%; /* 화면 너비의 80%를 차지하도록 설정 */
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0px 0px 8px rgba(0, 0, 0, 0.5),
    1px 1px 0px rgba(0, 0, 0, 0.9),
    -1px -1px 0px rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.hero p {
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-xl);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.7),
    0px 0px 6px rgba(0, 0, 0, 0.4),
    1px 1px 0px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

/* 히어로 비디오 배경 */
.hero-video {
  background-color: #000;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) translateZ(0);
  z-index: 0;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(26, 58, 95, 0.7) 0%,
    rgba(26, 58, 95, 0.4) 50%,
    rgba(26, 58, 95, 0.2) 100%
  );
  z-index: 1;
}

/* 음소거 토글 버튼 */
.mute-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.mute-toggle:hover {
  background: rgba(242, 121, 53, 0.8);
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

.mute-toggle svg {
  width: 24px;
  height: 24px;
}

/* 서브페이지 히어로 (동영상 배경) */
.page-hero {
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  margin-bottom: 3rem;
}

.page-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* 숏츠 스타일 동영상 섹션 */
.video-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(26, 58, 95, 0.05) 0%, rgba(242, 121, 53, 0.05) 100%);
}

.shorts-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg) 0;
}

.shorts-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: #000;
}

.shorts-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 100px;
  height: 100px;
  border: none;
  border-radius: 50%;
  background: rgba(242, 121, 53, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(242, 121, 53, 1);
}

.play-button svg {
  margin-left: 8px;
}

/* 모바일 대응 */
@media (max-width: 480px) {
  .shorts-video-wrapper {
    max-width: 280px;
    border-radius: 16px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .play-button svg {
    width: 50px;
    height: 50px;
  }
}

/* 서비스 섹션 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  fill: var(--primary-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  fill: var(--secondary-color);
  transform: scale(1.1);
}

.service-title {
  margin-bottom: var(--spacing-sm);
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.9),
    0px 0px 3px rgba(0, 0, 0, 0.2);
}

/* 포트폴리오 섹션 */
.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm) var(--spacing-md);
  margin: 0 var(--spacing-sm);
  font-weight: 500;
  color: var(--dark-gray);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--secondary-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 250px;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 58, 95, 0.6); /* 더 투명하게 변경 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0px 0px 6px rgba(0, 0, 0, 0.6),
    1px 1px 0px rgba(0, 0, 0, 1);
  font-weight: 700;
}

.portfolio-category {
  color: var(--secondary-color);
  font-size: var(--font-sm);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.8),
    0px 0px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

/* 지도 섹션 */
.map-section {
  position: relative;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* 약도 이미지 확대/축소 기능 */
.map-zoom-container {
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.map-zoom-container img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.map-zoom-container:hover img {
  transform: scale(1.05);
}

.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.map-modal.active {
  opacity: 1;
  visibility: visible;
}

.map-modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.map-modal-content img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--border-radius);
  background-color: white; /* 배경색 추가 */
}

.map-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-close-btn:hover {
  background-color: var(--secondary-color);
  transform: rotate(90deg);
}

.zoom-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 400px;
  z-index: 10;
}

.contact-title {
  margin-bottom: var(--spacing-lg);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.6),
    0px 0px 4px rgba(255, 255, 255, 0.8),
    -1px -1px 0px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.contact-list {
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-md);
  fill: var(--secondary-color);
}

/* 푸터 */
.footer {
  background-color: rgba(26, 58, 95, 0.7); /* 푸터의 네이비 투명도도 높임 */
  color: var(--white);
  padding: var(--spacing-xl) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.footer-logo {
  color: var(--white);
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-md);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.7),
    0px 0px 4px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
}

.footer-title {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  position: relative;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.6),
    0px 0px 3px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: var(--spacing-sm);
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link a:hover {
  color: var(--secondary-color);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  margin-right: var(--spacing-sm);
  fill: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-sm);
}

/* 반응형 스타일 */

/* 데스크톱 및 큰 화면 */
@media (min-width: 1200px) {
  body {
    background-size: 100% auto;
    background-position: center top;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  body {
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 992px) {
  :root {
    --font-hero: 2.5rem;
    --font-xxl: 1.75rem;
    --font-xl: 1.25rem;
  }
  
  .hero {
    height: 80vh;
  }
  
  .hero-bg {
    width: 100%;
    opacity: 0.2;
  }
  
  .hero-content {
    max-width: 90%; /* 더 넓게 조정 */
    width: 90%;
  }
  
  .contact-info {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: -50px auto 0;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center top;
  }
  
  .header-content {
    height: 70px;
  }
  
  .nav-toggle {
    display: block;
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    height: auto;
    max-height: calc(100vh - 70px);
    padding: var(--spacing-lg) 0;
  }
  
  .nav-item {
    margin: var(--spacing-md) 0;
  }
  
  .nav-link {
    padding: var(--spacing-md) var(--spacing-lg);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-lg);
  }
  
  .language-switcher {
    margin-top: var(--spacing-md);
    margin-left: 0;
  }
  
  .hero {
    margin-top: 70px;
    text-align: center;
    padding: var(--spacing-xl) 0; /* 패딩 추가 */
  }
  
  .hero-content {
    margin: 0 auto;
    width: 95%; /* 화면 너비의 95%로 설정 */
    max-width: 100%;
  }

  .mute-toggle {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .hero-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26, 58, 95, 0.6) 0%,
      rgba(26, 58, 95, 0.5) 50%,
      rgba(26, 58, 95, 0.7) 100%
    );
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
  }
  
  .portfolio-item {
    height: 200px;
  }
  
  .service-card {
    padding: var(--spacing-lg);
    text-align: center;
  }
  
  .hero-content .btn {
    display: block;
    margin: var(--spacing-sm) auto;
    width: 100%;
    max-width: 280px;
  }
  
  .portfolio-filter {
    flex-wrap: wrap;
  }
  
  .filter-btn {
    margin-bottom: var(--spacing-sm);
  }
}

@media (max-width: 576px) {
  body {
    background-size: cover;
    background-position: center center;
  }
  
  :root {
    --font-hero: 2rem;
    --font-xxl: 1.5rem;
    --font-xl: 1.25rem;
    --spacing-xxl: 2rem;
  }
  
  .logo-text {
    display: none;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero-content .btn {
    font-size: var(--font-md);
    padding: var(--spacing-md);
    margin: var(--spacing-xs) 0;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: var(--spacing-md);
  }
  
  .contact-info {
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) auto 0;
  }
}

/* 추가 페이지 텍스트 양각 효과 */

/* FAQ 섹션 스타일 */
.faq-question,
.accordion-title {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.8),
    0px 0px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.faq-answer,
.accordion-content {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.9),
    0px 0px 1px rgba(0, 0, 0, 0.1);
}

/* 고객 후기 스타일 */
.customer-review h3,
.review-name,
.card h3 {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.8),
    0px 0px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.customer-review p,
.review-content {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.9),
    0px 0px 1px rgba(0, 0, 0, 0.1);
}

/* 연락처 정보 스타일 */
.contact-item,
.contact-list li {
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.4),
    0px 0px 3px rgba(255, 255, 255, 0.6);
}

.contact-item span,
.contact-list li span {
  font-weight: 500;
}

/* 서비스 상세 설명 */
.service-detail h2,
.service-detail h3 {
  text-shadow: 
    0px 1px 2px rgba(255, 255, 255, 0.8),
    0px 0px 3px rgba(0, 0, 0, 0.2);
}

.service-detail p,
.service-detail li {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.9),
    0px 0px 1px rgba(0, 0, 0, 0.1);
}

/* 폼 레이블 */
.form-label,
label {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.8),
    0px 0px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* 지도 섹션 텍스트 */
.map-section h3,
.map-section p,
.location-info h3,
.location-info p {
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.6),
    0px 0px 4px rgba(255, 255, 255, 0.8);
}

/* 정보 박스 및 카드 내부 텍스트 */
.info-box h2,
.info-box h3,
.info-box h4 {
  text-shadow: 
    0px 1px 2px rgba(255, 255, 255, 0.8),
    0px 0px 3px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.info-box p,
.info-box li {
  text-shadow: 
    0px 1px 1px rgba(255, 255, 255, 0.9),
    0px 0px 1px rgba(0, 0, 0, 0.1);
}

/* 인라인 스타일이 적용된 모든 h2, h3 요소 강화 */
[style*="color"] h2,
[style*="color"] h3,
div[style] h2,
div[style] h3 {
  text-shadow: 
    0px 1px 2px rgba(255, 255, 255, 0.8),
    0px 0px 3px rgba(0, 0, 0, 0.2) !important;
}

/* 문의 양식 필드 */
.form-group input,
.form-group textarea,
.form-group select {
  text-shadow: none; /* 입력 필드는 양각 효과 제거 */
}

/* 문의 양식 placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  text-shadow:
    0px 1px 1px rgba(255, 255, 255, 0.8),
    0px 0px 1px rgba(0, 0, 0, 0.2);
}

/* ==================== 홍보 배너 섹션 ==================== */
.promotional-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(26, 58, 95, 0.05) 0%, rgba(242, 121, 53, 0.03) 100%);
}

.promotional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
}

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

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

.promotional-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* picture 태그 반응형 이미지 지원 */
.promotional-item picture {
  display: block;
  width: 100%;
}

.promotional-item picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* 포트폴리오 반응형 이미지 최적화 */
.portfolio-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 모바일 이미지 최적화 */
@media (max-width: 768px) {
  .promotional-img,
  .portfolio-img {
    /* 모바일에서 이미지 로딩 최적화 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  /* 모바일 이미지 크기 제한 */
  .promotional-item {
    max-width: 100%;
  }

  .promotional-item picture,
  .promotional-item img {
    max-width: 100%;
    height: auto;
  }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
  .promotional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .promotional-section {
    padding: 2rem 0;
  }

  .promotional-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .promotional-item {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==================== Phase 2: Inline style replacements ==================== */

/* Page header section */
.page-header-section {
  background-color: rgba(26, 58, 95, 0.4);
  color: var(--white);
  padding: 6rem 0 3rem;
  margin-bottom: 3rem;
}

.page-header-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header-subtitle {
  font-size: var(--font-lg);
  max-width: 600px;
}

/* Service layout */
.service-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-content {
  flex: 1 1 400px;
}

.service-content-reverse {
  flex: 1 1 400px;
  order: 2;
}

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

.service-image-reverse {
  flex: 1 1 400px;
  order: 1;
}

.section-title-left {
  text-align: left;
}

/* Section backgrounds */
.section-alt {
  background-color: rgba(245, 245, 245, 0.5);
}

/* Feature list */
.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 20px;
  height: 20px;
  fill: var(--secondary-color);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Service image styling */
.service-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Review cards */
.review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.review-card {
  flex: 1 1 300px;
  max-width: 350px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.review-name {
  margin: 0;
  font-size: var(--font-lg);
}

.review-title {
  margin: 0;
  color: var(--dark-gray);
  font-size: var(--font-sm);
}

.review-content {
  font-family: 'KoPub Batang', serif;
  font-style: italic;
  line-height: 1.6;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  margin-bottom: 1rem;
}

.faq-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-body {
  padding: 0 1rem 1rem;
  display: none;
}

/* Portfolio loading */
.portfolio-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
}

.portfolio-loading-text {
  color: var(--dark-gray);
  font-size: var(--font-lg);
}

.portfolio-error-text {
  color: var(--dark-gray);
  font-size: var(--font-lg);
  margin-bottom: 1rem;
}

/* Contact page */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-sidebar {
  flex: 1 1 350px;
}

.contact-main {
  flex: 2 1 500px;
}

.contact-block {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact-block-icon {
  width: 50px;
  height: 50px;
  fill: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-note {
  margin-top: 0.5rem;
  font-size: var(--font-sm);
}

.contact-spacer {
  margin-top: 2rem;
}

.contact-spacer-lg {
  margin-top: 3rem;
}

.kakao-btn {
  display: inline-block;
  background-color: #FEE500;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.kakao-btn:hover {
  background-color: #FDD835;
  color: #000000;
}

.kakao-icon {
  font-size: 1.2rem;
}

.kakao-link-wrapper {
  margin: 1.5rem 0;
  text-align: center;
}

/* Inquiry guide */
.inquiry-title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.inquiry-block {
  margin-bottom: 1.5rem;
}

.inquiry-block:last-child {
  margin-bottom: 0;
}

.inquiry-subtitle {
  margin-bottom: 0.5rem;
}

/* Location page */
.direction-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.direction-col {
  flex: 1 1 400px;
}

.direction-list {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.direction-list-item {
  margin-bottom: 0.5rem;
}

.direction-list-sub {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.direction-list-item-lg {
  margin-bottom: 0.8rem;
}

.map-section-spacer {
  margin-top: 2rem;
}

.map-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.map-detail-col {
  flex: 1 1 400px;
  text-align: center;
}

.map-detail-col-text {
  flex: 1 1 400px;
}

.map-image-link {
  display: block;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.map-image {
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.map-zoom-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.map-note {
  margin-top: 1rem;
  font-size: var(--font-sm);
}

.help-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.help-buttons {
  margin-top: 2rem;
}

.btn-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.btn-mr {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* Kakao link in location */
.kakao-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Gallery modal CSS classes (replacing inline styles) */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  border: none;
}

.gallery-modal-close:hover {
  background-color: var(--secondary-color);
  color: white;
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  display: block;
}

.gallery-modal-info {
  position: absolute;
  bottom: -60px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 5px;
}

.gallery-modal-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.gallery-modal-info p {
  margin: 5px 0 0;
  color: #666;
}

/* Info box (from contact page <style>) */
.info-box {
  background-color: rgba(245, 245, 245, 0.5);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

/* Direction card (from location page <style>) */
.direction-card {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-start;
}

.direction-icon {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  flex-shrink: 0;
  fill: var(--secondary-color);
}

.business-hours {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.business-day {
  width: 100px;
  padding: 0.5rem;
  text-align: center;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius);
  background-color: rgba(245, 245, 245, 0.7);
  font-weight: 500;
}

.highlight {
  color: var(--white);
  background-color: rgba(26, 58, 95, 0.7);
}

/* Map container override for location page */
.map-container-lg {
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Google Maps iframe */
.map-iframe {
  border: 0;
}

/* Text center utility */
.text-center {
  text-align: center;
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* ==================== 소식(뉴스) 페이지 ==================== */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  display: block;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--box-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.news-card-title {
  margin: 0 0 0.75rem;
  font-size: var(--font-lg);
  color: var(--primary-color);
}

.news-card-date {
  font-size: var(--font-sm);
  color: var(--dark-gray);
}

.news-back-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: var(--font-base);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.news-back-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.news-post-content {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  line-height: 1.8;
}

.news-post-content h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary-color);
}

.news-post-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.news-post-content h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.news-post-content p {
  margin-bottom: 1rem;
}

.news-post-content ul,
.news-post-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.news-post-content li {
  margin-bottom: 0.5rem;
}

.news-post-content blockquote {
  border-left: 4px solid var(--secondary-color);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(242, 121, 53, 0.05);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.news-post-content code {
  background: rgba(26, 58, 95, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
}

.news-post-content pre {
  background: rgba(26, 58, 95, 0.08);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin-bottom: 1rem;
}

.news-post-content pre code {
  background: none;
  padding: 0;
}

.news-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}

.news-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.news-post-content th,
.news-post-content td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.news-post-content th {
  background-color: rgba(26, 58, 95, 0.08);
  font-weight: 700;
}

.news-post-content strong {
  color: var(--primary-color);
}

.news-loading {
  text-align: center;
  padding: 3rem;
  color: var(--dark-gray);
  font-size: var(--font-lg);
}

.news-error {
  text-align: center;
  padding: 2rem;
  color: var(--dark-gray);
  font-size: var(--font-lg);
}

.news-empty {
  text-align: center;
  padding: 3rem;
  color: var(--dark-gray);
  font-size: var(--font-lg);
}

/* Responsive adjustments for new classes */
@media (max-width: 768px) {
  .service-layout {
    flex-direction: column;
  }

  .service-content-reverse {
    order: 0;
  }

  .service-image-reverse {
    order: 0;
  }

  .review-grid {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    max-width: 100%;
  }

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

  .direction-layout {
    flex-direction: column;
  }

  .map-detail-layout {
    flex-direction: column;
  }

  .help-buttons .btn {
    display: block;
    margin: 0.5rem auto;
  }

  .page-header-section {
    padding: 5rem 0 2rem;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-post-content {
    padding: 1.5rem;
  }

  .news-post-content h1 {
    font-size: 1.5rem;
  }
}
