/*
Theme Name: Axtrova Theme
Theme URI: https://axtrova.com 
Description: A professional WordPress theme for Axtrova's shipping coordination system.
Author: Karriem
Author URI: https://yourwebsite.com 
Version: 1.0
License: MIT
Text Domain: axtrova-theme
*/

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: #fbbf24; /* Gold accent */
}

h1, h2, h3 {
  color: #111827; /* Dark blue */
}

/* Header */
.navbar {
  background: #111827;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar a {
  color: white;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #fbbf24;
}

.logo img {
  height: 50px;
  margin-right: 12px;
}

/* Hero Section */
.hero {
  background-image: url('/assets/images/final_hero_image_1920x1000.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 40px;
  text-align: center;
}

.hero .button {
  background: #fbbf24;
  color: #000;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  display: inline-block;
  margin-top: 30px;
  transition: background 0.3s ease;
}

.hero .button:hover {
  background: #f59e0b;
}

/* Sections */
section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* Footer */
footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 40px 20px;
}