/*!
Theme Name: EuroPet Express
Theme URI: https://europetexpress.co.uk
Author: EuroPet Express
Author URI: https://europetexpress.co.uk
Description: Professional pet transportation and rescue services WordPress theme
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: europet-theme
Domain Path: /languages

All files, unless otherwise stated, are released under the GPL2 license:
You can use this theme commercially and privately, but it comes without any warranty.
*/

:root {
  --navy: #0A1628;
  --gold: #C9A84C;
  --gold-hover: #b8960c;
  --gold-light: #f0d080;
  --text-dark: #0a0e1a;
  --text-light: #ffffff;
  --border-radius: 8px;
  --navbar-height: 107px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--navy);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--text-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--text-dark);
}

.btn-dark {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: var(--gold);
  color: var(--text-dark);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-family: inherit;
  margin-bottom: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="submit"],
button[type="submit"] {
  background-color: var(--gold);
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: var(--gold-hover);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-dark {
  color: var(--text-dark);
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 0;
  }
}
