/*
Theme Name: Livia
Description: The 2026 theme for WordPress is stylish theme.
Author: the Ignitemv Team
Author URI: https://ignitemv.com/
Version: 2.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: livia
*/

/* =========================================================
   0) FONT
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================================
   1) RESET
========================================================= */
html{
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html, body{
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after{
  box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}
ol, ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
  outline: none;
}
a:focus{
  outline: none;
}

/* =========================================================
   2) BASE
========================================================= */
body{
  font-size: 14px;
  line-height: 1.4;
  font-family: "Kumbh Sans", sans-serif;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   3) SIMPLE GRID (optional)
========================================================= */
.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.row{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
[class*="col-"]{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px){
  .col-sm-12{ width: 100%; }
  .col-sm-6{ width: 50%; }
  .col-sm-4{ width: 33.333%; }
  .col-sm-3{ width: 25%; }
}
@media (min-width: 768px){
  .col-md-12{ width: 100%; }
  .col-md-6{ width: 50%; }
  .col-md-4{ width: 33.333%; }
  .col-md-3{ width: 25%; }
}
@media (min-width: 992px){
  .col-lg-12{ width: 100%; }
  .col-lg-6{ width: 50%; }
  .col-lg-4{ width: 33.333%; }
  .col-lg-3{ width: 25%; }
}
@media (min-width: 1200px){
  .col-xl-12{ width: 100%; }
  .col-xl-6{ width: 50%; }
  .col-xl-4{ width: 33.333%; }
  .col-xl-3{ width: 25%; }
}

/* =========================================================
   4) VARIABLES (Header)
========================================================= */
:root{
  --max: 1280px;

  /* buttons */
  --book: #d9534f;
  --lang: #957d3f;

  /* header states */
  --t-text: rgba(255,255,255,.92);
  --t-soft: rgba(255,255,255,.70);
  --w-text: #141414;
  --w-soft: rgba(0,0,0,.58);

  --badge-bg: #f5f5f0;
  --shadow: 0 14px 26px rgba(0,0,0,.18);

  /* sizes */
  --topline-h: 34px;
  --mainrow-h: 64px;
  --header-h: calc(var(--topline-h) + var(--mainrow-h));
}

.text-center{
  text-align: center !important;
}

/* Push site content down because header is fixed */
body{
  padding-top:0;
}
@media (max-width: 980px){
  body{
    padding-top: 0; /* main row on mobile */
  }
}

/* =========================================================
   5) HEADER (Desktop + Mobile)
========================================================= */
.livia-hdr{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  background: transparent;
  transition: background .22s ease, box-shadow .22s ease;
}
.livia-hdr.is-scrolled{
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* wrapper */
.livia-hdr__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: stretch;
  gap: 22px;
}

/* left badge logo */
.livia-badge{
  width: 235px;
  min-width: 235px;
  background: var(--badge-bg);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-decoration: none;

  /* pointed badge shape */
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.livia-badge__img{
  width: 78%;
  height: auto;
  padding: 18px 0 22px;
}

/* right area */
.livia-hdr__right{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* top contact line */
.livia-topline{
  height: var(--topline-h);
  display: flex;
  align-items: center;
}
.livia-topline__text{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .2px;
  color: var(--t-soft);
}
.livia-topline__sep{ opacity: .8; }

/* main row */
.livia-mainrow{
  height: var(--mainrow-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* desktop menu */
.livia-menu{
  display: flex;
  align-items: center;
  gap: 36px;
}
.livia-menu a{
  color: var(--t-text);
  font-size: 14px;
  font-weight: 500;
  opacity: .95;
  transition: opacity .2s ease, color .2s ease;
}
.livia-menu a:hover{ opacity: 1; }

/* WordPress dropdown (desktop) */
.livia-menu .menu-item-has-children{ position: relative; }
.livia-menu .menu-item-has-children > .sub-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 190px;
  background: #101010;
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s ease;
}
.livia-menu .menu-item-has-children:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.livia-menu .sub-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
}
.livia-menu .sub-menu a:hover{
  background: rgba(255,255,255,.08);
}

/* actions */
.livia-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-book{
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--book);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
  white-space: nowrap;
}
.lang-wrap{ position: relative; }
.btn-lang{
  height: 40px;
  padding: 0 16px;
  background: var(--lang);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
  white-space: nowrap;
}
.livia-caret{ font-size: 12px; margin-left: 6px; opacity: .85; }

/* language dropdown */
.lang-dd{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 170px;
  background: #101010;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}
.lang-dd.is-open{ display: block; }
.lang-dd a{
  display:block;
  padding: 10px 12px;
  border-radius: 10px;
  color:#fff;
  font-size: 13px;
}
.lang-dd a:hover{ background: rgba(255,255,255,.08); }

/* burger */
.livia-burger{
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  border-radius: 12px;
  padding: 9px;
  cursor: pointer;
}
.livia-burger span{
  display:block;
  height: 2px;
  width: 100%;
  background: #fff;
  margin: 5px 0;
}

/* scrolled state colors */
.livia-hdr.is-scrolled .livia-topline__text{ color: var(--w-soft); }
.livia-hdr.is-scrolled .livia-menu a{ color: var(--w-text); }
.livia-hdr.is-scrolled .livia-burger{ border-color: rgba(0,0,0,.18); }
.livia-hdr.is-scrolled .livia-burger span{ background: #111; }

/* =========================================================
   6) MOBILE DRAWER
========================================================= */
.livia-mob{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.livia-mob.is-open{ display: block; }

.livia-mob__panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #0f0f0f;
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform .28s ease;
  padding: 16px 16px 20px;
  overflow: auto;
}
.livia-mob.is-open .livia-mob__panel{ transform: translateX(0); }

.livia-mob__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.livia-mob__close{
  margin-left: auto;
  display: block;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.livia-mob__contact{
  margin-top: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.6;
}

/* WP mobile menu */
.livia-mob__menu{
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
}
.livia-mob__menu a{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
}
.livia-mob__menu a:hover{
  background: rgba(255,255,255,.08);
}

/* mobile WP submenu (animated) */
.livia-mob__menu .sub-menu{
  list-style: none;
  margin: 6px 0 10px;
  padding-left: 12px;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .22s ease;
}
.livia-mob__menu li.is-open > .sub-menu{
  max-height: 500px;
  opacity: 1;
}
.livia-mob__menu .sub-menu a{
  font-size: 14px;
  color: rgba(255,255,255,.92);
  padding: 10px 10px;
}

/* injected toggle button */
.livia-subtoggle{
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.livia-subtoggle:hover{ background: rgba(255,255,255,.08); }
.livia-subtoggle span{ transition: transform .2s ease; }
.livia-mob__menu li.is-open > .livia-subtoggle span{ transform: rotate(180deg); }

.livia-mob__actions{
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.btn-book--full{ width: 100%; }

.livia-mob__langs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill{
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
}
.pill.is-active{
  border-color: rgba(255,255,255,.40);
  color: #fff;
}

/* =========================================================
   7) RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .livia-topline{ display: none; }
  .livia-menu{ display: none; }
  .livia-burger{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn-lang{ display: none; }
  .livia-mainrow{ height: 74px; }
}
@media (max-width: 520px){
  .livia-badge{ width: 175px; min-width: 175px; }
  .btn-book{ height: 38px; padding: 0 14px; font-size: 12.5px; }
}


/***********************/
.custom-button{
background: #000;
font-weight: 500;
font-style: Medium;
font-size: 15px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;

}

.red-button{
background: #D9534F;
color: #fff;
padding: 15px 35px;
}

.red-button:hover{
background: #1F573F;

}