body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f6fa;
  color: #222;
}

header.hero {
  background: none !important;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100vw;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.slider-images {
  width: 100vw; height: 100vh;
  position: relative;
}
.slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.slider-img.active {
  opacity: 1;
  z-index: 2;
}
.slider-btn, .slider-btn.left, .slider-btn.right { display: none !important; }
.hero-content {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 20;
}
.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-shadow: 0 10px 36px rgba(0,0,0,0.72);
}
.hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.hero-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 38px;
  z-index: 3;
  position: relative;
}
.hero-nav button {
  background: #fff;
  color: #003580;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(0,56,128,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.hero-nav button:hover, .hero-nav button:focus {
  background: #0071c2;
  color: #fff;
}

main {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 16px;
}
section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 32px;
  padding: 28px 24px 20px 24px;
}
section h2 {
  color: #003580;
  margin-top: 0;
  font-size: 1.5rem;
}
#weather {
  min-height: 60px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-top: 10px;
}
.hotels-section ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hotel-card {
  background: #f0f6ff;
  border-radius: 8px;
  padding: 16px 14px;
  box-shadow: 0 1px 4px rgba(0,56,128,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  flex: none;
}
.hotel-card h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  color: #003580;
}
.hotel-card .address {
  font-size: 0.97rem;
  color: #555;
}
.hotel-card .price {
  color: #0071c2;
  font-weight: bold;
  font-size: 1.05rem;
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  padding: 18px 0 10px 0;
  background: #eaf1fb;
  margin-top: 40px;
  border-top: 1px solid #dbeafe;
}
.featured-hotels {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  max-width: 1200px;
  margin: -60px auto 32px auto;
  padding: 28px 24px 20px 24px;
  position: relative;
  z-index: 2;
}
.featured-hotels h2 {
  color: #003580;
  margin-top: 0;
  font-size: 1.4rem;
}
.featured-hotel-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 270px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.featured-hotel-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: block;
}
.featured-hotel-heart {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #d1d5db;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  z-index: 2;
}
.featured-hotel-content {
  padding: 16px 18px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.featured-hotel-card h3 {
  margin: 0 0 2px 0;
  font-size: 1.13rem;
  color: #222;
  font-weight: 600;
}
.featured-hotel-card .address {
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 6px;
}
.featured-hotel-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}
.featured-hotel-score {
  background: #003580;
  color: #fff;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
}
.featured-hotel-review {
  font-size: 0.98rem;
  color: #222;
  font-weight: 500;
}
.featured-hotel-count {
  font-size: 0.97rem;
  color: #888;
}
.featured-hotel-price {
  margin-top: 10px;
  font-size: 1.08rem;
  color: #222;
  font-weight: 400;
  text-align: right;
}
.featured-hotel-price strong {
  color: #222;
  font-size: 1.18rem;
  font-weight: bold;
}
.carousel-container {
  width: 1200px;
  height: 376px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
  position: relative;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}
#featured-hotels-list {
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  gap: 32px;
  scroll-behavior: smooth;
  padding: 8px 0;
  margin: 0 36px;
  align-items: center;
}
#featured-hotels-list::-webkit-scrollbar {
  display: none;
}
.carousel-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #83B4FF;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,56,128,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  transition: background 0.18s, box-shadow 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.97;
  padding: 0;
}
.carousel-btn svg polyline {
  stroke: #83B4FF;
}
.carousel-btn.left { left: -18px; }
.carousel-btn.right { right: -18px; }
.carousel-btn:hover, .carousel-btn:focus {
  background: #eaf1fb;
  box-shadow: 0 6px 32px rgba(0,56,128,0.22), 0 2px 12px rgba(0,0,0,0.13);
}
.featured-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 0;
  z-index: 10;
  position: static;
}
.hero-content h1 + p + .featured-nav {
  position: static;
  margin-top: 24px;
}
.featured-nav button {
  background: #fff;
  color: #003580;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 10px 36px rgba(0,0,0,0.36);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.featured-nav button:hover, .featured-nav button:focus {
  background: #0071c2;
  color: #fff;
}
.featured-hotels-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 18px;
}
.featured-hotels {
  text-align: center;
  margin-top: 40px;
}
.booking-search {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #1D267D;
  margin-top: 0;
  margin-bottom: 32px;
  padding: 32px 0 28px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
}
#booking-search-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 18px 20px 14px 20px;
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 900px;
  justify-content: center;
  align-items: center;
}
#booking-search-form input[type="text"],
#booking-search-form input[type="date"],
#booking-search-form input[type="number"] {
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 1.05rem;
  width: 160px;
  outline: none;
  transition: border 0.18s;
}
#booking-search-form input[type="text"]:focus,
#booking-search-form input[type="date"]:focus,
#booking-search-form input[type="number"]:focus {
  border: 1.5px solid #0071c2;
}
#booking-search-form button {
  background: #0071c2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}
