/* Soft App-Like Design System - Chalé Majestoso Welcome Guide */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Premium Palette with Official Brand Green #295d5b */
  --bg-main: #f7f6f2;
  --bg-surface: #ffffff;
  --bg-subtle: #efebe4;

  --text-dark: #1e2826;
  --text-body: #3c4845;
  --text-muted: #62726f;

  /* Official Brand Green & Tonal Variations */
  --accent-sage: #295d5b;
  --accent-sage-dark: #1c4241;
  --accent-sage-light: #e8f0ef;

  --accent-gold: #c59b27;
  --accent-wood: #8c5a3c;

  --border-light: #e5e2da;
  --border-sage: rgba(41, 93, 91, 0.22);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 6px 20px rgba(41, 93, 91, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

a {
  color: var(--accent-sage-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-sage);
}

/* Header & Hero Area */
.hero-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.top-links {
  display: flex;
  gap: 0.5rem;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.btn-social:hover {
  background: var(--accent-sage);
  color: #ffffff;
  border-color: var(--accent-sage);
}

/* Hero Cover Photo */
.hero-image-container {
  position: relative;
  width: 100%;
  max-height: 360px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .hero-image {
    height: 360px;
  }
}

.hero-overlay-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-sage);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero-badge-item {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge-item i {
  color: var(--accent-sage);
}

.hero-intro-text {
  padding: 1.35rem 1.25rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-large {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.hero-intro-text h1 {
  font-size: 2.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.hero-intro-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* App-Like Icon Launcher Grid */
.app-grid-container {
  padding: 1rem 1.25rem 1.5rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.app-grid-title {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.app-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .app-icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.app-tile:hover {
  transform: translateY(-2px);
}

.app-tile:active {
  transform: scale(0.96);
}

.app-tile-icon {
  width: 62px;
  height: 62px;
  background: var(--accent-sage);
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(41, 93, 91, 0.28);
  transition: var(--transition);
}

.app-tile:hover .app-tile-icon {
  background: var(--accent-sage-dark);
}

.app-tile-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Sticky Search & Navigation Bar */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 0.5rem 0;
}

.nav-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-box-wrap {
  padding: 0 1.25rem;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  min-height: 40px;
  font-family: var(--font-body);
}

.search-input:focus {
  border-color: var(--accent-sage);
  background: #ffffff;
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Horizontal Scroll Bar */
.nav-menu-scroll {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.2rem 1.25rem 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-menu-scroll::-webkit-scrollbar {
  display: none;
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  flex-shrink: 0;
  transition: var(--transition);
  min-height: 34px;
}

.nav-chip i {
  color: var(--accent-sage);
  font-size: 0.8rem;
}

.nav-chip:hover, .nav-chip.active {
  background: var(--accent-sage);
  color: #ffffff;
  border-color: var(--accent-sage);
}

.nav-chip:hover i, .nav-chip.active i {
  color: #ffffff;
}

/* Main Content Container */
.main-layout {
  max-width: 850px;
  margin: 1.25rem auto 4rem;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Section Cards */
.section-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 130px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-light);
}

.section-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-sage-light);
  color: var(--accent-sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.section-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

/* Welcome Card */
.welcome-card {
  background: var(--accent-sage-light);
  border-left: 4px solid var(--accent-sage);
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Location Box */
.location-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.info-box {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.info-box h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
}

.info-box h4 i {
  color: var(--accent-sage);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

@media (min-width: 480px) {
  .btn-group {
    flex-direction: row;
  }
}

/* Alert Box */
.alert-box {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.alert-icon {
  color: #ca8a04;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-text {
  font-size: 0.88rem;
  color: #713f12;
}

/* Step Cards */
.key-step-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.step-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-sage);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.78rem;
}

/* Wi-Fi QR Code Box */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px dashed var(--border-sage);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin: 0.75rem 0;
  text-align: center;
}

.qr-code-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.4rem;
}

.qr-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Buttons */
.btn-copy, .btn-primary {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--accent-sage);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition);
  min-height: 44px;
  box-shadow: 0 3px 12px rgba(41, 93, 91, 0.22);
}

.btn-copy:hover, .btn-primary:hover {
  background: var(--accent-sage-dark);
  color: #ffffff;
}

.btn-secondary {
  padding: 0.7rem 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.88rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
}

.btn-secondary:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage-dark);
  background: var(--accent-sage-light);
}

/* Accordion Equipment Cards */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-header {
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background: var(--bg-surface);
  min-height: 48px;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.accordion-icon-badge {
  color: var(--accent-sage);
  font-size: 1.1rem;
  width: 22px;
}

.accordion-toggle {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
  color: var(--accent-sage);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.25s ease;
  padding: 0 1rem;
  background: var(--bg-main);
}

.accordion-item.active .accordion-body {
  max-height: 1400px;
  padding: 1rem 1rem 1.35rem;
  border-top: 1px solid var(--border-light);
}

.equipment-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0.65rem 0 0.85rem;
  border: 1px solid var(--border-light);
}

.accordion-body ul {
  list-style: none;
  margin-top: 0.4rem;
}

.accordion-body li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.accordion-body li::before {
  content: "•";
  color: var(--accent-sage);
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -4px;
}

/* Alexa Grid Cards */
.alexa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.alexa-cmd-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  cursor: pointer;
  min-height: 44px;
}

.alexa-cmd-card:hover {
  border-color: var(--accent-sage);
  background: var(--accent-sage-light);
}

.alexa-cmd-text {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.alexa-copy-icon {
  color: var(--accent-sage-dark);
  font-size: 0.8rem;
  background: rgba(41, 93, 91, 0.15);
  padding: 0.3rem;
  border-radius: 6px;
}

/* Personal Chef Gallery */
.chef-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0.75rem 0;
}

.chef-dish-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* Vendor & Cards Grid */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.85rem;
}

@media (min-width: 640px) {
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.vendor-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
}

.vendor-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.vendor-badge {
  display: inline-block;
  background: var(--accent-sage-light);
  color: var(--accent-sage-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vendor-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.vendor-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Category Filter Bar */
.filter-bar {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 0.4rem;
  margin-bottom: 0.85rem;
  -webkit-overflow-scrolling: touch;
}

.filter-btn {
  padding: 0.4rem 0.85rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-sage);
  color: #ffffff;
  border-color: var(--accent-sage);
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  z-index: 1000;
  background: var(--text-dark);
  color: #ffffff;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast-container.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 99;
  background: #25d366;
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Footer Logo & Text */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 2.2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 105px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.footer-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.footer-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}
