/* 모든 주요 섹션의 내부 컨테이너 고정폭 처리 */
.intro-content,
.info-content,
.features-content,
.locations-grid,
.room-row
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('./images/bg.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  box-sizing: border-box;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* Content Wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo */
.hero .logo img {
  max-width: 220px;
  margin: 0 auto 1rem;
}

/* Title */
/* 색상이 바뀌는 애니메이션 */
@keyframes ambientColors {
  0%   { color: #ff0080; }
  25%  { color: #00ffff; }
  50%  { color: #ff00ff; }
  75%  { color: #ffff00; }
  100% { color: #ff0080; }
}

/* .hero-title에 적용 */
.hero-title {
  margin-bottom: 10rem;
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 2px;
  animation: ambientColors 8s infinite linear;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #f0f,
    0 0 20px #f0f,
    0 0 30px #f0f;
}


/* Tags */
.tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tag {
  background: rgba(255,255,255,0.1);
  padding: 0.3em 0.8em;
  border-radius: 20px;
  font-size: 0.9rem;
}

.tag.red {
  background: #e74c3c;
}

/* Subtitle */
.subtitle {
  font-size: 1.5rem;
  margin: 1rem 0;
  font-weight: 600;
}

/* Description */
.description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.description .highlight {
  color: #3498db;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #8e2de2, #ff0080, #ff2d00);
  color: #fff;
  text-decoration: none;
  padding: 0.8em 1.5em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow:
    0 0 10px rgba(255, 0, 128, 0.5),
    0 0 20px rgba(255, 0, 128, 0.3);
}

/* 호버 효과: 밝기 증가 */
.cta-button:hover {
  filter: brightness(1.2);
  box-shadow:
    0 0 15px rgba(255, 0, 128, 0.7),
    0 0 30px rgba(255, 0, 128, 0.5);
}


/* 전체 섹션 */
.info-section {
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

/* 내부 콘텐츠 Flex */
.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* 왼쪽 텍스트 */
.info-text {
  flex: 1 1 600px;
}

/* 제목 */
.info-text h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.info-text .highlight {
  color: #3498db;
}

/* 각 이유 블럭 */
.reason {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* 번호 아이콘 */
.reason-number {
  background: #e74c3c;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

/* 소제목 */
.reason-body h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: #fff;
}

/* 설명 */
.reason-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* 오른쪽 이미지 */
.info-image {
  flex: 1 1 400px; /* 오른쪽에 충분한 폭 확보 */
}

.info-image img {
  width: 100%;     /* 부모 .info-image에 꽉 채움 */
  border-radius: 10px;
  display: block;
}


.section-divider {
  width: 100%;
  height: 2px;
  margin: 2rem 0;
  background: linear-gradient(to right, transparent, red, transparent);
}


/* Intro Section */
.intro-section {
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

/* Flex Layout */
.intro-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Left Text */
.intro-text {
  flex: 1 1 600px;
}

/* SubTitle */
.intro-subtitle {
  color: #ff0040;                /* 핫핑크 레드 */
  font-weight: 500;              /* 굵게 */
  font-size: 5rem;
  letter-spacing: 1px;
  text-transform: uppercase;     /* 대문자 */
  text-shadow:
    0 0 5px #ff0040,
    0 0 10px #ff0040,
    0 0 15px #ff0040;            /* 네온 발광 */
}

/* Title */
.intro-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.intro-title .highlight {
  color: #3498db;
}

/* Paragraph */
.intro-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #ccc;
}

/* Right Image */
.intro-image {
  flex: 1 1 400px;
}
.intro-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
  }
}


/* 반응형 */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column;
  }
}


/* Section Base */
.features-section {
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

/* Flex Container */
.features-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Image Side */
.features-image {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.image-caption {
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
}
.image-caption .highlight {
  color: #8e2de2;
}

/* Text Side */
.features-text {
  flex: 1 1 600px;
}

/* English Title */
.features-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.features-title .english {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 400;
}
.features-title .accent {
  color: #3498db;
}

/* Feature Item */
.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.feature-number {
  background: #e74c3c;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .features-content {
    flex-direction: column;
  }
  .features-title {
    text-align: center;
  }
  .feature {
    flex-direction: row;
  }
}

/* 영문 타이틀 - Why Suwon Karaoke? */
.features-title .english {
  font-family: 'Exo 2', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #9b8cff;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* 숫자도 Exo 2 Italic */
.feature-number {
  font-family: 'Exo 2', sans-serif;
  font-style: italic;
  font-weight: 400;
}

/* 본문 */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

/* Hero Title 네온 */
.hero-title {
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 2px;
  animation: ambientColors 8s infinite linear;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #f0f,
    0 0 20px #f0f,
    0 0 30px #f0f;
}


.locations-section {
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.location-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 400px; /* ✅ 카드 고정 높이 */
}

/* 이미지 높이 고정 + 잘라냄 */
.location-card img {
  width: 100%;
  height: 200px;           /* ✅ 이미지 높이 고정 */
  object-fit: cover;       /* 중앙 기준 잘라냄 */
  display: block;
}

/* 제목 */
.location-card h3 {
  font-size: 1.2rem;
  margin: 1rem;
  color: #fff;
  flex-shrink: 0;
}

/* 설명 */
.location-card p {
  font-size: 0.95rem;
  margin: 0 1rem 1rem;
  color: #ccc;
  flex-grow: 1;           /* ✅ 남는 공간 채움 */
  display: -webkit-box;   /* ✅ 줄수 제한(선택) */
  -webkit-line-clamp: 4;  /* ✅ 4줄로 제한 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.rooms-section {
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* 한 줄 레이아웃 */
.room-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.room-row.reverse {
  flex-direction: row-reverse;
}

.room-image {
  flex: 1 1 50%;
}

.room-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.room-text {
  flex: 1 1 50%;
}

.room-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.room-text .capacity {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.room-text p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.3em 0.7em;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.badge.red {
  background: #e74c3c;
  color: #fff;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .room-row,
  .room-row.reverse {
    flex-direction: column;
  }
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}

.section-divider span {
  position: relative;
  padding: 0 1rem;
  color: #e74c3c;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #000; /* 페이지 배경색에 맞게 조정 */
  z-index: 1;
}

/* 선 */
.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid #e74c3c;
  z-index: 0;
}


.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.contact-left,
.contact-right {
  flex: 1 1 auto;   
  min-width: 300px;   /* 너무 작아지지 않게 */
  max-width: 600px;   /* 너무 커지지 않게 */
  background: #111;
  border-radius: 1rem;
  padding: 2rem;
  box-sizing: border-box;
}

/* 좌우 어긋나게 */
.contact-left {
  transform: translateY(-40px);
}
.contact-right {
  transform: translateY(40px);
}

/* 타이틀 */
.contact-card h3,
.hours h3,
.info-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* 링크 */
.contact-card a {
  color: #aaa;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* 버튼 */
.cta-button {
  display: inline-block;
  margin: 1rem 0;
  background: linear-gradient(90deg, #8e2de2, #ff0080, #ff2d00);
  color: #fff;
  padding: 0.8em 1.5em;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.cta-button:hover {
  filter: brightness(1.2);
}

/* outline 버튼 */
.outline-button {
  display: inline-block;
  padding: 0.6em 1.2em;
  border: 1px solid #888;
  color: #888;
  border-radius: 50px;
  margin-top: 1rem;
  text-decoration: none;
  font-size: 0.95rem;
}
.outline-button:hover {
  background: #222;
  border-color: #fff;
  color: #fff;
}

/* 반응형 */
@media (max-width: 768px) {
  .contact-left,
  .contact-right {
    transform: none;
  }
}


/* reserve-section 기본 스타일 */
#reserve-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #000;
  color: #fff;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 왼쪽 박스 */
#reserve-section .contact-left {
  flex: 1 1 350px;
  background: #111;
  border-radius: 1rem;
  padding: 2rem;
  box-sizing: border-box;
}

/* 오른쪽 박스 */
#reserve-section .contact-right {
  flex: 1 1 400px;
  background: #111;
  border-radius: 1rem;
  padding: 2rem;
  box-sizing: border-box;
}


/* 왼쪽 타이틀 */
#reserve-section .contact-left h2 {
  color: #9d8fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* 작은 제목 */
#reserve-section h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

/* 정보 텍스트 */
#reserve-section p {
  margin: 0.5rem 0;
  color: #ccc;
}

/* 예약/문의 버튼 */
#reserve-section .cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(90deg, #8e2de2, #ff0080, #ff2d00);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
#reserve-section .cta-button:hover {
  filter: brightness(1.2);
}

/* outline 버튼 */
#reserve-section .outline-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #888;
  color: #888;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
}
#reserve-section .outline-button:hover {
  background: #222;
  border-color: #fff;
  color: #fff;
}

/* 카카오톡 링크 */
#reserve-section .kakao-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
}
#reserve-section .kakao-link:hover {
  background: #222;
}

/* 폼 */
#reserve-section form {
  margin-top: 1rem;
}
#reserve-section label {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
}
#reserve-section input[type="text"],
#reserve-section input[type="email"],
#reserve-section input[type="number"],
#reserve-section textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #333;
  border-radius: 0.3rem;
  background: #222;
  color: #fff;
  box-sizing: border-box;
}
#reserve-section textarea {
  height: 100px;
}

