/*
Theme Name: Prototype
Author: Prototype
Description: Prototype Theme
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

@import url("blog/blog-style.css");

/* ========= Base styles ========= */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  /* Fonts */
  --body-font: "Montserrat", sans-serif;
  --headings-font: "Cinzel", sans-serif;
  --fontawesome: "Font Awesome 6 Free";

  /* Colors*/
  --primary-color: #ae710b;
  --secondary-color: #000;
  --text: #777;
  --link-color: var(--primary-color);
  --headings-color: var(--primary-color);
  --white: #fff;
  --black: #000;
}

html {
  height: 100%;
}

body {
  position: relative;
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--primary-color);
  font-family: var(--headings-font);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 15px;
}

p,
hr,
dl,
pre,
form,
table,
address,
blockquote {
  margin: 15px 0;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.4rem;
}

blockquote,
q {
  quotes: none;
}

strong {
  font-weight: 600;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ul {
  padding-left: 20px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td,
table {
  border: 1px solid #dddddd;
}

button,
input,
select,
textarea {
  font-size: 100%;
  overflow: visible;
  margin: 0;
  vertical-align: baseline;
  width: auto;
}
p {
  word-wrap: break-word;
}

i,
em,
dfn,
cite {
  font-style: italic;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

::selection {
  background: #999999;
  color: #ffffff;
  text-shadow: none;
}
::placeholder {
  color: #454545;
  opacity: 0.7;
  font-weight: 400;
}

.container {
  padding: 0 15px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.wrapper {
  min-height: 55vh;
  margin: 2rem 0;
	overflow: hidden;
}

.home .wrapper {
  margin: 0;
}

.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}

.center {
  text-align: center;
}

.error-404-page .fa.fa-exclamation-circle {
  font-size: 5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.error-404-page h4 {
  max-width: 750px;
  margin: auto auto 25px;
}

.sitemap-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

a {
  color: var(--link-color);
  transition: all 0.3s ease-in;
  text-decoration: none;
}
a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

a.comn-btn, a.read-more {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 50%, var(--primary-color) 50%);
    background-size: 300% 100%;
    background-position: 100% 0;
    color: var(--white);
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    font-family: var(--headings-font);
    font-weight: 600;
}

a.comn-btn:hover, a.read-more:hover, a.comn-btn:focus, a.read-more:focus {
	color: var(--white);
	background-position: 0 0;
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-regular {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fancy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fancy-list li {
  position: relative;
  padding-left: 25px;
  margin: 6px 0;
}

.fancy-list li::before {
	content: "\f101";
	font-family: var(--fontawesome);
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0;
}
/* =========================
   HEADER
========================= */
header {
  position: relative;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px;
}
.header-top-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 0;
}
.header-top-bar > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-bar ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}
.header-top-bar a {
    color: #fff;
}
.header-top-bar a:hover {
    color: var(--secondary-color);
}
.header-top-bar ul.contact-info i {
    margin-right: 5px;
}
.header-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
#logo {
    max-width: 200px;
}
.site-nav {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 30px;
}
/* =========================
   STICKY HEADER
========================= */
@media (min-width: 1024px) {
	.sticky-header.desktop-sticky-active #logo {
		max-width: 150px;
	}
  .sticky-header.desktop-sticky-active {
    position: sticky;
    background: #fff;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  .sticky-header.header-hidden {
    transform: translateY(-100%);
  }
}
/* =========================
   MENU
========================= */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav > ul.slimmenu {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
nav > ul.slimmenu > li > a {
	position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
nav > ul.slimmenu > li > a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}
nav > ul.slimmenu > li > a:hover::after, nav > ul.slimmenu li.current-menu-item > a::after {
  width: 100%;
}
nav > ul.slimmenu > li > a:hover {
    color: var(--primary-color);
}
nav > ul.slimmenu li.current-menu-item > a,
nav > ul.slimmenu li.current-menu-ancestor > a {
  color: var(--secondary-color);
}
/* ========= Sub-Menu ========= */
nav > ul.slimmenu li.has-submenu {
  position: relative;
}
nav > ul.slimmenu li.has-submenu ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 10em;
  z-index: 99;
}
nav > ul.slimmenu li.has-submenu ul li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  color: #fff;
  background: var(--primary-color);
  padding: 15px 20px;
  border-bottom: 1px solid #fff;
}
nav > ul.slimmenu li.has-submenu ul li a:hover,
nav > ul.slimmenu li.has-submenu ul li.current-menu-item a {
  background: var(--secondary-color);
  color: #fff;
}
nav > ul.slimmenu:not(.collapsed) li.has-submenu ul {
	transform: translateY(20px);
	transition: transform 300ms ease;
	visibility: hidden;
	opacity: 0;
}
nav > ul.slimmenu:not(.collapsed) li.has-submenu:hover > ul {
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}
/* ========= Third-Level-Sub-Menu ========= */
nav > ul.slimmenu:not(.collapsed) li.has-submenu > ul li ul {
  left: 100%;
  top: 0;
}
/* ========= Mobile Menu ========= */
.collapse-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  padding: 10px;
  cursor: pointer;
}
.collapse-button .icon-bar {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
nav > ul.slimmenu.collapsed {
  position: absolute;
  display: block;
  left: 0;
  top: 100%;
  right: 0;
  z-index: 9999;
}
nav > ul.slimmenu.collapsed li a {
  display: block;
  background: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}
nav > ul.slimmenu.collapsed li a:hover,
nav > ul.slimmenu.collapsed li.current-menu-item > a {
  background: var(--secondary-color);
}
.collapse-button .icon-bar {
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transition: transform 300ms ease-in;
}
.collapse-button.active span {
  position: absolute;
  transform-origin: center;
  top: 50%;
}
.collapse-button.active span:nth-child(1) {
  transform: rotate(45deg);
}
.collapse-button.active > span:nth-child(2) {
  display: none;
}
.collapse-button.active span:nth-child(3) {
  transform: rotate(-45deg);
}
nav > ul.slimmenu.collapsed li.has-submenu ul {
  position: relative;
}
/* ========= Menu Chevron ========= */
nav > ul.slimmenu.collapsed .menu-item-has-children::after {
  display: none;
}
ul.slimmenu:not(.collapsed) li .sub-collapser > i,
ul.slimmenu:not(.collapsed) li .sub-toggle .icon {
  display: none;
}
ul.slimmenu li.menu-item-has-children a {
  padding-right: 20px;
}
.menu-item-has-children::after {
  content: "\f107";
  position: absolute;
  font-family: var(--fontawesome);
  font-weight: 900;
  top: 0;
  right: 2px;
  z-index: 9;
}
ul.sub-menu .menu-item-has-children::after {
  color: #fff;
  content: "\f105";
  top: 10px;
  right: 10px;
}
nav > ul.slimmenu.collapsed .sub-toggle {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 10px 15px;
}
/* =========================
   TITLE BAR
========================= */
.title-bar {
  background: var(--primary-color);
  padding: 1rem 0;
}
.title-bar .titlebar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.title-bar h1 {
  margin: 0;
  color: #fff;
}
.breadcrumbs, .breadcrumbs a {
	color: #fff;
}
/* =========================
   FOOTER
========================= */
.footer-bottom {
  color: #fff;
  background: var(--primary-color);
  padding: 20px 0;
}
.footer-bottom a {
  display: inline-block;
  color: #fff;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
/* =========================
   FORMS
========================= */
label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="file"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 0;
  font-size: 16px;
  font-family: inherit;
  transition: border 0.3s;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
}
textarea {
  height: 150px;
}
input[type="checkbox"], input[type="radio"] {
	transform: scale(1.1);
	vertical-align: middle;
	margin-right: 2px;
}
.wpcf7 input[type="file"] {
  width: auto;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.wpcf7-list-item.first {
	margin-left: 0;
}
input[type="file"]::file-selector-button {
  padding: 10px 20px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #eee;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
input[type="submit"] {
	background-color: var(--primary-color);
	color: #fff;
	padding: 12px 25px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	background: linear-gradient(135deg, var(--secondary-color) 50%, var(--primary-color) 50%);
	background-size: 300% 100%;
	background-position: 100% 0;
	transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}
input[type="submit"]:hover {
	color: var(--white);
	background-position: 0 0;
}
.wpcf7-spinner {
	top: 8px;
	position: absolute;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
fieldset.one-third {
  position: relative;
  float: left;
  width: calc(100% / 3 - 14px);
  margin-right: 20px;
  margin-bottom: 20px;
}
fieldset.half {
  position: relative;
  float: left;
  width: calc(100% / 2 - 20px);
  margin-right: 20px;
  margin-bottom: 20px;
}
fieldset.full {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
fieldset.one-third.last,
fieldset.half.last {
  margin-right: 0;
}
.wpcf7-not-valid {
  border-color: rgba(255, 0, 0, 0.75) !important;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
.wpcf7 form.invalid .wpcf7-response-output {
  background: rgba(255, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  border-color: rgba(255, 0, 0, 0.75);
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: #46b450;
  color: #fff;
  text-align: center;
}
.icon-form input[type="text"],
.icon-form input[type="email"],
.icon-form input[type="tel"],
.icon-form input[type="url"],
.icon-form input[type="password"],
.icon-form textarea,
.icon-form select {
  padding-left: 40px;
}
.icon-form .fa {
  position: absolute;
  z-index: 9;
  left: 10px;
  top: 12px;
  font-size: 20px;
  color: #000;
}
/* =========================
   SEARCH RESULT
========================= */
.sidebar > div.widget_search {
	border: 0;
}
.search-form {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 auto;
	max-width: 500px;
}
.search-submit {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 15px;
	background: none;
	border: none;
	cursor: pointer;	
	right: 0;
	height: 100%;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}
.search-results-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.search-results-wrapper > div {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}
.search-results-wrapper > div:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.no-results .fa.fa-exclamation-circle {
	font-size: 5rem;
	margin-bottom: 15px;
	color: var(--secondary-color);
}
/* =========================
   CUSTOM CSS
========================= */
.ft-tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.ft-tour-card {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    overflow: hidden;
    background: #FFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ft-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.ft-tour-img {
    position: relative;
    height: 200px;
}
.ft-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ft-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2A0E00;
    color: #FFF;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
}
.ft-tour-content {
    padding: 16px;
}
.ft-tour-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}
.ft-tour-content h3 a {
    color: #2A0E00;
    text-decoration: none;
}
.ft-highlights {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}
.ft-card-actions {
    display: flex;
    gap: 10px;
}
.ft-btn-primary {
    background: #C59218;
    color: #FFF;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
    flex: 1;
}
.ft-btn-secondary {
    border: 1px solid #C59218;
    color: #C59218;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
    flex: 1;
}
.ft-pagination {
    text-align: center;
    margin-top: 20px;
}
.ft-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #C59218;
    color: #2A0E00;
    text-decoration: none;
    border-radius: 4px;
}
.ft-pagination .page-numbers.current {
    background: #C59218;
    color: #FFF;
}
/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 980px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
	  .search-form {
		max-width: 100%;
	}
}

@media screen and (max-width: 767px) {
  fieldset.one-third.half,
  fieldset.one-third.one-third {
    width: 100%;
    margin-right: 0;
  }
  .sitemap-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 533px) {
}

@media screen and (max-width: 480px) {
  img.alignright,
  img.alignleft {
    float: none;
    display: block;
    margin: auto auto 15px auto;
  }
}
@media screen and (max-width: 414px) {
  span.break {
    display: block;
  }
}