/*
Theme Name: Ride Africa Theme
Theme URI: http://example.com/
Author: Generated by ChatGPT
Author URI: http://example.com/
Description: Hero-style WordPress theme with static background and placeholder assets inspired by the Ride Africa page.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ride-africa-theme
*/

:root {
  --accent: #ff6f3c;
  --bg: #f7f5f0;
  --dark: #192126;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--bg) url('assets/map-bg-placeholder.svg') center/cover no-repeat fixed;
  color: var(--dark);
}

header {
  width: 100%;
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  position: relative;
  text-align: left;
  padding: 120px 10%;
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.hero h1 {
  font-size: 80px;
  color: var(--accent);
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.hero p {
  max-width: 700px;
  line-height: 1.8;
  font-size: 18px;
  color: #444;
}

.hero .cta {
  margin-top: 40px;
}

.hero .cta a {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
}

.hero .cta a:hover {
  background: #000;
}

.africa-shape {
  position: absolute;
  top: 50px;
  right: 10%;
  width: 40%;
  max-width: 500px;
  height: auto;
  background: url('assets/africa-shape-placeholder.svg') center/contain no-repeat;
}

footer {
  padding: 40px 80px;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 48px;
  }
  .africa-shape {
    position: relative;
    width: 100%;
    max-width: none;
    height: 300px;
    margin-top: 60px;
  }
}
