/* CSS Document */
/* Modern Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 15px;
  color: #333;
  background: #1a1a2e;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
}

a:focus, input[type=button], input[type=submit] {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ===== PAGE CONTAINER ===== */
#pageBox {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

/* ===== HEADER / TOP ===== */
#homeTop {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  padding: 30px 40px 20px;
  position: relative;
}

#homeTop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 187, 106, 0.4), transparent);
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 20px;
}

.imgLogo {
  display: inline-block;
}

.imgLogo a {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.imgLogo a:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.imgLogo img {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Navigation */
.nav {
  text-align: center;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 4px;
  backdrop-filter: blur(6px);
}

.nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav ul li {
  display: inline;
}

.nav ul li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  color: #d4c5a0;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.nav ul li a:hover {
  background: rgba(232, 187, 106, 0.2);
  color: #e8bb6a;
  transform: translateY(-1px);
}

.nav ul li a:active {
  transform: translateY(0);
}

/* ===== MAIN CONTENT ===== */
#homeMain {
  display: flex;
  min-height: 420px;
  background: linear-gradient(180deg, #16213e, #0f3460);
  position: relative;
}

#leftSide {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #e8bb6a;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 15px;
  color: #c4b89a;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #e8bb6a, #d4a24e);
  color: #16213e;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 187, 106, 0.3);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 187, 106, 0.45);
  color: #16213e;
}

#rightSide {
  flex: 1.2;
  padding: 30px 40px;
  position: relative;
}

.con {
  position: relative;
  z-index: 1;
}

.tab {
  width: 100%;
}

/* Business Hours */
.openTime {
  background: rgba(232, 187, 106, 0.08);
  border: 1px solid rgba(232, 187, 106, 0.15);
  border-radius: 12px;
  padding: 24px 28px;
  color: #e8dcc8;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.openTime strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #e8bb6a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 187, 106, 0.2);
}

/* Divider Line */
.splitLine {
  height: 1px;
  margin: 20px 0;
  background: linear-gradient(90deg, transparent, rgba(232, 187, 106, 0.3), transparent);
}

/* Address */
.addr2 {
  background: rgba(232, 187, 106, 0.08);
  border: 1px solid rgba(232, 187, 106, 0.15);
  border-radius: 12px;
  padding: 20px 28px;
  color: #e8dcc8;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.telfax2 {
  display: inline-block;
  margin-top: 8px;
  color: #e8bb6a;
  font-weight: 600;
}

/* Credit Cards */
.crd {
  padding: 20px 0 10px;
  text-align: center;
}

.crd img {
  width: 52px;
  height: auto;
  margin: 0 6px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  padding: 4px;
}

.crd img:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
#homeFooter {
  background: linear-gradient(180deg, #0f3460, #16213e);
}

/* Image Scroller */
#homeRoll {
  padding: 20px 0;
  overflow: hidden;
}

.rollAera {
  text-align: center;
  padding: 0 20px;
}

.scroll_div {
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.scroll_div ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scroll_div li {
  margin: 0;
  padding: 0;
  width: 126px;
  height: 82px;
}

#scroll_begin, #scroll_end,
#scroll_begin ul, #scroll_end ul,
#scroll_begin ul li, #scroll_end ul li {
  display: inline;
}

#scroll_begin img,
#scroll_end img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#scroll_begin img:hover,
#scroll_end img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(232, 187, 106, 0.3);
}

/* Bottom / Copyright */
#homeBot {
  border-top: 1px solid rgba(232, 187, 106, 0.15);
  padding: 20px;
}

.copyright {
  text-align: center;
  color: rgba(232, 187, 106, 0.5);
  font-size: 12px;
  line-height: 1.8;
}

.copyright a {
  color: #e8bb6a;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #f0d08a;
}

.copyright img {
  margin-top: 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.copyright img:hover {
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #pageBox {
    border-radius: 0;
  }

  #homeTop {
    padding: 20px;
  }

  .nav ul {
    gap: 2px;
  }

  .nav ul li a {
    font-size: 13px;
    padding: 8px 14px;
  }

  #homeMain {
    flex-direction: column;
  }

  #leftSide {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  #rightSide {
    padding: 20px;
  }

  .imgLogo img {
    width: 180px;
  }

  .openTime,
  .addr2 {
    padding: 18px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #homeTop {
    padding: 16px;
  }

  .nav ul li a {
    font-size: 12px;
    padding: 8px 10px;
    letter-spacing: 0.5px;
  }

  #leftSide {
    padding: 24px 16px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13px;
  }

  #rightSide {
    padding: 16px;
  }

  .imgLogo img {
    width: 150px;
  }

  .openTime strong {
    font-size: 14px;
  }
}