/* 체크박스 */
#reserve-section input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* 예약 버튼 */
#reserve-section button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(to right, #c13584, #833ab4);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
#reserve-section button[type="submit"]:hover {
  filter: brightness(1.2);
}

/* 반응형 */
@media (max-width: 768px) {
  #reserve-section {
    flex-direction: column;
  }
  #reserve-section .contact-left,
  #reserve-section .contact-right {
    transform: none;
  }
}

#reserve-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 3rem;
}
#reserve-section .reserve-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

#reserve-section .info-box {
  background: linear-gradient(135deg, #1a1a1a, #330033);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 0, 100, 0.3);
}

#reserve-section .info-box h2 {
  color: #9d8fff;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
}

#reserve-section .info-box p {
  margin: 1rem 0;
  color: #ccc;
}

#reserve-section .contact-info h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
}

#reserve-section .contact-info h3 span {
  color: red;
}

#reserve-section .contact-info p {
  margin: 0.5rem 0;
}

#reserve-section .contact-info a {
  color: #9d8fff;
  text-decoration: none;
}

#reserve-section .inquiry-btn {
  display: block;
  margin: 2rem 0 1rem;
  padding: 1rem;
  background: linear-gradient(90deg, #c800ff, #ff0033);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 2rem;
  text-decoration: none;
}

