/* --------------------------
   Design tokens / variables
   -------------------------- */
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #0077b6;
  --accent-600: #0096c7;
  --radius: 12px;
  --gap: 1.25rem;

  --container: 1100px;
  --ff-sans: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --ff-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Basic reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Container */
.container {
  width: calc(100% - 2rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
  z-index: 50;
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.logo {
  font-family:var(--ff-heading);
  font-weight:700;
  letter-spacing: -0.5px;
  font-size:1.25rem;
}
.logo .accent { color:var(--accent); }

/* Nav */
.main-nav a {
  color:var(--text);
  text-decoration:none;
  margin-left:1rem;
  font-weight:600;
  padding:0.45rem 0.35rem;
  position:relative;
}
.main-nav a::after {
  content: "";
  position:absolute;
  left:0;
  bottom:-0.2rem;
  width:0%;
  height:2px;
  background:var(--accent);
  transition: width .25s ease;
}
.main-nav a:hover::after { width:100%; }

/* HERO */
.hero {
  min-height: 80vh;
  display: grid;
  place-items:center;
  text-align:center;
  color: white;
  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('https://www.orexca.com/img/uzbekistan/uzbekistan-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
}
.hero-inner { max-width: 900px; }
.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 .5rem;
  text-shadow: 0 6px 20px rgba(0,0,0,0.45);
}
.hero-sub {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  opacity: .95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight:600;
  border: 2px solid transparent;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn.primary {
  background: var(--accent);
  color: white;
}
.btn.ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(2,6,23,0.12); }

/* Section headings */
.section { padding: 4rem 0; }
.section-title {
  margin: 0 0 1.25rem;
  font-family: var(--ff-heading);
  font-size: 1.5rem;
}

/* Cards grid (Destinations) */
.cards {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  display:flex;
  flex-direction:column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,23,42,0.12);
}
.card-media {
  height: 170px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.card:hover .card-media { transform: scale(1.06); }
.card-body {
  padding: 1rem;
}

.card-body h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.card-cta { color: var(--accent); text-decoration:none; font-weight:600; }

/* About preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.about-media {
  height: 260px;
  border-radius: var(--radius);
  background-size: cover;
  background-position:center;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}
.about-body { padding: 0 0.5rem; }

/* Footer */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 2rem 0 3rem;
  margin-top: 2rem;
}
.footer-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.footer-links a { color: #cbd5e1; margin-left: .75rem; text-decoration:none; font-weight:600; }
.footer-links a:hover { text-decoration:underline; }
.copyright { text-align:center; color:#94a3b8; padding-top: 1rem; font-size: .9rem; }

/* Back-to-top */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width:44px;
  height:44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 24px rgba(2,6,23,0.12);
  transition: transform .18s;
}
.back-to-top:hover { transform: translateY(-4px); }

/* Small utilities */
.muted { color: var(--muted); font-size: .95rem; }
.more-link { text-align:center; margin-top:1rem; }

/* -----------------------
   Responsive rules
   ----------------------- */
@media (max-width: 900px) {
  .header-inner { padding: .5rem 0; }
  .about-grid { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; padding: 3rem 1rem; }
}
@media (max-width: 600px) {
  .main-nav a { margin-left: .5rem; font-size: .95rem; }
  .hero-title { font-size: 1.6rem; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: .75rem; text-align:center; }
}

/* -----------------------
   Simple entry animation
   (useful to demo animate w/ no JS)
   ----------------------- */
section { opacity: 0; transform: translateY(12px); animation: fadeUp .7s ease forwards; }
.hero { animation-delay: 0s; }
.section { animation-delay: .12s; }
.destinations { animation-delay: .18s; }
.about { animation-delay: .24s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* DESTINATIONS HTML PART */

/* Page Hero (smaller variant) */
.page-hero {
  height: 40vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: .4rem;
}

/* Filters (visual) */
.filters { text-align:center; }
.filter-bar {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: .75rem;
  margin-top:1rem;
}
.filter {
  background:#f3f4f6;
  border-radius: 20px;
  padding:.4rem 1rem;
  font-weight:600;
  cursor:pointer;
  transition: background .2s ease;
}
.filter:hover { background:#e0f2fe; }
.filter.active { background: var(--accent); color:white; }

/* Gallery */
.gallery-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: var(--gap);
  margin-top:1.5rem;
}
.gallery-item {
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:.5rem 1rem;
  background: rgba(0,0,0,0.45);
  color:white;
  font-weight:600;
}

/* Trip highlights */
.trip {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:1.5rem;
  margin-bottom:3rem;
  align-items:center;
}
.trip.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.trip.reverse .trip-body { direction: ltr; }
.trip-media {
  height:300px;
  background-size:cover;
  background-position:center;
  border-radius: var(--radius);
}
.trip-body h3 {
  font-family: var(--ff-heading);
  margin-top:0;
}
.trip-body .price {
  font-weight:700;
  color: var(--accent);
  font-size:1.1rem;
}

/* Testimonials */
.testimonials {
  background:#f9fafb;
  text-align:center;
}
.testimonial-strip {
  display:flex;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  gap:1.5rem;
  padding:1rem 0;
}
.testimonial-strip blockquote {
  background:white;
  border-radius:var(--radius);
  padding:1.5rem;
  min-width:240px;
  scroll-snap-align:start;
  box-shadow:0 8px 18px rgba(15,23,42,0.06);
  font-style:italic;
}
.testimonial-strip cite {
  display:block;
  margin-top:.75rem;
  font-weight:600;
  font-style:normal;
  color:var(--muted);
}

/* Responsive for trips */
@media (max-width:800px){
  .trip, .trip.reverse { grid-template-columns:1fr; direction:ltr; }
  .trip-media { height:200px; }
}


/* ABOUT PAGE PART */

/* Mission Section */
.mission {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
}
.mission-text { flex: 1; }
.mission-image { flex: 1; }
.mission-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
  background: #f9fafb;
  padding: 3rem 0;
  text-align: center;
}
.values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); }

/* Team Section */
.team {
  padding: 3rem 0;
  text-align: center;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.team-card {
  width: 220px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.team-card img {
  width: 100%;
  border-radius: var(--radius);
}
.team-card:hover { transform: translateY(-5px); }

@media (max-width: 768px) {
  .mission { flex-direction: column; }
}


/* CONTACT PAGE PART */

/* Contact Info */
.contact-info {
  padding: 3rem 0;
  text-align: center;
}
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-card {
  background: #fff;
  width: 250px;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); }

/* Contact Form */
.contact-form-section {
  background: #f9fafb;
  padding: 4rem 0;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.form-wrapper { flex: 1; }
.form-image { flex: 1; }
.form-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover { background: #0059b3; }

@media (max-width: 768px) {
  .contact-flex { flex-direction: column; }
}

