/* =============================================================================
   Guide2Travels — brand layer
   Loaded last (after the Bahon template files) so these rules win the cascade
   without editing the vendor CSS. Fonts are loaded via <link> in generate.py
   head() — see the Google Fonts <link> tags right before this stylesheet.

   TYPE SYSTEM
     display : "Fraunces"  (headings, card/article titles, widget titles, logo)
     body/UI : "Inter"     (paragraphs, nav, buttons, meta, tags, breadcrumbs)

   COLOR TOKENS
     --color-navy      #252e45  ink / dark surfaces (inherited from template)
     --color-saffron   #ff6600  primary accent, CTAs (inherited from template)
     --color-pine      #2f5233  secondary accent — tea gardens & monastery greens
     --color-marigold  #d1a13d  tertiary accent — temple gold / brass
     --color-paper     #faf7f1  warm parchment surface for cards & sidebar
     --color-slate     #5c6472  accessible neutral for secondary/meta text

   ============================================================================= */

:root {
  --color-navy: #252e45;
  --color-saffron: #ff6600;
  --color-pine: #2f5233;
  --color-marigold: #d1a13d;
  --color-paper: #faf7f1;
  --color-slate: #5c6472;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* -----------------------------------------------------------------------
   Base typography
   ----------------------------------------------------------------------- */
body,
p {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
}

/* UI chrome stays on the body font even where the vendor CSS set Poppins. */
.btn,
.main-menu ul li a,
.page-breadcrumb .breadcrumb-item,
.slider-content p {
  font-family: var(--font-body);
}

a, button, input, textarea {
  font-family: var(--font-body);
}

::selection {
  background: var(--color-pine);
  color: #ffffff;
}

/* -----------------------------------------------------------------------
   Accessibility
   ----------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-pine);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------------------------
   Logo
   ----------------------------------------------------------------------- */
.logo .text-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.logo .text-logo i {
  color: var(--color-saffron);
  margin-right: 8px;
}

.logo .text-logo:hover {
  color: #ffffff;
}

/* -----------------------------------------------------------------------
   Header / nav
   ----------------------------------------------------------------------- */
.header-bottom {
  padding: 14px 0;
}

.main-menu ul li a {
  letter-spacing: 0.03em;
}

/* -----------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------- */
.single-slider {
  background-color: var(--color-navy);
}

.single-slider::before {
  background: linear-gradient(
    100deg,
    rgba(37, 46, 69, 0.85) 0%,
    rgba(37, 46, 69, 0.55) 45%,
    rgba(37, 46, 69, 0.2) 100%
  );
}

.slider-content h1 {
  text-transform: none;
  max-width: 16ch;
}

.slider-content p {
  max-width: 46ch;
}

/* -----------------------------------------------------------------------
   Section titles — small uppercase kicker
   ----------------------------------------------------------------------- */
.sec-title .eyebrow,
.about-text .eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-pine);
  margin-bottom: 10px;
}

.sec-title h2 {
  font-size: 42px;
  margin-bottom: 4px;
}

.sec-title p {
  color: var(--color-slate);
}

.about-text h3 {
  text-transform: none;
  font-size: 30px;
}

/* -----------------------------------------------------------------------
   Destination cards (homepage "Popular Destinations")
   ----------------------------------------------------------------------- */
.things-img {
  border-radius: 10px;
  overflow: hidden;
  height: 340px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.things-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .things-img {
    height: 240px;
  }
}

.things-img::before {
  background: linear-gradient(
    180deg,
    rgba(37, 46, 69, 0.1) 0%,
    rgba(37, 46, 69, 0.75) 100%
  );
}

.things-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(37, 46, 69, 0.22);
}

.things-content h4 {
  font-size: 21px;
}

/* -----------------------------------------------------------------------
   Blog cards (blog index, homepage "Latest Guides")
   ----------------------------------------------------------------------- */
