/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script:wght@400&family=Inder:wght@400&display=swap');

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #000000;
  --card: #ffffff;
  --border: #e5e7eb;
  --primary: #000;
  --primary-600: #333;
}
.dark {
  --bg: #0b0f14;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --card: #0f1520;
  --border: #1f2937;
  --primary: #22c55e;
  --primary-600: #16a34a;
}
* { box-sizing: border-box; font-family: 'Inder', sans-serif !important; }
body { font-family: 'Inder', sans-serif !important; margin: 0; background: var(--bg); color: var(--text); }
header { position: sticky; top: 0; z-index: 10; background: var(--bg); border-bottom: 1px solid var(--border); display:flex; gap:12px; align-items:center; padding: 12px 16px; font-family: 'Inder', sans-serif !important; }
main { padding: 16px; max-width: 1100px; margin: 0 auto; font-family: 'Inder', sans-serif !important; }
.hero {
  background: #fff;
  color: #1a1a1a;
  padding: 48px 24px;
  border-radius: 20px;
  border: 5px solid #74ade6;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  font-family: 'Inder', sans-serif !important;
}
.hero h2 { margin: 0 0 12px 0; font-size: 32px; font-weight: 700; font-family: 'Inder', sans-serif !important; }
.hero-label { display: flex; flex-direction: column; font-family: 'Inder', sans-serif !important; }
.hero-sub { opacity: 0.95; margin-bottom: 24px; font-size: 16px; font-family: 'Inder', sans-serif !important; }
.hero-button {grid-column: 1 / 2; display: flex; justify-content: flex-start; margin-top: 8px;}
.search-bar { 
  background: rgba(255,255,255,0.15); 
  color: var(--text); 
  border: none; 
  border-radius: 16px; 
  padding: 20px; 
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  font-family: 'Inder', sans-serif !important;
}
.search-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 12px; align-items: center; font-family: 'Inder', sans-serif !important; }
.search-grid input, .search-grid select { height: 48px; border-radius: 12px; border: 2px solid var(--border); transition: all 0.3s ease; font-family: 'Inder', sans-serif !important; }
.search-grid input:focus, .search-grid select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1); }
.muted { color: var(--muted); font-size: 14px; margin-bottom: 4px; font-family: 'Inder', sans-serif !important; }
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  font-family: 'Inder', sans-serif !important;
}
nav a,
.toolbar a {
  margin-left: 12px;
  margin-right: 12px;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inder', sans-serif !important;
}
nav a:last-child,
.toolbar a:last-child {
  margin-right: 0;
}
nav a:hover,
.toolbar a:hover {
  text-decoration: underline;
}
nav a.active,
.toolbar a.active {
  color: var(--primary);
  font-weight: 600;
}
nav a.current,
.toolbar a.current {
  background: var(--primary);
  color: white;
  border-radius: 4px;
  padding: 4px 8px;
  text-decoration: none;
}
.card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 24px; 
  margin: 16px 0; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  font-family: 'Inder', sans-serif !important;
}
.card:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.row { display:flex; gap:8px; flex-wrap:wrap; align-items: center; font-family: 'Inder', sans-serif !important; }
input, select { padding: 8px 10px; background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 8px; font-family: 'Inder', sans-serif !important; }
button { 
  padding: 10px 16px; 
  border-radius: 12px; 
  border: 2px solid var(--border); 
  background: var(--card); 
  color: var(--text); 
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Inder', sans-serif !important;
}
button:hover { 
  border-color: var(--primary); 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-primary { 
  background: #000; 
  color: #fff; 
  border-color: #fff;
  font-family: 'Inder', sans-serif !important;
}
.btn-primary:hover { 
  background: #222; 
  transform: translateY(-1px);
}
.btn-plan { 
  background: #5c94cc; 
  color: #000000; 
  font-family: 'Inder', sans-serif !important;
}
.btn-plan:hover { 
  background: #74ade6; 
}
.hidden { display:none; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; font-family: 'Inder', sans-serif !important; }
.slot-card h4 { margin: 0 0 8px 0; font-size: 16px; font-family: 'Inder', sans-serif !important; }
.slot-header { display:flex; justify-content: space-between; align-items:center; cursor: pointer; font-family: 'Inder', sans-serif !important; }
.chip { padding: 2px 8px; border-radius: 999px; border: 1px solid var(--border); font-size: 12px; color: var(--muted); background: #000; color: #fff; font-family: 'Inder', sans-serif !important; }
.qa-progress { width: 100%; height: 8px; background: rgba(255,255,255,0.3); border-radius: 999px; overflow: hidden; }
.qa-progress > div { height: 100%; background: #fff; width: 0%; transition: width 200ms ease; }
.toolbar { margin-left:auto; display:flex; gap:8px; align-items:center; font-family: 'Inder', sans-serif !important; }
.switch { display:inline-flex; align-items:center; gap:6px; font-family: 'Inder', sans-serif !important; }
.range-wrap { display:flex; flex-direction:column; gap:6px; font-family: 'Inder', sans-serif !important; }
.range-row { display:flex; align-items:center; gap:8px; font-family: 'Inder', sans-serif !important; }
.range-row output { min-width: 64px; text-align: right; font-family: 'Inder', sans-serif !important; }
input[type=range] { -webkit-appearance: none; width: 180px; height: 4px; background: var(--border); border-radius: 999px; outline: none; font-family: 'Inder', sans-serif !important; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); cursor: pointer; border: none; }
input[type=range]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--primary); cursor: pointer; border: none; }
.qa-choice-btn {
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inder', sans-serif !important;
  font-weight: 500;
  text-align: left;
  width: 100%;
  margin-bottom: 8px;
}
.qa-choice-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.qa-choice-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.choice-selected { 
  outline: 2px solid #86ACE1 !important; 
  background: rgba(134, 172, 225, 0.2) !important;
  border-color: #86ACE1 !important;
  color: #86ACE1 !important;
  font-weight: 600 !important;
}
#qaStatus { color: rgba(255,255,255,0.9); font-size: 12px; margin-top: 6px; min-height: 16px; font-family: 'Inder', sans-serif !important; }