#reserve-section .kakao-btn {
  display: block;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  border-radius: 2rem;
  text-decoration: none;
}

#reserve-section .reservation-box {
  flex: 1 1 300px;
  background: #111;
  border-radius: 1rem;
  padding: 2rem;
}

#reserve-section .reservation-box h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

#reserve-section .reservation-box p {
  margin-bottom: 1.5rem;
  color: #ccc;
}

#reserve-section .reservation-box form label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: bold;
}

#reserve-section .reservation-box form input[type="text"],
#reserve-section .reservation-box form input[type="email"],
#reserve-section .reservation-box form input[type="date"],
#reserve-section .reservation-box form input[type="number"] {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #222;
  color: #fff;
}

#reserve-section .reservation-box .checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

#reserve-section .reservation-box .checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

#reserve-section .submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #c800ff, #ff0033);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
}

#visit-section {
  background: #000;
  color: #fff;
  padding: 3rem 1rem;
}

#visit-section .location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#visit-section .location-info {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#visit-section .location-info h3,
#visit-section .location-info h4 {
  color: #9d8fff;
  margin: 0 0 0.5rem;
}

#visit-section .location-info p {
  margin: 0.3rem 0;
  color: #ccc;
}

#visit-section .location-info .small-note {
  font-size: 0.85rem;
  color: #888;
}

#visit-section .vip-pickup img {
  width: 100%;
  border-radius: 1rem;
  margin: 1rem 0;
}

#visit-section .vip-pickup h4 span {
  color: #fff;
}

#visit-section .hours ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
}

#visit-section .hours ul li {
  margin: 0.3rem 0;
}

#visit-section .location-map {
  flex: 1 1 300px;
  min-width: 300px;
}
#visit-section .vip-pickup .vip-card {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

#visit-section .vip-pickup .vip-card img {
  width: 100%;
  display: block;
  max-height: 300px;
}

#visit-section .vip-pickup .vip-card .vip-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 0.5rem;
}