.single-blog {
  border-radius: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .blog-thumb {
    height: 240px;
  }
}

.blog-thumb::after {
  background: linear-gradient(
    180deg,
    rgba(37, 46, 69, 0.05) 0%,
    rgba(37, 46, 69, 0.82) 100%
  );
}

.single-blog:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(37, 46, 69, 0.18);
}

.blog-content h2 {
  font-size: 25px;
  line-height: 32px;
  color: #ffffff;
  margin-bottom: 9px;
}

.blog-content h2:hover {
  color: var(--color-saffron);
}

.blog-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* -----------------------------------------------------------------------
   Page-title banners (every inner page + article hero)
   ----------------------------------------------------------------------- */
.page-title-inner {
  background-color: var(--color-navy);
}

.page-title-inner::before {
  background: linear-gradient(
    180deg,
    rgba(37, 46, 69, 0.55) 0%,
    rgba(37, 46, 69, 0.78) 100%
  );
}

.page-breadcrumb h1 {
  font-size: 30px;
  letter-spacing: 0.01em;
}

.page-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.page-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-saffron);
}

/* -----------------------------------------------------------------------
   Article page — hero image, byline, tags
   ----------------------------------------------------------------------- */
.blog-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(37, 46, 69, 0.12);
}

.author-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid var(--color-paper);
}

.meta-date {
  position: relative;
  margin-left: 18px;
  padding-left: 16px;
  color: var(--color-slate);
}

.meta-date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-marigold);
}

.blog-text h4 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 21px;
  color: var(--color-navy);
}

.blog-text p {
  color: var(--color-navy);
}

.faq-block h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.faq-item {
  padding: 18px 0;
  border-top: 1px solid rgba(37, 46, 69, 0.1);
}

.faq-item:last-child {
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.faq-item p {
  color: var(--color-slate);
  margin-bottom: 0;
}

.sidebar-tags span {
  display: inline-block;
  height: 32px;
  line-height: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0 16px;
  margin-bottom: 12px;
  margin-right: 10px;
  background-color: transparent;
  border: 1px solid var(--color-pine);
  border-radius: 5px;
  color: var(--color-pine);
}

/* -----------------------------------------------------------------------
   Sidebar widgets (AUTHOR / RECENT POSTS)
   ----------------------------------------------------------------------- */
.sidebar-widget {
  position: relative;
  overflow: hidden;
  background: var(--color-paper);
  border: 1px solid rgba(37, 46, 69, 0.08);
  border-radius: 12px;
  padding: 30px 26px 26px;
  box-shadow: 0 10px 30px rgba(37, 46, 69, 0.06);
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 10px rgba(37, 46, 69, 0.15);
}

.sidebar-widget .sidebar-widget-content .rc-post ul li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(37, 46, 69, 0.1);
}

.sidebar-widget .sidebar-widget-content .rc-post ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-widget .sidebar-widget-content .rc-post ul li .single-rc-post .rc-content .rc-meta span {
  color: var(--color-pine);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sidebar-widget .sidebar-widget-content .rc-post ul li .single-rc-post .rc-content h6 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 4px;
}

/* -----------------------------------------------------------------------
   About page author photo
   ----------------------------------------------------------------------- */
.author-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(37, 46, 69, 0.15);
}

/* -----------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */
.footer-area {
  position: relative;
  background: var(--color-navy);
}

.footer-area .footer-title h3 {
  color: #ffffff;
  font-size: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-area .footer-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--color-saffron);
  border-radius: 2px;
}

.footer-area .footer-contact p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-area .quick-links ul li a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-area .quick-links ul li a:hover {
  color: var(--color-saffron);
}

.footer-area .quick-links ul li::before {
  background: rgba(255, 255, 255, 0.35);
}

.footer-area .quick-links ul li:hover::before {
  background: var(--color-saffron);
}

.footer-area .footer-copyright-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-area .copyright-text p {
  color: rgba(255, 255, 255, 0.55);
}
