/*
Theme Name: Tour Travel Custom
Theme URI: https://example.com
Author: Ashif
Author URI: https://example.com
Description: Custom WordPress theme for a Tour & Travels business. Built section by section.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: tourtravel
*/

/* =========================================================
   BRAND VARIABLES — Navy / Black / White
   ========================================================= */
:root {
  --color-navy: #0B1F3A;
  --color-navy-light: #16305A;
  --color-navy-dark: #071427;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-gray-light: #F4F5F7;
  --color-gray: #6B7280;
  --color-gray-border: #E2E4E9;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container-width: 1200px;
  --transition: all 0.25s ease;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.25;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--color-gray);
  max-width: 600px;
  margin-bottom: 48px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--color-navy);
}
