/* Beacon Peak - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;700&family=Noto+Sans+TC:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navbar-brand .brand-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 22px;
  font-weight: 700;
  color: #4a3728;
  letter-spacing: 1px;
}

.navbar-brand .brand-tagline {
  font-size: 13px;
  color: #7a6a5a;
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 8px 18px;
  text-decoration: none;
  color: #4a3728;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
  border-right: 1px solid #e0d8d0;
}

.nav-links li:last-child a {
  border-right: none;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #8b6914;
}

.nav-whatsapp {
  background: #4a3728;
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  border-right: none !important;
  transition: background 0.2s !important;
}

.nav-whatsapp:hover {
  background: #6b4f3a !important;
  color: #fff !important;
}

/* ===== HERO HEADER ===== */
.site-header {
  margin-top: 70px;
  background: linear-gradient(135deg, #e8d5b0 0%, #d4b896 30%, #c4a882 60%, #b09070 80%, #9a7a60 100%);
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/header_bg.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.25;
}

.header-content {
  position: relative;
  z-index: 1;
}

.header-content h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 28px;
  font-weight: 700;
  color: #3a2a1a;
  letter-spacing: 2px;
}

.header-content .tagline {
  font-size: 18px;
  color: #5a3a20;
  margin-top: 6px;
  letter-spacing: 6px;
  font-weight: 400;
}

/* ===== HERO SECTION (Home) ===== */
.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  display: block;
  max-height: 820px;
  object-fit: cover;
}

/* ===== AERIAL SECTION ===== */
.aerial-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.aerial-section img {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  width: 100%;
  min-height: 450px;
  background-image: url('images/contact_bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(200,160,100,0.5) 0%, rgba(150,120,90,0.4) 50%, rgba(100,80,120,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: background 0.3s, transform 0.2s;
  border: 2px solid transparent;
}

.cta-btn:hover {
  background: #2d2d4e;
  transform: translateY(-2px);
}

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: #1a1a2e;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  border: 2px solid #1a1a2e;
  transition: all 0.3s;
  margin-left: 16px;
}

.cta-btn-outline:hover {
  background: #1a1a2e;
  color: #fff;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 32px;
  color: #4a3728;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

/* ===== PRICE LIST PAGE ===== */
.price-list-section {
  background: linear-gradient(135deg, #e8d5b0 0%, #d4b896 30%, #c4a882 60%, #b09070 80%, #9a7a60 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.price-list-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/contact_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.price-list-content {
  position: relative;
  z-index: 1;
}

.price-item {
  display: block;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,26,46,0.2);
  transition: color 0.2s;
}

.price-item:hover {
  color: #8b6914;
}

/* ===== SALES ARRANGEMENT PAGE ===== */
.sales-section {
  background: linear-gradient(135deg, #e8d5b0 0%, #d4b896 30%, #c4a882 60%, #b09070 80%, #9a7a60 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.sales-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/contact_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.sales-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sales-section-2 {
  background: #f5f0e8;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: #f5f0e8;
  padding: 80px 40px;
}

.contact-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 36px;
  color: #6b8cba;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-icon.phone { background: #e8f5e9; color: #4caf50; }
.contact-icon.whatsapp { background: #e8f5e9; color: #25d366; }
.contact-icon.address { background: #fce4ec; color: #e91e63; }

.contact-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.contact-info a, .contact-info p {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  display: block;
  line-height: 1.6;
}

.contact-info a:hover {
  color: #6b8cba;
}

/* ===== DISCLAIMER FOOTER ===== */
.disclaimer {
  background: #3a2a1a;
  color: #c8b89a;
  padding: 30px 40px;
  font-size: 12px;
  line-height: 1.8;
}

.disclaimer h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e0c8a8;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #c0392b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 130px;
  justify-content: center;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li a {
    padding: 6px 12px;
    font-size: 13px;
  }

  .site-header {
    margin-top: 120px;
    padding: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-list-section {
    padding: 40px 30px;
  }

  .content-section {
    padding: 40px 20px;
  }
}
