body { font-family: 'Roboto', 'Montserrat', Arial, sans-serif; margin: 0; color: #333; background: #f4f4f4; line-height: 1.6; }
.lang-switch { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 10px 20px; border-bottom: 1px solid #ddd; gap: 12px; }
.site-logo { display: flex; align-items: center; }
.site-logo svg { height: 64px; width: auto; display: block; }
.lang-options { display: flex; gap: 10px; align-items: center; }
.lang-option { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 6px 8px; border-radius: 6px; font-weight: 700; color: #444; text-decoration: none; }
.lang-option img { width: 22px; height: 14px; object-fit: cover; display: inline-block; }
.lang-option.active { background: rgba(0,123,255,0.08); color: #007bff; }
.hero { position: relative; color: #fff; text-align: center; overflow: hidden; min-height: 380px; display: flex; align-items: center; justify-content: center; }
.hero .slides { position: absolute; inset: 0; }
.hero .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; image-rendering: auto; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform, opacity; }
.hero .slide.active { opacity: 1; z-index: 1; }
.hero .hero-content { position: relative; z-index: 5; padding: 60px 20px; max-width: 1080px; }
.hero h2 { font-size: 2.2em; margin: 0 0 12px; text-shadow: 0 6px 20px rgba(11,37,64,0.35); }
.hero p { font-size: 1.05em; margin: 0 0 18px; color: rgba(255,255,255,0.95); text-shadow: 0 4px 16px rgba(11,37,64,0.32); white-space: pre-line; }
.btn { display: inline-block; padding: 12px 26px; border-radius: 8px; background: #007bff; color: #fff; text-decoration: none; font-weight: 700; }
.btn.secondary { background: #6c757d; }
.section { background: #fff; margin: 30px auto; border-radius: 10px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); max-width: 1200px; padding: 28px; }
.section .section-title { text-align: center; margin-bottom: 18px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card { background: #fafafa; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.service-img img { width: 100%; height: 160px; object-fit: cover; }
.service-content { padding: 14px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.service-price { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.booking-form { max-width: 900px; margin: 0 auto; padding: 16px; }
#bookingForm .form-group { position: relative; display: flex; flex-direction: column; margin-bottom: 16px; }
#bookingForm .form-group label { margin-bottom: 6px; font-weight: 500; }
#bookingForm .form-control { width: 100%; padding: 12px 16px; border-radius: 8px; border: none; box-shadow: 0 2px 6px rgba(0,0,0,0.3); transition: all 0.3s ease; font-size: 16px; box-sizing: border-box; }
#bookingForm button { grid-column: 1 / -1; padding: 16px 50px; border: none; border-radius: 8px; font-size: 18px; cursor: pointer; background: linear-gradient(45deg,#ff6600,#ff9900); color: #fff; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
#bookingForm button:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.5); background: linear-gradient(45deg,#ff9933,#ff6600); }
@media (max-width: 768px) { #bookingForm { grid-template-columns: 1fr; } }
footer { background: #222; color: #fff; padding: 30px 20px; }
.footer-content { display: flex; flex-wrap: wrap; gap: 24px; max-width: 1200px; margin: 0 auto; }
.footer-col { flex: 1; min-width: 220px; }
.footer-col ul li a { color: #ffffff; }
.copyright { background: #111; color: #fff; text-align: center; padding: 12px; font-size: 0.9em; }
@media (max-width: 768px) { .hero { min-height: 300px; } .hero h2 { font-size: 1.6em; } .form-row { flex-direction: column; } .lang-switch { flex-direction: column; align-items: stretch; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
#fixed-menu { display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; width: 100%; height: 80px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); z-index: 9999; padding: 0 20px; }
#logo-text { position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); font-size: 35px; font-weight: 700; font-family: 'Dancing Script', cursive; background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #7f7fd5); background-size: 1000% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 10s ease infinite; }
@keyframes moveAndPulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.slide-text { position: relative; opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease, box-shadow 0.3s ease; font-family: 'Dancing Script', cursive; padding: 30px 40px; border-radius: 15px; background: rgba(0, 0, 0, 0.4); box-shadow: 0 12px 24px rgba(0,0,0,0.4); max-width: 90%; margin: 0 auto; }
.slide-text.active { opacity: 1; transform: translateY(0); box-shadow: 0 16px 32px rgba(0,0,0,0.5); }
h2 { font-family: 'Dancing Script', cursive; font-size: 2.5em; color: #ffe4b5; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); margin-bottom: 14px; line-height: 1.2; }
p { font-size: 1.2em; color: #fffaf0; line-height: 1.6; margin-top: 12px; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); white-space: pre-line; }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero .slide img { image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; image-rendering: pixelated; }
#booking #bookingForm .form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
#booking #bookingForm .form-group label { margin-bottom: 6px; font-weight: 500; width: 100%; }
#booking #bookingForm .form-control { flex: 1; padding: 12px 16px; border-radius: 8px; border: none; box-shadow: 0 2px 6px rgba(0,0,0,0.3); transition: all 0.3s ease; font-size: 16px; box-sizing: border-box; }
@media (max-width: 768px) { #booking #bookingForm { grid-template-columns: 1fr; } #booking #bookingForm .form-group label { font-size: 14px; } #booking #bookingForm .form-control { font-size: 14px; padding: 10px 14px; } #booking { padding: 60px 15px; } #booking .section-title h2 { font-size: 28px; } }
:root { --primary-color: #007bff; --background-overlay: rgba(0, 0, 0, 0.4); --card-bg: rgba(255, 255, 255, 0.2); --border-radius: 10px; --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); --hover-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); --padding: 20px; --font-color: #fff; --font-family: Arial, sans-serif; }
#services { position: relative; overflow: hidden; font-family: var(--font-family); }
#services > .services-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://images.unsplash.com/photo-1700796468582-f97d621b9868?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&'); background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; }
#services > .services-overlay { position: relative; background-color: transparent; padding: 60px 20px; border-radius: var(--border-radius); z-index: 1; max-width: 1200px; margin: 0 auto; }
.section-title { color: var(--font-color); text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.5em; margin: 0 0 10px; }
.section-title p { font-size: 1.2em; margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { background: var(--card-bg); border-radius: var(--border-radius); padding: var(--padding); box-shadow: var(--box-shadow); backdrop-filter: blur(8px); transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; cursor: pointer; display: flex; flex-direction: column; align-items: center; text-align: center; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); background: rgba(255, 255, 255, 0.3); }
.service-img-container { height: 150px; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-img-container img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; width: auto; height: auto; }
.service-content h3 { margin-top: 6px; font-size: 1.2em; color: var(--font-color); }
.service-content p { margin-top: 8px; font-size: 1em; color: var(--font-color); line-height: 1.4; }
.btn { display: inline-block; padding: 8px 16px; margin-top: 10px; background-color: var(--primary-color); color: #fff; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; }
.btn:hover { background-color: #005bc0; transform: translateY(-2px); }
@media (max-width: 768px) { #services .services-overlay { padding: 40px 15px; } .section-title h2 { font-size: 2em; } }
.why-choose { position: relative; overflow: hidden; padding: 60px 20px; }
.background-slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.background-slideshow .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; }
.background-slideshow::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.35); z-index: 1; }
.why-choose .section-title { position: relative; z-index: 2; text-align: center; color: #fff; margin-bottom: 40px; }
.why-choose .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; position: relative; z-index: 2; }
.why-choose .feature-card { background: transparent; padding: 18px; border-radius: 8px; text-align: center; color: #fff; }
.why-choose .feature-card i { font-size: 28px; color: #00d1ff; margin-bottom: 8px; }
@media (max-width: 768px) { .why-choose { padding: 40px 15px; } .why-choose .section-title h2 { font-size: 28px; } .why-choose .section-title p { font-size: 18px; } .why-choose .feature-card h4 { font-size: 20px; } .why-choose .feature-card p { font-size: 16px; } }
@media (max-width: 480px) { .why-choose .section-title h2 { font-size: 26px; } .why-choose .section-title p { font-size: 16px; } .why-choose .feature-card h4 { font-size: 18px; } .why-choose .feature-card p { font-size: 14px; } }
@keyframes fadeSlides { 0%, 100% { opacity: 0; } 10%, 30% { opacity: 1; } }
#customerReviews { padding: 60px 20px; background: #f4f7fb; }
#reviewForm { display: flex; flex-direction: column; gap: 15px; max-width: 600px; margin: 0 auto; background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: 0.3s; }
#starRating { display: flex; justify-content: center; gap: 8px; font-size: 22px; margin: 5px 0; }
#reviewList { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
#reviewPagination { text-align: center; margin-top: 30px; }
#reviewPagination button { margin: 0 10px; padding: 10px 18px; border: none; border-radius: 8px; background: #007bff; color: #fff; cursor: pointer; transition: 0.3s; }
@media (max-width: 768px) { #reviewForm { padding: 20px; } #reviewForm input, #reviewForm textarea { font-size: 0.95rem; } #starRating { font-size: 20px; gap: 6px; } #customerReviews h2 { font-size: 1.5rem; } #customerReviews p { font-size: 0.9rem; } #reviewPagination button { padding: 8px 16px; font-size: 0.9rem; } }
@media (max-width: 480px) { #reviewForm { padding: 15px; } #reviewForm input, #reviewForm textarea { font-size: 0.9rem; } #starRating { font-size: 18px; gap: 5px; } #customerReviews h2 { font-size: 1.25rem; } #customerReviews p { font-size: 0.85rem; } #reviewPagination button { padding: 6px 12px; font-size: 0.85rem; } }
#float-contact { position: fixed; right: 18px; bottom: 100px; z-index: 9999; }
#float-contact .contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
#float-contact .contact-list li { position: relative; animation: floatIn 0.8s ease-in-out both; }
#float-contact a { display: flex; justify-content: center; align-items: center; width: 58px; height: 58px; background: #fff; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: transform 0.25s, box-shadow 0.25s; }
#float-contact img { width: 34px; height: 34px; transition: transform 0.25s ease; }
#float-contact .kakao a { background-color: #ffe812; }
#float-contact .kakao img { width: 30px; height: 30px; filter: none; transform: scale(1.05); }
#float-contact a:hover { transform: scale(1.15); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
#float-contact img:hover { transform: rotate(10deg); }
@keyframes floatIn { 0% { opacity: 0; transform: translateY(20px) scale(0.7); } 100% { opacity: 1; transform: translateY(0) scale(1.05); } }
@keyframes pulse { 0%, 100% { transform: scale(0.9); } 50% { transform: scale(1.08); } }
#float-contact a { animation: pulse 2s infinite ease-in-out; }
@media (max-width: 768px) { #float-contact { right: 10px; bottom: 80px; } #float-contact a { width: 50px; height: 50px; } #float-contact img { width: 28px; height: 28px; } #float-contact .kakao img { width: 26px; height: 26px; } }
@media (max-width: 768px) {
  #fixed-menu { height: 60px; padding: 0 10px; }
  #fixed-menu img { height: 50px; }
  #logo-text { font-size: 25px; }
  .hero { min-height: 250px; }
  .hero .hero-content { padding: 40px 10px; }
  .hero h2 { font-size: 1.8em; }
  .hero p { font-size: 1em; }
  .slide-text { padding: 20px 30px; font-size: 0.9em; }
  .services-grid { grid-template-columns: 1fr; }
  .service-img img { height: 140px; }
  #bookingForm .form-control { font-size: 14px; padding: 10px 14px; }
  .why-choose .features-grid { grid-template-columns: 1fr; }
  #reviewList { grid-template-columns: 1fr; }
  .lang-switch { padding: 10px; gap: 8px; }
  .lang-options { flex-wrap: wrap; justify-content: center; }
  footer { padding: 20px 10px; }
  .footer-content { gap: 16px; }
  .footer-col { min-width: 180px; }
}
@media (max-width: 480px) {
  #fixed-menu { height: 50px; }
  #fixed-menu img { height: 40px; }
  #logo-text { font-size: 20px; }
  .hero h2 { font-size: 1.4em; }
  .hero p { font-size: 0.9em; }
  .slide-text { padding: 15px 20px; font-size: 0.8em; }
  .section { padding: 20px; margin: 20px auto; }
  #reviewForm { max-width: 100%; padding: 15px; }
  #bookingForm button { padding: 12px 30px; font-size: 16px; }
  .service-img img { height: 120px; }
  .service-content { padding: 10px; }
  .service-content h3 { font-size: 1.1em; }
  .service-content p { font-size: 0.95em; }
  .btn { padding: 8px 20px; font-size: 0.95em; }
}
.hero-cta-buttons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta-buttons a {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.hero-cta-buttons a:first-child {
  background: linear-gradient(45deg, #ff6600, #ff9900);
  color: #fff;
}
.hero-cta-buttons a:last-child {
  background: #fff;
  color: #333;
}
.hero-cta-buttons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .hero-cta-buttons { bottom: 20px; gap: 15px; }
  .hero-cta-buttons a { padding: 12px 24px; font-size: 1rem; }
}