/* ==================================================
   Go Mile Trip – Replit-style Exact UI CSS
   Version: Replit Match v1
================================================== */
 
/* ---------- ROOT / COLORS ---------- */
:root {
  --primary: #0aa6a6;
  --primary-dark: #078c8c;
  --navy: #0b2d2f;
  --dark: #1e2933;
  --light: #ffffff;
  --gray-bg: #f5f9fb;
  --card-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
 
/* ---------- GLOBAL ---------- */
body {
  background: var(--gray-bg);
  color: var(--dark);
}
 
.container {
  max-width: 1200px;
}
 
/* ---------- HEADER (MATCH REPLIT) ---------- */
.site-header {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 100;
}
 
.site-header .logo a {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
 
.nav-menu {
  gap: 30px;
}
 
.nav-menu li a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}
 
.header-cta .btn {
  background: var(--primary);
  border-radius: 30px;
  padding: 10px 26px;
}
 
/* ---------- HERO (EXACT REPLIT STYLE) ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
}
 
.hero::after {
  background: linear-gradient(
    to bottom,
    rgba(11,45,47,0.55),
    rgba(11,45,47,0.85)
  );
}
 
.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}
 
.hero-content p {
  font-size: 20px;
  margin-top: 20px;
  opacity: 0.95;
}
 
.hero-content .btn {
  margin-top: 30px;
  padding: 16px 38px;
  border-radius: 40px;
  font-size: 16px;
}
 
/* ---------- SECTION ---------- */
.section {
  padding: 90px 0;
}
 
.section-title {
  font-size: 38px;
  font-weight: 700;
}
 
/* ---------- CARD GRID (HOTELS / TOURS) ---------- */
.card-grid {
  gap: 40px;
}
 
.card {
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  transition: 0.4s ease;
}
 
.card:hover {
  transform: translateY(-8px);
}
 
.card img {
  height: 220px;
  object-fit: cover;
}
 
.card-body {
  padding: 26px;
}
 
.card-body h3 {
  font-size: 22px;
}
 
.card-body .btn {
  margin-top: 15px;
  border-radius: 25px;
}
 
/* ---------- FORMS (REPLIT LOOK) ---------- */
form input,
form textarea {
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 14px 20px;
}
 
form textarea {
  border-radius: 20px;
}
 
form button.btn {
  border-radius: 30px;
  font-size: 16px;
}
 
/* ---------- SINGLE PAGES ---------- */
.single .card img {
  height: 420px;
}
 
.single h1 {
  font-size: 36px;
}
 
/* ---------- FOOTER ---------- */
.site-footer {
  background: #071b1c;
  padding: 60px 0;
}
 
.site-footer p {
  letter-spacing: 0.5px;
}
 
/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 40px;
  }
}
 
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
 
  .hero {
    min-height: 80vh;
  }
}
