/*
Theme Name: Go Mile Trip
Theme URI: https://gomiletrip.com
Author: Go Mile Trip
Author URI: https://gomiletrip.com
Description: Professional Travel Booking WordPress Theme (Hotels, Tours, Flights – Inquiry Based)
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gomiletrip
*/
 
/* --------------------
   RESET & BASE
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f9fbfc;
  color: #2b2b2b;
  line-height: 1.6;
}
 
img {
  max-width: 100%;
  height: auto;
}
 
a {
  color: #0aa6a6;
  text-decoration: none;
}
 
a:hover {
  color: #078c8c;
}
 
/* --------------------
   COLORS (LOCKED)
-------------------- */
:root {
  --primary: #0aa6a6;        /* Ocean Teal */
  --primary-dark: #078c8c;
  --navy: #0b2d2f;
  --dark: #1f2933;
  --light: #ffffff;
  --gray: #f1f5f9;
}
 
/* --------------------
   LAYOUT
-------------------- */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
 
/* --------------------
   HEADER
-------------------- */
.site-header {
  background: var(--navy);
  padding: 15px 0;
}
 
.site-header .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
}
 
.site-header nav a {
  color: var(--light);
  margin-left: 20px;
  font-weight: 500;
}
 
.site-header nav a:hover {
  color: var(--primary);
}
 
/* --------------------
   HERO SECTION
-------------------- */
.hero {
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  position: relative;
  color: #fff;
  text-align: center;
}
 
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11,45,47,0.75),
    rgba(11,45,47,0.75)
  );
}
 
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}
 
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}
 
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
 
/* --------------------
   BUTTONS
-------------------- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s ease;
}
 
.btn:hover {
  background: var(--primary-dark);
}
 
/* --------------------
   SECTIONS
-------------------- */
.section {
  padding: 70px 0;
}
 
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--dark);
}
 
/* --------------------
   CARDS (Hotels / Tours)
-------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
 
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
 
.card-body {
  padding: 20px;
}
 
.card h3 {
  margin-bottom: 10px;
}
 
/* --------------------
   FORMS
-------------------- */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
 
form button {
  border: none;
  cursor: pointer;
}
 
/* --------------------
   FOOTER
-------------------- */
.site-footer {
  background: #081f20;
  color: #cfd8dc;
  padding: 40px 0;
  text-align: center;
}
 
.site-footer p {
  font-size: 14px;
}
 
/* --------------------
   RESPONSIVE
-------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }
 
  .site-header nav a {
    margin-left: 10px;
  }
}