/* 響應式設計 */
@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    font-family: 'Inder', sans-serif !important;
  }
  .weather-content {
    grid-template-columns: 1fr;
    gap: 16px;
    font-family: 'Inder', sans-serif !important;
  }
  .slot-container {
    flex-direction: column;
    font-family: 'Inder', sans-serif !important;
  }
  .slot-list {
    width: 100%;
    font-family: 'Inder', sans-serif !important;
  }
}

/* 隱藏類別 */
.section-hidden { display: none !important; }

/* Card stack UI */
.stack { position: relative; width: 320px; height: 460px; margin: 0 auto; font-family: 'Inder', sans-serif !important; }
.card-item { position: absolute; inset: 0; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,0.25); transform-origin: bottom center; transition: transform 180ms ease, opacity 180ms ease; font-family: 'Inder', sans-serif !important; }
.card-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.card-label { position: absolute; left: 12px; bottom: 120px; right: 12px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6); font-weight: 600; font-size: 16px; display: block; font-family: 'Inder', sans-serif !important; }
.card-intro { position: absolute; left: 12px; bottom: 60px; right: 12px; color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.6); font-size: 12px; line-height: 1.3; display: block; font-family: 'Inder', sans-serif !important; }
.card-toolbar { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 12px; padding: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Inder', sans-serif !important; }
.pill { border-radius: 999px; border: 1px solid var(--border); padding: 4px 8px; background: var(--card); font-size: 12px; font-family: 'Inder', sans-serif !important; }
.toolbar-spacer { flex: 1; }
.round-btn { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--card); cursor: pointer; font-family: 'Inder', sans-serif !important; }
#voiceOverviewBtn { background: #000 !important; color: #fff !important; }
#googleMapsBtn, #googleCalendarBtn { background: #fff !important; color: #000 !important; }
.round-btn.reject { 
  color: #ef4444; 
  background: #fde8e8; /* 淡紅色背景，與文字顏色相近但對比明顯 */
  font-weight: bold;
  transition: background-color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.round-btn.reject:hover {
  background: #fff0f0; /* 懸停時更淡的紅色背景 */
}
.round-btn.again { 
  color: #ffb300; /* 金色，作為主題黃色 */
  background: #FFF8E1; /* 淡黃色背景，與文字顏色相近但對比明顯 */
  font-weight: bold;
  transition: background-color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.round-btn.again:hover {
  background: #FFFBF5; /* 懸停時更淡的黃色背景 */
}
.round-btn.accept { 
  color: #22c55e; 
  background: #e6f9ed; /* 原本就有，已符合需求 */
  font-weight: bold;
  transition: background-color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.round-btn.accept:hover {
  background: #f0fff5; /* 懸停時更淡的綠色背景 */
}
.round-btn.info { 
  color: #3b82f6; 
  background: #e6f0fd; /* 淡藍色背景，與文字顏色相近但對比明顯 */
  font-weight: bold;
  transition: background-color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.round-btn.info:hover {
  background: #f0f8ff; /* 懸停時更淡的藍色背景 */
}
.round-btn.book { 
  color: #fd7e14; 
  background: #fff3e0;
  font-weight: bold;
  transition: background-color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.round-btn.book:hover {
  background: #fff8f0;
}
.round-btn.hotel { 
  color: #dc3545; 
  background: #ffeaea;
  font-weight: bold;
  transition: background-color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.round-btn.hotel:hover {
  background: #fff5f5;
}
/* 新增樣式 */
.quick-locations {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
  font-family: 'Inder', sans-serif !important;
}
.location-chip {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Inder', sans-serif !important;
}
.location-chip:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.plan-info {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inder', sans-serif !important;
}

/* 天氣卡片樣式 */
.weather-card {
  /* Acts as the bottom background for .weather-info and .weather-advice */
  position: relative;
  background: url('image/weather.png') center center/cover no-repeat;
  color: #ffffff;
  border: none;
  font-family: 'Inder', sans-serif !important;
  padding: 0; /* Remove default padding if any */
  overflow: hidden;
}
.weather-header h3 {
  margin: 0 0 8px 0;
  font-size: 36px;
  font-weight: 500;
  margin-top: 16px;
  margin-left: 16px;
  font-family: 'Inder', sans-serif !important;
}
.weather-info {
  background: rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 500px;
  max-width: 90vw;
  margin-top: 16px;
  margin-bottom: 16px; /* Reduce bottom margin to stack closely with .weather-advice */
  margin-left: 16px;
  display: block;
  /* Remove float and clear to allow normal document flow */
}

.weather-advice {
  background: rgba(192, 192, 192, 0.3);
  border-radius: 12px;
  padding: 16px;
  width: 500px;
  max-width: 90vw;
  margin-top: 0;
  margin-bottom: 16px;
  margin-left: 16px;
  margin-right: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.weather-date {
  opacity: 0.8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-left: 32px;
  font-family: 'Inder', sans-serif !important;
}
.weather-status {
  position: absolute;
  top: 7px;
  right: 16px;
  color: #b1afaf;
  opacity: 1;
  font-size: 14px;
  font-family: 'Inder', sans-serif !important;
  margin: 8px 12px 0 0;
}
.weather-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-top: 20px;
  margin-right: 32px;
  font-family: 'Inder', sans-serif !important;
}
.weather-main {
  text-align: center;
  font-family: 'Inder', sans-serif !important;
}
.weather-temp {
  font-size: 125px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Inder', sans-serif !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.weather-desc {
  font-size: 18px;
  opacity: 0.9;
  font-family: 'Inder', sans-serif !important;
}

.advice-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
  font-family: 'Inder', sans-serif !important;
}
.advice-content {
  opacity: 0.95;
  line-height: 1.5;
  font-family: 'Inder', sans-serif !important;
}
.advice-button {
  margin-top: 16px;
  font-family: 'Inder', sans-serif !important;
  text-align: right;
}

/* Q&A 卡片樣式 */
.qa-card {
  background: #fff;
  color: #1a1a1a;
  padding: 48px 24px;
  border-radius: 20px;
  border: 5px solid #74ade6;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  font-family: 'Inder', sans-serif !important;
}
.qa-card h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Inder', sans-serif !important;
}
.qa-subtitle {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: 'Inder', sans-serif !important;
}
.qa-card .card {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  backdrop-filter: blur(10px);
  font-family: 'Inder', sans-serif !important;
}
.qa-card button,
.weather-card button {
  background: #ffffff;
  border: 1px solid #A4C9D8;
  color: #000000;
  font-family: 'Inder', sans-serif !important;
}
.qa-card button:hover,
.weather-card button:hover,
.itinerary-card button:hover {
  background: #d2e4eb;
  border-color: #5fa9c4;
}
.qa-card .btn-primary,
.weather-card .btn-primary,
.itinerary-card .btn-primary {
  float: right;
  background: #ffffff;
  border: 1px solid #A4C9D8;
  color: var(--text);
  font-family: 'Inder', sans-serif !important;
}

/* 行程卡片樣式 */
.itinerary-card {
  background: #fff;
  color: #1a1a1a;
  padding: 48px 24px;
  border-radius: 20px;
  border: 5px solid #74ade6;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  font-family: 'Inder', sans-serif !important;
}
.itinerary-card h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Inder', sans-serif !important;
}
.itinerary-subtitle {
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: 'Inder', sans-serif !important;
}
.day-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'Inder', sans-serif !important;
}
.complete-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(198, 228, 194, 0.9);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'Inder', sans-serif !important;
}
.complete-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}
.day-tab {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inder', sans-serif !important;
}
.day-tab.active {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  outline: 2px solid #fff;
  outline-offset: 2px;
  font-family: 'Inder', sans-serif !important;
}
.day-tab:hover {
  background: rgba(255,255,255,0.3);
}

