/*
Theme Name: Kili Lemosho
Theme URI: https://kilimanjarolemoshoroute.com
Author: Moaz
Description: A lightweight, one‑page WordPress theme for Kilimanjaro Lemosho Route. Built for SEO, speed and lead generation. Uses semantic HTML, minimal CSS and no page builders.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
*/

:root {
  --primary: #003f5f;
  --accent: #f4a261;
  --background: #f9f9f9;
  --text: #2c3e50;
  --muted: #7f8c8d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #fff;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

header nav ul li a:hover {
  color: var(--accent);
}

.hero {
  /* Use the theme’s hero image. The relative path assumes style.css is in the theme root and assets is a subfolder. */
  background: url('assets/hero.jpg') center/cover no-repeat;
  padding: 6rem 1rem;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1rem;
}

.hero .cta-buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
}

.hero .btn-primary {
  background: var(--accent);
  color: #fff;
}

.hero .btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}

section {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

section h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: var(--primary);
}

.table-comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table-comparison th, .table-comparison td {
  padding: 0.75rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.table-comparison th {
  background: var(--primary);
  color: #fff;
}

.table-comparison tbody tr:nth-child(even) {
  background: #f0f4f8;
}

.footer {
  background: var(--primary);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.form-section form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Success and error messages shown after form submission */
.success-message {
  color: green;
  margin-top: 1rem;
  font-weight: 600;
}

.error-message {
  color: red;
  margin-top: 1rem;
  font-weight: 600;
}

/* Small link list in hero section */
.small-links {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #fff;
}
.small-links a {
  color: #fff;
  text-decoration: underline;
  margin-right: 0.5rem;
}

.form-section label {
  width: 100%;
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}

.form-section button:hover {
  background: #e59848;
}

.details-summary summary {
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
}

.details-summary {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  background: #fff;
}

.details-summary p, .details-summary ul {
  margin-top: 0.5rem;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.success-message {
  color: #2e7d32;
  margin-top: 1rem;
}

.error-message {
  color: #c62828;
  margin-top: 1rem;
}