/*
 * Flexible theme config
 * 1) Change only --brand-primary for quick rebrand.
 * 2) Optionally tune the derived colors below.
 */
:root {
  /* Main brand color (change this first) */
  --brand-primary: #a4233f;

  /* Optional fine-tuning */
  --brand-title: color-mix(in srgb, var(--brand-primary) 35%, #000000);
  --brand-soft-bg: color-mix(in srgb, var(--brand-primary) 12%, #ffffff);

  /* Mapped to theme variables used by style.css */
  --theme-color: var(--brand-primary);
  --primary-color: var(--brand-primary);
  --yellow-color: var(--brand-primary);
  --title-color: var(--brand-title);
  --smoke-color: var(--brand-soft-bg);
}

/* Keep uploaded logos visually stable */
.site-logo-img {
  width: auto !important;
  height: 52px !important;
  max-width: 170px !important;
  object-fit: contain;
}

/* Header desktop logo should match the curved brand area */
.header-layout1 .header-logo .site-logo-img {
  height: 72px !important;
  /* max-width: 300px !important; */
}

@media (max-width: 1199px) {
  .header-layout1 .header-logo .site-logo-img {
    height: 52px !important;
    max-width: 170px !important;
  }
}

/*
 * Example presets:
 * Blue:   --brand-primary: #2563EB;
 * Yellow: --brand-primary: #F4B400;
 * Green:  --brand-primary: #16A34A;
 * Purple: --brand-primary: #7C3AED;
 */


@media (min-width: 1023px) {
  .menu-area .col-fixed{
    width: 19%;
  }
}

/* Offer detail reservation form: ensure readable input text */
.reservation-form-simple .form-control {
  color: #000000;
  caret-color: #000000;
}

/* Offer detail reservation form: tighter inputs (match contact) */
.reservation-form-simple .form-control,
.reservation-form-simple input,
.reservation-form-simple select,
.reservation-form-simple .form-select {
  height: 46px;
  border-radius: 6px;
  padding-left: 16px;
  padding-right: 16px;
}

.reservation-form-simple textarea,
.reservation-form-simple textarea.form-control {
  border-radius: 6px;
  padding-left: 16px;
  padding-right: 16px;
}

.reservation-form-simple .form-control::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.widget .reservation-form-simple .form-control:focus,
.widget .reservation-form-simple input:focus,
.widget .reservation-form-simple textarea:focus,
.widget .reservation-form-simple .form-select:focus {
  color: #000000;
  caret-color: #000000;
}

.widget .reservation-form-simple .form-control:focus::placeholder {
  color: #8a8a8a;
}

/* Contact form: keep same radius/height as reservation inputs */
.contact-form .form-control,
.contact-form input,
.contact-form select,
.contact-form .form-select {
  height: 46px;
  border-radius: 6px;
  padding-left: 16px;
  padding-right: 16px;
}

.contact-form textarea,
.contact-form textarea.form-control {
  border-radius: 6px;
  padding-left: 16px;
  padding-right: 16px;
}

/* Footer contact rows: vertically center icon + text */
.footer-wrapper .info-box_text {
  align-items: center;
}

.footer-wrapper .info-box_text .details {
  margin-top: 0;
}

/* Reservation flash messages aligned with theme look */
.reservation-flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  animation: reservationFlashIn 0.22s ease-out;
}

.reservation-flash__icon {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
}

.reservation-flash--success {
  background: #edfdf3;
  border-color: #b8f3cf;
  color: #166534;
}

.reservation-flash--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

@keyframes reservationFlashIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Offer detail: narrower category tags */
.page-meta .page-tag {
  font-size: 14px;
  padding: 4px 14px;
}

.page-meta .ratting {
  font-size: 14px;
  padding: 4px 14px;
}

/* Tour card action: button always right-aligned */
.tour-box .tour-action {
  justify-content: space-between;
}

.tour-box .tour-action .th-btn {
  margin-left: auto;
}

/* Post description: Markdown rendering */
.post-description-md h1,
.post-description-md h2,
.post-description-md h3,
.post-description-md h4,
.post-description-md h5,
.post-description-md h6 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

.post-description-md h1 { font-size: 1.6em; }
.post-description-md h2 { font-size: 1.35em; }
.post-description-md h3 { font-size: 1.15em; }

.post-description-md p {
  margin-bottom: 0.75em;
  line-height: 1.7;
}

.post-description-md ul,
.post-description-md ol {
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.post-description-md li {
  margin-bottom: 0.35em;
}

.post-description-md blockquote {
  border-left: 3px solid var(--theme-color, #a4233f);
  margin: 1em 0;
  padding: 0.5em 1em;
  color: #555;
  background: var(--brand-soft-bg, #f9f0f2);
  border-radius: 4px;
}

.post-description-md code {
  background: #f4f4f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.post-description-md pre {
  background: #f4f4f5;
  padding: 1em;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1em;
}

.post-description-md pre code {
  background: none;
  padding: 0;
}

.post-description-md a {
  color: var(--theme-color, #a4233f);
  text-decoration: underline;
}

.post-description-md img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.post-description-md hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.5em 0;
}

.post-description-md > *:first-child {
  margin-top: 0;
}

.post-description-md > *:last-child {
  margin-bottom: 0;
}

@media(min-width:1900px){
  .header-layout1 .logo-bg{
      width:22%;
  }
}

/* Homepage — Why Choose Us */
#about-sec .home-why-choose-img {
  padding: 24px 16px 24px 24px;
}

#about-sec .home-why-choose-img .img1 img {
  width: 100%;
  max-width: 585px;
  height: auto;
  aspect-ratio: 585 / 622;
  object-fit: cover;
}

@media (max-width: 991px) {
  #about-sec .home-why-choose-img {
    padding: 16px 0;
  }
}