
body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  color: #275cac;
}

.hashtag-text {
  color: #275cac;
}

/*반응형 토글메뉴*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

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

.logo img {
  height: 40px;
}

/* 사이드 메뉴 스타일 */
.nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  padding: 10px 25px;
}

.nav.open {
  left: 0;
}

/* 닫기 버튼 */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle,
.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;        /* 터치 영역 넓히기 */
  margin: -8px;         /* 버튼이 밀리지 않도록 조정 */
  font-size: 24px;
  color: #000;
  z-index: 1001;
}

.menu-toggle i,
.close-btn i {
  font-size: 26px;
  color: #000; /* 검정색 */
  pointer-events: none; /* 아이콘 내부 클릭도 버튼으로 인식되게 */
}

/*토글 메뉴*/

.banner {
  background: url('../images/banner.jpg') center/cover no-repeat;
  height: 400px;
  color: white;
  text-align: center;
  padding-top: 100px;
}

.booking-btn-text {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: #fff;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}


.booking-btn-text:hover {
  background-color: #ff6600;
  color: #fff;
}

.intro, .menu, .location {
  padding: 60px 20px;
  text-align: center;
}
/*소개 부분 */
.intro-gallery-block {
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
}

.intro-gallery-block h2 {
  font-size: 1.5rem;
  color: #275cac;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.image-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.image-track {
  display: flex;
  gap: 16px;
  scroll-snap-align: start;
  padding-bottom: 20px;
}
.image-track img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.intro-text {
  margin-top: 20px;
   max-width: 640px;          /* 텍스트 영역 너비 제한 */
  margin: 0 auto;            /* 가운데 정렬 */
  padding: 2rem 1rem;        /* 상하 여백과 좌우 패딩 */
  text-align: center          /* 내부 텍스트는 왼쪽 정렬 (원하면 center로 바꿔도 됨) */
}
.intro-text h3 {
  font-size: 1.2rem;
  color: #275cac;
  margin-bottom: 10px;
}
.intro-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}
/*소개 부분 끝*/

/*전체 대여 요금 안내 시작*/
.rental-section {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.rental-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.rental-table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rental-table thead th {
  background-color: #f8f8f8;
  padding: 12px;
  border-bottom: 2px solid #ddd;
  font-weight: 600;
}

.rental-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.rental-table tr:nth-child(even) {
  background-color: #fcfcfc;
}

.rental-table strong {
  color: #ff6b00;
}

@media screen and (max-width: 768px) {
  .rental-table {
    font-size: 0.85rem;
  }
  .rental-table td, .rental-table th {
    padding: 10px 6px;
  }
}
/*전체 대여 요금 안내 끝*/

/*매뉴(이용안내 및 수칙) 이미지 확대 기능 */
.menu .menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.menu .menu-item {
  flex: 0 0 auto;
  max-width: 300px;
  text-align: center;
}

.menu .menu-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.menu .menu-item img:hover {
  transform: scale(1.03);
}

.menu h2{
  font-size: 1.5rem;
  color: #275cac;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/* === 전체 대여 이용 안내 섹션 스타일 === */
/* 전체 배경을 가진 이용안내 섹션 */
.rental-guide-bg {
  background-color: #fafafa;
  padding: 60px 0;
}

/* 가운데 레이아웃 및 내부 콘텐츠 */
.rental-guide-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  color: #333;
  font-family: 'Noto Sans KR', sans-serif;
}

.rental-guide-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #2b3a55;
}

.guide-block {
  margin-bottom: 40px;
}

.guide-block h3 {
  font-size: 1.4rem;
  color: #275cac;
  margin-bottom: 15px;
}

.guide-block ul {
  list-style: disc;
  padding-left: 20px;
}

.guide-block ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.guide-block p {
  line-height: 1.6;
  margin-top: 10px;
}

/* 테이블 스타일 */
.checkin-table,
.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.checkin-table th, .checkin-table td,
.refund-table th, .refund-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  font-size: 0.95rem;
}

.checkin-table thead,
.refund-table thead {
  background-color: #f0f4fa;
  font-weight: bold;
}

/* 반응형 */
@media (max-width: 768px) {
  .rental-guide-section {
    padding: 0 15px;
  }

  .guide-block h3 {
    font-size: 1.2rem;
  }

  .checkin-table th, .checkin-table td,
  .refund-table th, .refund-table td {
    font-size: 0.85rem;
    padding: 8px;
  }
}

.contact-block {
  text-align: center;
  margin-top: 40px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.contact-button {
  padding: 12px 24px;
  background-color: #275cac;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-button:hover {
  background-color: #1f4a8a;
}

.contact-button.kakao {
  background-color: #fcd900;
  color: #000;
}

.contact-button.kakao:hover {
  background-color: #e5c400;
}
/*=== 전체 대여 이용 안내 섹션 스타일 끝 ===*/

/*=== 구글 캘린더 섹션 스타일 시작 ===*/
.calendar-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.calendar-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.calendar-note {
  margin-top: 16px;
  font-size: 15px;
  color: #444;
  text-align: center;
  line-height: 1.6;
}
.calendar-note strong {
  color: #275cac;
}
/*=== 구글 캘린더 섹션 스타일 끝 ===*/


/*=== 매점 안내 섹션 스타일 시작 ===*/
.store-info-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.store-info-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
}

.store-info-inner h2 {
  font-size: 2rem;
  color: #2b3a55;
  margin-bottom: 20px;
}

.store-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.store-image-wrapper img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
/*=== 매점 안내 섹션 스타일 끝 ===*/


.features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  font-size: 14px;
  text-align: center;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.footer {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/*이미지 갤러리*/
.photo-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.photo-gallery h2 {
  font-size: 1.5rem;
  color: #275cac;
  border-bottom: 2px solid #ccc;
  margin-bottom: 30px;
  padding-bottom: 10px;
  text-align: center;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* 모바일에서도 격자 유지 */
  gap: 10px;
}

.media-item {
  width: 100%;
  aspect-ratio: 1 / 1; /* 정사각형 형태 유지 */
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: scale(1.05);
}
/*이미지 갤러기 끝*/

/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}

.close {
  position: absolute;
  top: 50px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}
/*이미지 갤러리 끝*/

/* 현재 메뉴 강조 등 포인트 영역에 활용 가능 */
.active,
.section-title {
  color: #275cac;
}
/*플로팅 버튼*/
/* 기본 플로팅 버튼 스타일 (PC & 모바일 공통) */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

.float-btn,
.top-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* 개별 스타일 */
.float-btn {
  background-color: #275cac;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-btn img {
  width: 24px;
  height: 24px;
}

.top-btn {
  background-color: white;
  color: black;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

/* 📱 모바일 대응 */
@media (max-width: 480px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .float-btn,
  .top-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn img {
    width: 20px;
    height: 20px;
  }

  .top-btn {
    font-size: 11px;
  }
}
/*플로팅 버튼 끝*/
@media (max-width: 768px) {
  .banner {
    height: 250px;
    padding-top: 80px;
  }

  .menu-list {
    flex-direction: column;
    align-items: center;
  }

  .menu-item {
    width: 90%;
    margin-bottom: 30px;
  }
  
  .notice-table th,
  .notice-table td {
    padding: 10px 8px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    font-size: 28px;
  }

  .nav a {
    font-size: 1.1rem;
  }
}