.slot-container { display:flex; gap:20px; align-items:flex-start; font-family: 'Inder', sans-serif !important; }
.slot-list { width: 280px; font-family: 'Inder', sans-serif !important; }
.slot-list .slot-item { 
  display:flex; 
  align-items:center; 
  gap:8px; 
  padding:12px 16px; 
  border-left: 4px solid transparent;
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Inder', sans-serif !important;
}
.slot-list .slot-item:hover {
  background: rgba(255,255,255,0.2);
}
.slot-list .slot-item.selected { 
  border-left-color: #7a7a7a; 
  background: rgba(255,255,255,0.25);
}
.slot-list .slot-item.focused {
  border: 2px solid #7a7a7a;
  font-weight: 600;
}

/* AI Agent */
.ai-agent {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  font-family: 'Inder', sans-serif !important;
}
.ai-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.ai-agent:hover {
  transform: scale(1.1);
}

/* Chat Room */
.chat-room {
  position: absolute;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 400px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  z-index: 99;
  font-family: 'Inder', sans-serif !important;
}
.chat-room.hidden {
  display: none !important;
}
.chat-header {
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inder', sans-serif !important;
}
.chat-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: rgba(255,0,0,.5);
  padding: 4px;
  transition: color 0.2s ease;
  font-family: 'Inder', sans-serif !important;
}
.chat-close:hover {
  color: rgba(255,0,0,1);
}
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Inder', sans-serif !important;
}
.message {
  max-width: 80%;
  font-family: 'Inder', sans-serif !important;
}
.ai-message {
  align-self: flex-start;
  font-family: 'Inder', sans-serif !important;
}
.user-message {
  align-self: flex-end;
  font-family: 'Inder', sans-serif !important;
}
.message-content {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  font-family: 'Inder', sans-serif !important;
}
.ai-message .message-content {
  background: rgba(167, 139, 250, 0.2);
  color: var(--text);
  font-family: 'Inder', sans-serif !important;
}
.ai-message.typing .message-content {
  font-family: 'Inder', sans-serif !important;
}
.thinking-message .message-content {
  color: #6b46c1;
  font-style: italic;
  font-size: 12px;
  font-family: 'Inder', sans-serif !important;
}
.user-message .message-content {
  background: var(--primary);
  color: #fff;
  font-family: 'Inder', sans-serif !important;
}
.chat-input {
  padding: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  font-family: 'Inder', sans-serif !important;
}
.chat-input textarea {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.479);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.5);
  color: var(--text);
  resize: none;
  font-size: 14px;
  font-family: 'Inder', sans-serif !important;
}
.chat-input button {
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.479);
  align-self: center;
  font-family: 'Inder', sans-serif !important;
}

/* welcome Section */
.welcome {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.welcome-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Handwriting style for .welcome-text h1 */
.welcome-text h1 {
  font-family: 'Kaushan Script', cursive !important;
  font-style: normal;
  font-size: 2.7rem;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.welcome-description {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.6;
  max-width: 500px;
  text-align: justify;
}

.start-plan-btn {
  background-color: #4a5568;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  width: fit-content;
  transition: background-color 0.2s ease;
}

.start-plan-btn:hover {
  background-color: #2d3748;
}

.welcome-graphic {
  display: flex;
  justify-content: left;
  align-items: center;
}

.plane-image {
  max-width: 400px;
  height: auto;
  object-fit: contain;
}