#booking-search-form button:hover {
  background: #003580;
}
.row-sections {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 32px;
}
.weather-section, .map-section {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  box-sizing: border-box;
}
.weather-map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 380px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  background: linear-gradient(rgba(30,40,80,0.60), rgba(30,40,80,0.60)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1365&q=80') center center/cover no-repeat;
  color: #fff;
  margin-bottom: 38px;
  box-sizing: border-box;
}
.weather-col, .map-col {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.weather-col h2, .map-col h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
#weather {
  color: #fff;
}
/* 移除 .featured-hotels 樣式 */
.featured-hotels, .featured-hotels-title, #featured-hotels-list {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.featured-hotels-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 18px;
}
#featured-hotels-list {
  margin-bottom: 38px;
}
.weather-map-section, .weather-col, .map-col {
  border-radius: 0 !important;
}
.weather-col {
  overflow: hidden;
}
.activities-section {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 12px;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.activities-section h2 {
  text-align: center;
  color: #003580;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
#activities-list {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 8px 0 8px 0;
  margin: 0 36px;
  list-style: none;
  scroll-behavior: smooth;
  align-items: center;
}
#activities-list::-webkit-scrollbar { display: none; }
.activity-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,56,128,0.10);
  min-width: 23%;
  max-width: 23%;
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.activity-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.activity-content {
  padding: 14px 16px 10px 16px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.activity-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #003580;
  margin: 0 0 2px 0;
}
.activity-desc {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 4px;
}
.activity-price {
  color: #0071c2;
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.activity-btn {
  background: #0071c2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  margin-top: 6px;
  align-self: flex-start;
  transition: background 0.18s;
}
.activity-btn:hover { background: #003580; }
.activities-more-btn {
  background: none;
  color: #003580;
  border-radius: 0;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  transition: color 0.18s;
  box-shadow: none;
  border: none;
}
.activities-more-btn:hover { color: #0071c2; background: none; }
.restaurants-section {
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(rgba(30,40,80,0.45), rgba(30,40,80,0.45)), url('./images/pic05.jpg') center center/cover no-repeat, #fff;
  box-shadow: 0 2px 10px rgba(0,56,128,0.06);
  border-radius: 0;
  z-index: 1;
  margin-bottom: 64px;
}
.restaurants-section h2 {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
#restaurants-list {
  display: flex;
  gap: 38px;
  overflow-x: auto;
  padding: 8px 0 8px 0;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
  align-items: center;
}
#restaurants-list::-webkit-scrollbar { display: none; }
.restaurant-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,56,128,0.10);
  min-width: 23%;
  max-width: 23%;
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.restaurant-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.restaurant-content {
  padding: 14px 16px 10px 16px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.restaurant-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #003580;
  margin: 0 0 2px 0;
}
.restaurant-desc {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 4px;
}
.restaurant-price {
  color: #0071c2;
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.restaurant-btn {
  background: #0071c2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  margin-top: 6px;
  align-self: flex-start;
  transition: background 0.18s;
}
.restaurant-btn:hover { background: #003580; }
.restaurants-more-btn {
  background: none;
  color: #fff;
  border-radius: 0;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  transition: color 0.18s;
  box-shadow: none;
  border: none;
  margin-top: -12px;
}
.restaurants-more-btn:hover { color: #ffeb3b; background: none; }
#food-section .carousel-container {
  width: 896px;
  height: 376px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
}
#food-section .carousel-btn.left { left: -55px; }
#food-section .carousel-btn.right { right: -55px; }
.restaurants-bg {
  width: 100vw;
  height: 220px;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(rgba(30,40,80,0.45), rgba(30,40,80,0.45)), url('./images/pic05.jpg') center center/cover no-repeat;
  opacity: 0.55;
  z-index: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.hotels-section,
.restaurants-section,
.activities-section {
  margin-bottom: 64px;
}
.hotels-section h2 {
  text-align: center;
}
@media (max-width: 1300px) {
  .featured-hotels { max-width: 100vw; }
}
@media (max-width: 900px) {
  .row-sections {
    flex-direction: column;
    gap: 18px;
  }
  .weather-section, .map-section {
    max-width: 100%;
  }
  #featured-hotels-list { flex-wrap: wrap; }
  .carousel-container { max-width: 100vw; }
  #featured-hotels-list { gap: 18px; margin: 0 18px; }
  .weather-map-section {
    flex-direction: column;
    min-height: 0;
    margin-bottom: 24px;
  }
  .weather-col, .map-col {
    max-width: 100%;
    padding: 22px 8px 18px 8px;
  }
  #restaurants-list { gap: 12px; margin: 0 12px; }
  .restaurant-card { min-width: 80vw; max-width: 90vw; flex: 0 0 90vw; }
  #activities-list { gap: 12px; margin: 0 12px; }
  .activity-card { min-width: 80vw; max-width: 90vw; flex: 0 0 90vw; }
  .hotels-section ul { grid-template-columns: 1fr; }
  #featured-hotels-list { gap: 12px; margin: 0 12px; }
  .featured-hotel-card { min-width: 80vw; max-width: 90vw; flex: 0 0 90vw; }
}
@media (max-width: 700px) {
  main { padding: 0 4px; }
  .hotels-section ul { grid-template-columns: 1fr; }
  section { padding: 18px 6px 14px 6px; }
  .hero-content h1 { font-size: 2rem; }
  header.hero { min-height: 60vh; height: 60vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content { margin-bottom: 30px; }
  #featured-hotels-list { flex-direction: column; gap: 12px; }
  .featured-hotels { padding: 18px 6px 14px 6px; margin: -30px 0 18px 0; }
  .featured-hotel-card { min-width: 0; max-width: 100%; }
  .hero-nav { gap: 10px; margin-top: 16px; margin-bottom: 18px; }
  .hero-nav button { padding: 7px 14px; font-size: 0.98rem; }
  .featured-nav { gap: 10px; margin-top: 18px; }
  .featured-nav button { padding: 7px 14px; font-size: 0.98rem; }
  .booking-search { padding: 16px 0 10px 0; }
  #booking-search-form { flex-direction: column; gap: 10px; max-width: 98vw; }
  #booking-search-form input, #booking-search-form button { width: 100%; }
  .activities-section { padding: 0 2px; }
  #activities-list { gap: 12px; }
  .activity-card { min-width: 80vw; max-width: 90vw; }
  .restaurants-section { padding: 0 2px; }
  #restaurants-list { gap: 12px; }
  .restaurant-card { min-width: 80vw; max-width: 90vw; }
} 
#activities-section .carousel-container {
  width: 100%;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  left: 0;
  right: 0;
} 