/*
Theme Name: 	Hotel Villa Stella
Version:     	1.6.2
Author:     	Andrea Marchetti
License:    	GNU General Public License v3.0
*/

/* ==========================================================================
   1. Variables & Reset
   ========================================================================== */

/* Font Style
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300&display=swap');


/* CSS Variables
   ========================================================================== */
:root {
  --site-bg: #E4E4E4;
  --site-text-color: #000;
  --link-color: #048ea0;
  --link-color-hover: #105862;
}

/* Reset
   ========================================================================== */
body,
html {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overscroll-behavior: none none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  padding-left: 20px;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--link-color);
}

a:focus,
a:hover {
  color: var(--link-color-hover);
  text-decoration: none;
}

hr {
  border: none;
  border-bottom: 0.3px solid #d6d2c7;
}

address {
  font-style: normal;
}


/* Base Typography
   ========================================================================== */
body {
  font-size: 16px;
  background-color: var(--site-bg);
  color: var(--site-text-color);
  font-family: 'Barlow';
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.custom-background.dark {
  background-color: var(--site-bg);
}

/* Typography Scale
   ------------------------------------------- */
.text-0 {
  font-size: 5rem;
  line-height: 100%;
}

h1,
.text-1 {
  font-size: 3.5rem !important;
}

h2,
.text-2 {
  font-size: 3rem;
}

h3,
.text-3 {
  font-size: 3rem;
}

h4,
.text-4 {
  font-size: 2rem;
}

h5,
p,
.text-5,
ul,
li {
  font-size: 1rem;
  line-height: 150%;
}

h6 {
  font-size: 0.8rem;
}

/* Base Typography Styles
   ------------------------------------------- */


h1,
h2 {
  line-height: 110%;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
}

h3,
h4,
h5,
h6,
{
line-height: 100%;
margin-bottom: 1rem;
font-weight: 300;
letter-spacing: -0.1rem;
}



p,
ul,
li {
  font-size: 1.05rem;
  line-height: 130%;
}

.paragraph-font {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}



/* Typography Responsive Adjustments
   ------------------------------------------- */
@media (max-width: 768px) {
  .text-0 {
    font-size: 4rem;
  }

  h1,
  .text-1 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4,
  .text-4 {
    font-size: 1.5rem;
  }

  p,
  ul,
  li {
    font-size: 0.95rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  {
  line-height: 100% !important;

}

}


/* ==========================================================================
   2. Layout & Grid
   ========================================================================== */

/* Base Layout
   ========================================================================== */
.wrapper {
  width: 100%;
  padding: 0 3%;
  overflow: hidden;
  position: relative;
}

/* Grid System
   ========================================================================== */
.grid {
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
}

.grid--center {
  justify-content: center;
}

.col {
  flex: 1;
}

[class*='col-'] {
  position: relative;
  padding: 0 1%;
}

.grid .grid [class*='col-'] {
  padding: 0;
}

/* Grid Columns
   ------------------------------------------- */
.col-10 {
  width: 10%;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-30 {
  width: 30%;
}

.col-33 {
  width: 33.33%;
}

.col-35 {
  width: 35%;
}

.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-70 {
  width: 70%;
}

.col-80 {
  width: 80%;
}

.col-90 {
  width: 90%;
}

.col-100 {
  width: 100%;
}

/* Tablet Grid
   ------------------------------------------- */
@media (max-width: 991px) {
  .tab-20 {
    width: 20%;
  }

  .tab-25 {
    width: 25%;
  }

  .tab-33 {
    width: 33.33%;
  }

  .tab-50 {
    width: 50%;
  }

  .tab-80 {
    width: 80%;
  }

  .tab-90 {
    width: 90%;
  }

  .tab-100 {
    width: 100%;
  }
}

/* Mobile Grid
   ------------------------------------------- */
@media (max-width: 768px) {
  [class*='col-'] {
    width: 100%;
  }

  .sma-20 {
    width: 20%;
  }

  .sma-25 {
    width: 25%;
  }

  .sma-33 {
    width: 33.33%;
  }

  .sma-40 {
    width: 40%;
  }

  .sma-50 {
    width: 50%;
  }

  .sma-80 {
    width: 80%;
  }

  .sma-100 {
    width: 100%;
  }
}

/* Visibility Classes
   ========================================================================== */
@media (min-width: 1190px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .hide-tablet {
    display: none !important;
  }
}

.hide-all {
  display: none;
}


/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */

/* Header Base
   ========================================================================== */


.header {
  background: transparent !important;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 0 4%;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);


}

.header__content {
  width: 100%;
  min-height: 95px;
  margin: 0 auto;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  padding: 10px 0;
  /* border-bottom: 0.5px solid #eee !important; */
}



.page-template-home-template .header,
.error404 .header {
  background: #f9f7f5 !important;
}

.page-template-home-template .header__logo-img,
.error404 .header__logo-img {
  filter: none !important;
}

.page-template-home-template .icon-hamburger,
.error404 .icon-hamburger {
  filter: none;
  color: #000;
}

.page-template-home-template .header__btn--secondary,
.error404 .header__btn--secondary {
  border-color: #000;
  color: #000;
}

.page-template-home-template .menu li a,
.error404 .menu li a {
  color: #000;
}

.page-template-home-template .lang-dropdown__current,
.error404 .lang-dropdown__current {
  filter: none;
}


/* Admin Bar Adjustment */
body.admin-bar .header {
  position: fixed;
  top: 32px;
  z-index: 1000;
}



/* Header Elements
   ------------------------------------------- */
/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  color: var(--site-text-color);
  font-weight: bold;
  position: relative;
  top: 5px;
}

.header__logo-img,
.header__logo_white-img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Buttons */
.header__buttons {
  display: flex;
  gap: 10px;
  margin-right: 0;
  order: 2;
}

.header__btn {
  padding: 8px 14px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header__btn--primary {
  background-color: var(--link-color);
  color: white !important;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px;
  min-width: 140px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__btn--secondary {
  text-transform: uppercase;
  color: #fff;
  padding: 15px;
  min-width: 140px;
  text-align: center;
  border: solid 1px #fff;
  border-radius: 0;
}

.spacer {
  display: none;
}


/* Language Selector
   ------------------------------------------- */

.header__lang {
  order: 1;
  margin-left: auto;
  margin-right: 20px;
  position: relative;
  z-index: 9999;
}

.lang-dropdown {
  position: relative;
  margin-left: 1rem;
}

.lang-dropdown__current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  min-width: 60px;
  height: 36px;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  border: none;
  text-decoration: none !important;
  color: #000 !important;
  filter: brightness(0) invert(1);
}



.lang-dropdown__list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  padding: 0.5rem 0;
  background: #fcf8f2;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 60px;
  z-index: 1000;
  list-style: none;
}


.lang-dropdown:hover .lang-dropdown__list {
  display: block;
}

.lang-dropdown__list li {
  padding: 0;
  margin: 0;
  color: #000 !important;
}

.lang-dropdown__list a {
  display: block;
  padding: 0.5rem 1rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.lang-dropdown__list a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-dropdown__list .current-lang {
  display: none;
}


/* Navigation
   ========================================================================== */
/* Hamburger Menu */
.icon-hamburger {
  text-decoration-line: none;
  z-index: 9999;
  border: none;
  background: none;
  filter: brightness(0) invert(1);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-hamburger span {
  height: 1px;
  width: 30px;
  background: var(--site-text-color);
  position: relative;
  display: block;
  margin-bottom: 11px;
  transition: all 0.2s cubic-bezier(.215, .61, .355, 1);
}

.icon-hamburger strong {
  height: auto;
  width: auto;
  overflow: visible;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  margin-top: -5px;
  font-weight: 500;
}





/* Full Screen Menu */
.menu-full {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 35%;
  background: #f9f7f5;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  padding: 80px;
  transform: translateX(-100%);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-full ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-full li {
  font-size: 1.8rem;
  font-weight: 300;
  font-family: 'Jost';
  letter-spacing: -0.05rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  line-height: 3.5rem;
}

.menu-full__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-full__link a {
  color: #000;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
  font: SandeMore;
  transform: translateX(0);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.wrapper {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

/* Menu secondary
   ------------------------------------------- */

.menu__secondary,
.menu__secondary ul {
  margin: 0;
  position: relative;
}

.menu__secondary li {
  display: inline-block;
  position: relative;
}

.menu__secondary li a {
  color: #fff;
  display: block;
  padding: 16px;
  font-size: 15px;
  font-weight: 400;
}




/* States
   ========================================================================== */

/* Scroll State */
.scroll-down .header {
  background: #f9f7f5 !important;
}

.scroll-down .header__logo-img {
  filter: none !important;
}

.scroll-down .icon-hamburger {
  filter: none;
  color: #000;
}

.scroll-down .header__btn--secondary {
  border-color: #000;
  color: #000;
}

.scroll-down .menu li a {
  color: #000;
}

.scroll-down .lang-dropdown__current {
  filter: none;
}


/* Menu Open State */
body.menu-open {
  overflow: hidden;
}

.menu-open .menu-full {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-open .icon-hamburger {
  position: fixed;
  filter: none;
}

.menu-open .icon-hamburger span {
  background: #000 !important;
  height: 1px !important;
}

.menu-open .icon-hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}

.menu-open .icon-hamburger span:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -5px;
}



.menu-open .icon-hamburger strong {
  height: auto;
  width: auto;
  overflow: visible;
  margin-top: 2px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000 !important;
}

.menu-open .overlay {
  opacity: 1;
  visibility: visible;
}



/* Hover States */
.header__btn--primary:hover {
  background-color: var(--link-color-hover);
}

.header__btn--secondary:hover {
  color: var(--link-color-hover) !important;
  border-color: var(--link-color-hover);
}

.menu-items a:hover {
  color: var(--link-color);
  transform: translateX(10px);
  opacity: 1;
}

.menu-items .current-menu-item>a {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

.lang-dropdown__current:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-dropdown__list a:hover {
  background: rgba(0, 0, 0, 0.05);
}


/* Mobile Styles
   ========================================================================== */
@media (max-width: 768px) {



  /* Header Layout */
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: auto;
    min-height: 80px !important;
    position: relative !important;
    top: 0;
    bottom: 0;
  }



  /* Logo */
  .header__logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 9999;
  }



  .header__logo-img,
  .header__logo_white-img {
    width: 100px !important;
  }

  /* Navigation */
  .icon-hamburger {
    z-index: 9999;
    width: 40px;
    order: 1;
    position: relative;
    justify-self: start;
  }

  /* Language Selector */

  .header__lang {
    display: flex;
    align-items: center;
    order: 3;
    margin: 0;
    position: relative;
    z-index: 9999;
  }

  .menu-open .lang-dropdown__current {
    filter: none;
  }




  /* Full Screen Menu */
  .menu-full {
    width: 100%;
    padding: 60px 30px;
  }

  /* Hide Elements */
  .header__buttons,
  .menu__secondary {
    display: none !important;
  }

  /* Menu Open State */

  .menu-open .header__logo-img,
  .menu-open .lang-dropdown {
    filter: none;
  }

  .menu-open .header__lang {
    position: fixed;
    right: 37px;
  }


}


/* ==========================================================================
   4. Components
   ========================================================================== */

/* Cards
   ========================================================================== */
/* Room Card */
.room-card {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.room-content {
  padding: 1rem 0;
}

.room-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 300 !important;
}

.room-content p {
  color: #666;
  margin-bottom: 1rem;
}

.text-archive {
  font-size: 2.8rem;
}

.related-rooms h3 {
  font-size: 2.2rem;
}

.related-rooms h2 {
  font-size: 2.5rem;
}

/* Room Images */
.room-image {
  width: 100%;
  height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.room__image--archive {
  width: 100%;
  height: 580px;
  object-fit: cover;
}




/* Service Card */
.servizi-image {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.servizi-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}


.servizi-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 15px;
  color: #fff;
  z-index: 1;
}

.servizi-content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 10px;
}

.servizi-content span {
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Excerpt Post */

.excerpt {
  color: #000;
}

/* Buttons & Links
 ========================================================================== */
/* Scopri Link */

.scopri-link {
  display: inline-flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid;
  width: 100%;
  padding-bottom: 8px;
}

.scopri-link:hover {
  border-color: #000;
  color: #000;
}

.scopri-link svg {
  transition: transform 0.3s ease;
  margin-left: auto;
  ;
}

.scopri-link:hover svg {
  transform: translateX(5px);
}

/* Scopri Link Service Card */

.servizi-content .scopri-link {
  filter: brightness(0) invert(1);
}

.servizi-content .scopri-link .icon-arrow-down-right {
  margin-left: auto;
  height: 15px;
  width: 15px;
  filter: brightness(0) invert(1);
}

/* Scopri Link Room Card */

.room-content .scopri-link .icon-arrow-down-right {
  margin-left: auto;
  height: 15px;
  width: 15px;
  filter: none;
}


/* Button Groups */
.button-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}

.button__base--primary {
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.button__base--secondary {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Content */



.button__content {
  position: relative;
  border-bottom: solid 1px #bdaa86;
}

.button__content::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: #bdaa86;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bdaa86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}


/* Accordion
 ========================================================================== */
.accordion-item h4 {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
  cursor: pointer;
}

.accordion-item h4 * {
  pointer-events: none;
}

.accordion-item h4::after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url('data:image/svg+xml;utf8,<svg width="50px" height="50px" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path fill="%23b99f5a" stroke="%23b99f5a" stroke-width="0.3" d="M22.7 34.7l-1.4-1.4 8.3-8.3-8.3-8.3 1.4-1.4 9.7 9.7z"/></svg>');
  background-size: contain;
  transition: transform 0.3s ease;
}

.accordion-item.active h4::after {
  transform: translateY(-50%) rotate(-90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-bottom: #000 solid 0.6px;
  margin-top: 10px;
}

.accordion-content p {
  padding-bottom: 20px;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

/* Slider (Splide)
 ========================================================================== */
/* Base Splide Styles */

.splide__container {
  box-sizing: border-box;
  position: relative
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto
}

.splide {
  position: relative;
  visibility: hidden
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative
}

.splide__slide img {
  vertical-align: bottom
}

.splide__sr {
  display: none;
}

/* Navigation Arrow */

.splide__arrows {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.splide__arrow {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #000;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.splide__arrow--prev,
.splide__arrow--next {
  position: static;
}

.splide__arrow svg {
  width: 20px;
  height: 20px;
  fill: #000;

}

.splide__arrow svg {
  display: none;
}

.splide__arrow::after {
  content: '→';
  font-size: 20px;
  font-weight: 100;
  color: #000;
}

.splide__arrow--prev::after {
  content: '←';
}

.splide__arrow:focus {
  outline: none;
  border: 1px solid #000 !important;
  text-decoration: none;
}



/* Icons
 ========================================================================== */
.icon-time {
  display: flex;
  align-items: center;
}

.icon-time::before {
  content: '';
  display: block;
  min-width: 15px;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Animations
 ========================================================================== */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease-in-out;
  will-change: transform, opacity;
}

.fadeIn {
  opacity: 1;
  transform: translateY(0px);
}

@keyframes fade-load {
  from {
    opacity: 0;
    top: 20px;
  }

  to {
    opacity: 1;
    top: 0;
  }
}

.load {
  opacity: 0;
  animation: fade-load cubic-bezier(0.385, 0.135, 0.15, 0.86) 0.5s forwards;
}

/* Responsive Adjustments
 ========================================================================== */
@media (max-width: 768px) {
  .room-image {
    height: 350px;
  }

  .room-suite-section {
    padding: 2rem 1rem;
  }

  .room-suite-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   5. Pages & Sections
   ========================================================================== */




/* Direct Booking Wrapper
  ========================================================================== */


.direct-booking-wrapper {
  padding: 40px;
  border: 20px solid transparent;
  border-image-source: url('/wp-content/uploads/2025/02/Frame-gold.png');
  border-image-slice: 105;
  border-image-repeat: round;
  border-image-width: 20px;
}

.direct-booking-wrapper h3 {
  line-height: 100%;
}


@media (max-width: 768px) {

  .direct-booking-wrapper h4 {
    font-size: 1.2rem;
  }

  .direct-booking-wrapper .disclamer-wrapper {
    text-align: center;
    margin-top: 20px;
  }

}





/* Booking Bar
  ========================================================================== */

/* Base Styles */
.booking-bar {
  background: #fdf8f2;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
}

.booking-bar .booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.booking-bar-mobile {
  display: flex;
  background-color: #f9f7f5;
  color: #000;
  height: 70px;
  border-top: 1px solid #f1efe7;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

.booking-bar-mobile a {
  color: inherit;
  text-decoration: none;
}

.booking-bar-mobile [class*='sma-'] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.booking-bar-mobile [class*='icon-'] {
  height: 25px;
  width: 25px;
  background-repeat: no-repeat;

}

.booking-bar-mobile .text {
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 12px;
}

.booking-bar-mobile .button {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.booking-bar-mobile .sma-40 {
  background-color: #bdaa86;
  color: #fff;
}

/* Field Styles */
.booking-bar .booking-field {
  flex-grow: 1;
  min-width: 0;
}

.booking-bar .booking-field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  text-align: center;
}

/* Select Styles - Override tema */

/* Stile per il wrapper dell'input */
.booking-bar .select-wrapper {
  position: relative;
  margin-top: 0;
}

/* Stile per l'input del datepicker */
.booking-bar .select-wrapper input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: transparent;
  appearance: none;
  cursor: pointer;
  font-size: 14px;
  margin-top: 0;
  border-radius: 0;
}

/* Stili per il wrapper di flatpickr */
.flatpickr-wrapper {
  width: 100%;
}

/* Stili per il calendario */
.flatpickr-calendar {
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-top: 5px;
}

/* Stili per i giorni selezionati */
.flatpickr-day.selected {
  background: #bdaa86;
  border-color: #bdaa86;
}

.flatpickr-day.selected:hover {
  background: #a89672;
  border-color: #a89672;
}


/* Counter Styles - Override tema */
.booking-bar .counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #ddd; */
  margin-top: 0;
  width: auto;
}

.booking-bar .counter-wrapper input[type="number"] {
  width: 40px;
  text-align: center;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  margin-top: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.booking-bar .counter-btn {
  padding: 12px 15px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  margin-top: 0;
  width: auto;
  text-decoration: none;
  border: solid 1px #eee;
}

/* Button Styles - Override tema */
.booking-bar .check-availability {
  width: 100%;
  padding: 15px 24px;
  background: #bdaa86;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  transition: background-color 0.3s;
  margin-top: 0;
  font-weight: normal;
  text-decoration: none;
}

.booking-bar .check-availability:hover {
  border: solid 1px #bdaa86;
  color: #bdaa86;
  background: transparent;
}

/* Rimuovi stili input number */
.booking-bar input[type="number"]::-webkit-inner-spin-button,
.booking-bar input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-bar .booking-container {
    flex-direction: column;
    gap: 15px;
  }

  .booking-bar .booking-field {
    width: 100%;
  }
}







/* Image Decoration
  ========================================================================== */

.decorated-image-block {
  border: solid 20px #f1efe7;
}





/* Homepage
   ========================================================================== */
/* SEO Title (Hidden) */
.home-title {
  position: absolute;
  top: -9999px;
  color: #fff;
  font-size: 12px;
}

/* Homepage Text Styles */
.text-home {
  font-size: 4rem;
  font-weight: 500;
}

.text-hero {
  font-size: 4rem;
}


/* Vertical Line Decorative Element */
.vertical-line-wrapper {
  display: flex;
  justify-content: center;
}

.vertical-line {
  border-left: 1px solid black;
  height: 90px;
  margin-bottom: 30px;
}

/* Archive Pages
 ========================================================================== */

/* Archive Cover */
.archive-cover {
  height: 60vh;
  width: auto;
  max-width: 1000%;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 4rem;
}


.archive-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.archive-cover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
}

.archive-cover h1 {
  color: white;
  font-size: 6rem !important;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .archive-cover h1 {
    font-size: 3rem !important;
  }
}

/* Data Camera Grid */
.data-camera {
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  gap: 20px;
}

.data-camera p {
  color: #000;
}



/* Page Templates
 ========================================================================== */
/* Menu Black Template */
@media (min-width: 1190px) {
  .page-template-menu-black .spacer {
    display: none;
  }

  .page-template-menu-black .header {
    background: transparent;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }

  .page-template-menu-black .header__content {
    border: none;
  }

  .page-template-menu-black.scroll-down .header {
    background-color: var(--site-bg);
  }
}

/* Blank & Contained Templates */
.page-template-blank .spacer,
.page-template-contained-no-title .spacer {
  height: 75px;
}

/* WhatsApp Integration
 ========================================================================== */
.logo-whats-app {
  display: block;
  width: 38px;
  height: 38px;
  position: fixed;
  bottom: 43px;
  right: 43px;
  z-index: 999;
  border-radius: 100%;
  background: #25D366;
  border: 0px solid #25D366;
}

.logo-whats-app .icon-wa {
  width: 44px;
  height: 44px;
  margin: -3px 0 0 -3px;
  padding: 0;
  filter: invert(1);
}

/* Responsive Adjustments
 ========================================================================== */
@media (max-width: 1190px) {
  .spacer {
    height: 44px;
  }

  .page-template-menu-black .spacer,
  .page-template-blank .spacer,
  .page-template-contained-no-title .spacer {
    height: 44px;
  }

  .page-template-menu-black .header__content {
    border: none;
  }

  .text-home {
    font-size: 3rem;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .archive-cover {
    height: 50vh;
  }

  .archive-cover h1 {
    font-size: 2rem;
  }

  .direct-booking-wrapper {
    border: 20px solid transparent;
    border-image-source: url('/wp-content/uploads/2025/02/frame-gold-90deg_1.png');
    border-image-slice: 95;
    border-image-repeat: round;
    border-image-width: 20px;
    text-align: center;
  }

  .text-hero {
    font-size: 2.2rem;
  }

}

h1 span {
  display: block;
}

/* Images
 ========================================================================== */
.img-16-9 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Alignments
 ========================================================================== */
body .alignfull {
  width: auto;
  max-width: 1000%;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

@media only screen and (min-width: 789px) {
  body .alignwide {
    width: auto;
    max-width: 1000%;
    margin-right: calc(25% - 25vw);
    margin-left: calc(25% - 25vw);
  }

  .alignwide img,
  .alignfull img {
    display: block;
    margin: 0 auto;
  }
}

/* ==========================================================================
   6. WordPress Default Elements
   ========================================================================== */

/* Comments
   ========================================================================== */
#comments {
  width: 100%;
}

/* Comment Form */
.comment-form-author,
.comment-form-email,
.comment-form-url {
  float: left;
  margin-top: 20px;
  margin-right: 3%;
  width: 30.3333333%;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
}

/* Comments List */
ol.commentlist {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
  text-indent: 0;
}

ol.commentlist li.comment {
  padding: 1em;
}

ol.commentlist li.comment div.vcard cite.fn {
  text-transform: uppercase;
  font-size: 14px;
}

ol.commentlist li.comment div.vcard img.avatar {
  float: left;
  margin: 6px 1em 1em 0;
  border-radius: 50px;
}

ol.commentlist li.comment div.comment-meta {
  font-size: 12px;
}

ol.commentlist li.comment ul {
  margin: 0 0 1em 2em;
}

ol.commentlist li.comment div.reply {
  margin-left: 80px;
  font-size: 11px;
}

/* Nested Comments */
ol.commentlist li.comment ul.children {
  margin: 1em 0 0;
  list-style: none;
  text-indent: 0;
}

ol.commentlist li.comment ul.children li.depth-2,
ol.commentlist li.comment ul.children li.depth-3,
ol.commentlist li.comment ul.children li.depth-4 {
  margin: 0 0 .25em .25em;
  border-left: 1px solid #eee;
}

/* Forms & Inputs
   ========================================================================== */
input[type=text],
input[type=number],
input[type=tel],
input[type=password],
input[type=email],
input[type=url] {
  width: 100%;
  padding: 10px;
  border: 1px solid #949494;
  background: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  margin-top: 5px;
}

textarea {
  padding: 10px;
  width: 100%;
  border: 1px solid #949494;
  background: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  margin-top: 5px;
}

input[type=submit],
button[type=submit] {
  margin-top: 10px;
  padding: 15px 20px;
  color: #fff;
  text-transform: uppercase;
  background: #222;
  border: none;
  margin-top: 5px;
  display: block;
  font-weight: bold;
  width: auto;
}

/* Search Form
   ========================================================================== */
.form-search {
  width: 100%;
  border-radius: 100px;
  border: 1px solid #e4e4e4;
  padding: 5px 15px;
  position: relative;
  background: #fff;
  margin-bottom: 30px;
}

.form-search input[type=text] {
  width: 100%;
  border: none;
  background: transparent !important;
  font-size: 18px;
}

.form-search button[type=submit] {
  padding: 0;
  border: none;
  background: transparent;
  color: #000;
  border-radius: 20px;
  position: absolute;
  top: 8px;
  right: 20px;
}

.form-search button[type=submit] svg {
  width: 30px;
  height: 30px;
}

/* Pagination
   ========================================================================== */
.pagination {
  float: left;
  margin: 40px 0;
  padding: 0;
  width: 100%;
}

.pagination span,
.pagination a {
  float: left;
  margin: 0 10px 10px 0;
  padding: 14px 19px;
  border: 1px solid #222;
}

/* Images & Media
   ========================================================================== */
/* Alignment Classes */
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  max-width: 97%;
  height: auto;
}

.alignright {
  float: right;
  margin-bottom: 10px;
  margin-left: 20px;
  max-width: 97%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  max-width: 97%;
  height: auto;
}

.alignnone {
  max-width: 97%;
  height: auto;
}

/* Image Captions */
.wp-caption {
  margin-bottom: 20px;
  padding: 10px;
  max-width: 97%;
  border: 1px solid #eee;
  text-align: center;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  width: 100% !important;
  height: auto;
  border: 0 none;
}

.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 8px;
  font-size: 1em;
  line-height: 17px;
}

.gallery-caption {
  font-size: 20px;
}

/* Accessibility
   ========================================================================== */
.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 !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

/* Clearfix
   ========================================================================== */
.clearfix:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

*:first-child+html .clearfix {
  zoom: 1;
}


/* ==========================================================================
   7. WooCommerce
   ========================================================================== */

/* Cart Icon in Menu
   ========================================================================== */
.menu-item-type-woocommerce-cart {
  position: relative;
  width: 30px;
  height: 18px;
}

.menu-cart-total {
  position: absolute;
  top: -10px;
  left: 0;
}

.menu-cart-total svg {
  height: 24px;
  width: 24px;
}

.menu-cart-total span {
  position: absolute;
  bottom: 10px;
  right: -2px;
  font-size: 11px;
}

/* Buttons
   ========================================================================== */
.woocommerce .button {
  background: #222 !important;
  color: #fff !important;
  text-transform: uppercase;
  font-family: inherit !important;
  margin-top: 0;
  margin-right: 10px;
}

.woocommerce .button:where(body:not(.woocommerce-block-theme-has-button-styles)) {
  border-radius: 3px;
  padding: 15px 25px;
}

/* Cart Page
   ========================================================================== */
.woocommerce-cart .variation {
  font-size: 12px;
  margin-top: 0;
}

.woocommerce-cart .variation p {
  font-size: 12px;
  padding: 4px 0 0 0;
}

.woocommerce-cart .variation dt,
.woocommerce-cart .variation dd {
  height: 20px;
}

.woocommerce #coupon_code,
.woocommerce .actions .button {
  height: 36px;
  border-radius: 3px;
  padding: 5px 15px;
  line-height: 25px;
}

.woocommerce #coupon_code {
  width: 120px !important;
}

/* Checkout
   ========================================================================== */
.checkout.woocommerce-checkout .select2-container--default .select2-selection--single {
  border: 2px solid #ddd;
  height: 40px;
}

.checkout.woocommerce-checkout input[type=text],
.checkout.woocommerce-checkout input[type=number],
.checkout.woocommerce-checkout input[type=tel],
.checkout.woocommerce-checkout input[type=password],
.checkout.woocommerce-checkout input[type=email],
.checkout.woocommerce-checkout input[type=url],
.checkout.woocommerce-checkout textarea {
  border: 2px solid #ddd;
}

.woocommerce .checkout-button,
.woocommerce .place-order .button {
  font-size: 18px;
  font-weight: bold;
}

/* Messages
   ========================================================================== */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  border-radius: 4px;
  position: relative;
  background-color: #f7f6f7;
  color: #111;
  border-top: none;
  list-style: none;
  line-height: 32px;
  width: auto;
  word-wrap: break-word;
}

.woocommerce .woocommerce-message {
  background: #e5fce5;
}

.woocommerce .woocommerce-error {
  background: #FEECEB;
  color: #D91811;
}

.woocommerce .woocommerce-info {
  background: #E9F5FE;
}

/* Shop Page
   ========================================================================== */
.woocommerce-shop h1 {
  display: none;
}

.woocommerce ul.products li.product .button {
  display: none;
}

.woocommerce .woocommerce-ordering select {
  border: none;
  width: 200px;
}

/* Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .woocommerce-page #content table.cart td.actions .coupon .button {
    width: calc(100vw - 210px);
    margin-right: 0;
  }

  .woocommerce-result-count {
    font-size: 12px;
  }

  .woocommerce .woocommerce-ordering select {
    font-size: 12px;
    margin-top: -10px;
    width: 140px;
  }
}

@media (min-width: 998px) {

  .checkout.woocommerce-checkout.col2-set,
  .woocommerce-page .col2-set {
    width: 50%;
    float: left;
  }

  .checkout.woocommerce-checkout #order_review_heading,
  .checkout.woocommerce-checkout #order_review {
    width: 45%;
    float: right;
  }

  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    width: 100%;
    display: block;
    padding: 20px;
  }
}

/* ==========================================================================
   8. Utilities & Helpers
   ========================================================================== */

/* Spacing Utilities
   ========================================================================== */

/* Margins */
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 40px;
}

.mt-4 {
  margin-top: 100px;
}

.mt-5 {
  margin-top: 200px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 40px;
}

.mb-4 {
  margin-bottom: 100px;
}

/* Padding */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 10px;
}

.p-2 {
  padding: 20px;
}

.p-3 {
  padding: 40px;
}

.p-4 {
  padding: 100px;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 40px;
}

.pt-4 {
  padding-top: 15vh;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 40px;
}

.pb-4 {
  padding-bottom: 15vh;
}

.pr-1 {
  padding-right: 10px;
}

.pr-2 {
  padding-right: 20px;
}

.pr-3 {
  padding-right: 40px;
}

.pr-4 {
  padding-right: 10vh;
}


.pl-4 {
  padding-left: 10vh;
}

/* Mobile Helpers (max-width: 768px)
-----------------------------------------*/

@media (max-width: 768px) {

  /* Margin */
  .sma-mt-0 {
    margin-top: 0;
  }

  .sma-mt-1 {
    margin-top: 10px;
  }

  .sma-mt-2 {
    margin-top: 20px;
  }

  .sma-mt-3 {
    margin-top: 40px;
  }

  .sma-mb-0 {
    margin-bottom: 0;
  }

  .sma-mb-1 {
    margin-bottom: 10px;
  }

  .sma-mb-2 {
    margin-bottom: 20px;
  }

  .sma-mb-3 {
    margin-bottom: 40px;
  }

  /* Padding */
  .sma-p-0 {
    padding: 0;
  }

  .sma-p-1 {
    padding: 10px;
  }

  .sma-p-2 {
    padding: 20px;
  }

  .sma-p-3 {
    padding: 40px;
  }

  .sma-pr-0 {
    padding-right: 0;
  }

  /* Align */
  .sma-text-center {
    text-align: center;
  }

  .sma-text-left {
    text-align: left;
  }

  .sma-text-right {
    text-align: right;
  }

}

/* Tablet Helpers (max-width: 991px)
-----------------------------------------*/

@media (max-width: 991px) {

  /* Margin */
  .tab-mt-0 {
    margin-top: 0;
  }

  .tab-mt-1 {
    margin-top: 10px;
  }

  .tab-mt-2 {
    margin-top: 20px;
  }

  .tab-mt-3 {
    margin-top: 40px;
  }

  .tab-mb-0 {
    margin-bottom: 0;
  }

  .tab-mb-1 {
    margin-bottom: 10px;
  }

  .tab-mb-2 {
    margin-bottom: 20px;
  }

  .tab-mb-3 {
    margin-bottom: 40px;
  }

  /* Padding */
  .tab-p-0 {
    padding: 0;
  }

  .tab-p-1 {
    padding: 10px;
  }

  .tab-p-2 {
    padding: 20px;
  }

  .tab-p-3 {
    padding: 40px;
  }

  /* Align */
  .tab-text-center {
    text-align: center;
  }

  .tab-text-left {
    text-align: left;
  }

  .tab-text-right {
    text-align: right;
  }

}

/* Layout & Display Utilities
   ========================================================================== */
.img-res {
  width: 100%;
}

.text-center {
  text-align: center;
}

.justification-center {
  display: flex;
  justify-content: center;
}

.z-1 {
  z-index: 1;
}

/* Typography Utilities
   ========================================================================== */

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.text-black {
  color: #000 !important;
}

.rotate {
  transform: translateY(90);
}

.letter-spacing-none {
  letter-spacing: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

/* Icon System
   ========================================================================== */
/* Icon Sizes */

.icon-0 {
  width: 25px;
  height: 25px;
}

.icon-1 {
  width: 40px;
  height: 40px;
}

.icon-2 {
  width: 70px;
  padding: 8px;
}

.icon-3 {
  width: 100px;
  padding: 8px;
}

.icon-invert {
  filter: invert(1);
}

/* Utility Icons */

.icon-arrow {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3EArrow Forward%3C/title%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='48' d='M268 112l144 144-144 144M392 256H100'/%3E%3C/svg%3E");
}

.icon-check {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23333333' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='405.272px' height='405.272px' viewBox='0 0 405.272 405.272'%3E%3Cg%3E%3Cpath d='M393.401 124.425L179.603 338.208c-15.832 15.835-41.514 15.835-57.361 0L11.878 227.836c-15.838-15.835-15.838-41.52 0-57.358c15.841-15.841 41.521-15.841 57.355-0.006l81.698 81.699L336.037 67.064c15.841-15.841 41.523-15.829 57.358 0C409.23 82.902 409.23 108.578 393.401 124.425z'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-angle {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3EChevron Down%3C/title%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='48' d='M112 184l144 144 144-144'/%3E%3C/svg%3E");
}

.icon-fb {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ELogo Facebook%3C/title%3E%3Cpath d='M480 257.35c0-123.7-100.3-224-224-224s-224 100.3-224 224c0 111.8 81.9 204.47 189 221.29V322.12h-56.89v-64.77H221V208c0-56.13 33.45-87.16 84.61-87.16 24.51 0 50.15 4.38 50.15 4.38v55.13H327.5c-27.81 0-36.51 17.26-36.51 35v42h62.12l-9.92 64.77H291v156.54c107.1-16.81 189-109.48 189-221.31z' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.icon-ig {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ELogo Instagram%3C/title%3E%3Cpath d='M349.33 69.33a93.62 93.62 0 0193.34 93.34v186.66a93.62 93.62 0 01-93.34 93.34H162.67a93.62 93.62 0 01-93.34-93.34V162.67a93.62 93.62 0 0193.34-93.34h186.66m0-37.33H162.67C90.8 32 32 90.8 32 162.67v186.66C32 421.2 90.8 480 162.67 480h186.66C421.2 480 480 421.2 480 349.33V162.67C480 90.8 421.2 32 349.33 32z'/%3E%3Cpath d='M377.33 162.67a28 28 0 1128-28 27.94 27.94 0 01-28 28zM256 181.33A74.67 74.67 0 11181.33 256 74.75 74.75 0 01256 181.33m0-37.33a112 112 0 10112 112 112 112 0 00-112-112z'/%3E%3C/svg%3E");
}

.icon-tw {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ELogo Twitter%3C/title%3E%3Cpath d='M496 109.5a201.8 201.8 0 01-56.55 15.3 97.51 97.51 0 0043.33-53.6 197.74 197.74 0 01-62.56 23.5A99.14 99.14 0 00348.31 64c-54.42 0-98.46 43.4-98.46 96.9a93.21 93.21 0 002.54 22.1 280.7 280.7 0 01-203-101.3A95.69 95.69 0 0036 130.4c0 33.6 17.53 63.3 44 80.7A97.5 97.5 0 0135.22 199v1.2c0 47 34 86.1 79 95a100.76 100.76 0 01-25.94 3.4 94.38 94.38 0 01-18.51-1.8c12.51 38.5 48.92 66.5 92.05 67.3A199.59 199.59 0 0139.5 405.6a203 203 0 01-23.5-1.4A278.68 278.68 0 00166.74 448c181.36 0 280.44-147.7 280.44-275.8 0-4.2-.11-8.4-.31-12.5A198.48 198.48 0 00496 109.5z'/%3E%3C/svg%3E");
}

.icon-yt {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ELogo Youtube%3C/title%3E%3Cpath d='M508.64 148.79c0-45-33.1-81.2-74-81.2C379.24 65 322.74 64 265 64h-18c-57.6 0-114.2 1-169.6 3.6C36.6 67.6 3.5 104 3.5 149 1 184.59-.06 220.19 0 255.79q-.15 53.4 3.4 106.9c0 45 33.1 81.5 73.9 81.5 58.2 2.7 117.9 3.9 178.6 3.8q91.2.3 178.6-3.8c40.9 0 74-36.5 74-81.5 2.4-35.7 3.5-71.3 3.4-107q.34-53.4-3.26-106.9zM207 353.89v-196.5l145 98.2z'/%3E%3C/svg%3E");
}

.icon-search {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ESearch%3C/title%3E%3Cpath d='M456.69 421.39L362.6 327.3a173.81 173.81 0 0034.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 00327.3 362.6l94.09 94.09a25 25 0 0035.3-35.3zM97.92 222.72a124.8 124.8 0 11124.8 124.8 124.95 124.95 0 01-124.8-124.8z'/%3E%3C/svg%3E");
}

.icon-wa {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ELogo Whatsapp%3C/title%3E%3Cpath fill='none' stroke='currentColor' stroke-width='15' stroke-miterlimit='10' d='M414.73 97.1A222.14 222.14 0 00256.94 32C134 32 33.92 131.58 33.87 254a220.61 220.61 0 0029.78 111L32 480l118.25-30.87a223.63 223.63 0 00106.6 27h.09c122.93 0 223-99.59 223.06-222A220.18 220.18 0 00414.73 97.1zM256.94 438.66h-.08a185.75 185.75 0 01-94.36-25.72l-6.77-4-70.17 18.32 18.73-68.09-4.41-7A183.46 183.46 0 0171.53 254c0-101.73 83.21-184.5 185.48-184.5a185 185 0 01185.33 184.64c-.04 101.74-83.21 184.52-185.4 184.52zm101.69-138.19c-5.57-2.78-33-16.2-38.08-18.05s-8.83-2.78-12.54 2.78-14.4 18-17.65 21.75-6.5 4.16-12.07 1.38-23.54-8.63-44.83-27.53c-16.57-14.71-27.75-32.87-31-38.42s-.35-8.56 2.44-11.32c2.51-2.49 5.57-6.48 8.36-9.72s3.72-5.56 5.57-9.26.93-6.94-.46-9.71-12.54-30.08-17.18-41.19c-4.53-10.82-9.12-9.35-12.54-9.52-3.25-.16-7-.2-10.69-.2a20.53 20.53 0 00-14.86 6.94c-5.11 5.56-19.51 19-19.51 46.28s20 53.68 22.76 57.38 39.3 59.73 95.21 83.76a323.11 323.11 0 0031.78 11.68c13.35 4.22 25.5 3.63 35.1 2.2 10.71-1.59 33-13.42 37.63-26.38s4.64-24.06 3.25-26.37-5.11-3.71-10.69-6.48z'/%3E%3C/svg%3E");
}

.icon-tk {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3ELogo Tiktok%3C/title%3E%3Cpath d='M412.19 118.66a109.27 109.27 0 01-9.45-5.5 132.87 132.87 0 01-24.27-20.62c-18.1-20.71-24.86-41.72-27.35-56.43h.1C349.14 23.9 350 16 350.13 16h-82.44v318.78c0 4.28 0 8.51-.18 12.69 0 .52-.05 1-.08 1.56 0 .23 0 .47-.05.71v.18a70 70 0 01-35.22 55.56 68.8 68.8 0 01-34.11 9c-38.41 0-69.54-31.32-69.54-70s31.13-70 69.54-70a68.9 68.9 0 0121.41 3.39l.1-83.94a153.14 153.14 0 00-118 34.52 161.79 161.79 0 00-35.3 43.53c-3.48 6-16.61 30.11-18.2 69.24-1 22.21 5.67 45.22 8.85 54.73v.2c2 5.6 9.75 24.71 22.38 40.82A167.53 167.53 0 00115 470.66v-.2l.2.2c39.91 27.12 84.16 25.34 84.16 25.34 7.66-.31 33.32 0 62.46-13.81 32.32-15.31 50.72-38.12 50.72-38.12a158.46 158.46 0 0027.64-45.93c7.46-19.61 9.95-43.13 9.95-52.53V176.49c1 .6 14.32 9.41 14.32 9.41s19.19 12.3 49.13 20.31c21.48 5.7 50.42 6.9 50.42 6.9v-81.84c-10.14 1.1-30.73-2.1-51.81-12.61z'/%3E%3C/svg%3E");
}

.icon-plus {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Ctitle%3EAdd%3C/title%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M256 112v288M400 256H112'/%3E%3C/svg%3E");
}

.icon-call {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M436.9 364.8c-14.7-14.7-50-36.8-67.4-45.1-20.2-9.7-27.6-9.5-41.9.8-11.9 8.6-19.6 16.6-33.3 13.6-13.7-2.9-40.7-23.4-66.9-49.5-26.2-26.2-46.6-53.2-49.5-66.9-2.9-13.8 5.1-21.4 13.6-33.3 10.3-14.3 10.6-21.7.8-41.9C184 125 162 89.8 147.2 75.1c-14.7-14.7-18-11.5-26.1-8.6 0 0-12 4.8-23.9 12.7-14.7 9.8-22.9 18-28.7 30.3-5.7 12.3-12.3 35.2 21.3 95 27.1 48.3 53.7 84.9 93.2 124.3l.1.1.1.1c39.5 39.5 76 66.1 124.3 93.2 59.8 33.6 82.7 27 95 21.3 12.3-5.7 20.5-13.9 30.3-28.7 7.9-11.9 12.7-23.9 12.7-23.9 2.9-8.1 6.2-11.4-8.6-26.1z'/%3E%3C/svg%3E");
}

.icon-in {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M444.17 32H70.28C49.85 32 32 46.7 32 66.89v374.72C32 461.91 49.85 480 70.28 480h373.78c20.54 0 35.94-18.21 35.94-38.39V66.89C480.12 46.7 464.6 32 444.17 32zm-273.3 373.43h-64.18V205.88h64.18zM141 175.54h-.46c-20.54 0-33.84-15.29-33.84-34.43 0-19.49 13.65-34.42 34.65-34.42s33.85 14.82 34.31 34.42c-.01 19.14-13.31 34.43-34.66 34.43zm264.43 229.89h-64.18V296.32c0-26.14-9.34-44-32.56-44-17.74 0-28.24 12-32.91 23.69-1.75 4.2-2.22 9.92-2.22 15.76v113.66h-64.18V205.88h64.18v27.77c9.34-13.3 23.93-32.44 57.88-32.44 42.13 0 74 27.77 74 87.64z'/%3E%3C/svg%3E");
}

.icon-nav {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M448 64L64 240.14h200a8 8 0 018 8V448z'/%3E%3C/svg%3E");
}

.icon-mail {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M424 80H88a56.06 56.06 0 00-56 56v240a56.06 56.06 0 0056 56h336a56.06 56.06 0 0056-56V136a56.06 56.06 0 00-56-56zm-14.18 92.63l-144 112a16 16 0 01-19.64 0l-144-112a16 16 0 1119.64-25.26L256 251.73l134.18-104.36a16 16 0 0119.64 25.26z'/%3E%3C/svg%3E");
}

.icon-expand {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M432 320v112H320M421.8 421.77L304 304M80 192V80h112M90.2 90.23L208 208M320 80h112v112M421.77 90.2L304 208M192 432H80V320M90.23 421.8L208 304'/%3E%3C/svg%3E");
}

.icon-arrow-down-right {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.55882 0.5L20.2647 0.735296M20.2647 0.735296L20.5 17.4412M20.2647 0.735296L0.5 20.5' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-user {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M344 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'/%3E%3Cpath d='M256 304c-87 0-175.3 48-191.64 138.6C62.39 453.52 68.57 464 80 464h352c11.44 0 17.62-10.48 15.65-21.4C431.3 352 343 304 256 304z' fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='32'/%3E%3C/svg%3E");
}


.icon-boat {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M461.93 261.05c-2-4.76-6.71-7.83-11.67-9.49l-187.18-74.48a23.78 23.78 0 00-14.17 0l-187 74.52c-5 1.56-9.83 4.77-11.81 9.53s-2.94 9.37-1 15.08l46.53 119.15a7.46 7.46 0 007.47 4.64c26.69-1.68 50.31-15.23 68.38-32.5a7.66 7.66 0 0110.49 0C201.29 386 227 400 256 400s54.56-14 73.88-32.54a7.67 7.67 0 0110.5 0c18.07 17.28 41.69 30.86 68.38 32.54a7.45 7.45 0 007.46-4.61l46.7-119.16c1.98-4.78.99-10.41-.99-15.18z' fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='32'/%3E%3Cpath d='M416 473.14a6.84 6.84 0 00-3.56-6c-27.08-14.55-51.77-36.82-62.63-48a10.05 10.05 0 00-12.72-1.51c-50.33 32.42-111.61 32.44-161.95.05a10.09 10.09 0 00-12.82 1.56c-10.77 11.28-35.19 33.3-62.43 47.75a7.15 7.15 0 00-3.89 5.73 6.73 6.73 0 007.92 7.15c20.85-4.18 41-13.68 60.2-23.83a8.71 8.71 0 018-.06A185.14 185.14 0 00340 456a8.82 8.82 0 018.09.06c19.1 10 39.22 19.59 60 23.8a6.72 6.72 0 007.95-6.71z'/%3E%3Cpath d='M320 96V72a24.07 24.07 0 00-24-24h-80a24.07 24.07 0 00-24 24v24M416 233v-89a48.14 48.14 0 00-48-48H144a48.14 48.14 0 00-48 48v92M256 183.6v212.85' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'/%3E%3C/svg%3E");
}

.icon-walk {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M314.21 482.32l-56.77-114.74-44.89-57.39a72.82 72.82 0 01-10.13-37.05V144h15.67a40.22 40.22 0 0140.23 40.22v183.36M127.9 293.05v-74.52S165.16 144 202.42 144M370.1 274.42L304 231M170.53 478.36L224 400' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'/%3E%3Ccircle cx='258.32' cy='69.48' r='37.26' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'/%3E%3C/svg%3E");
}

.icon-mail {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Crect x='48' y='96' width='416' height='320' rx='40' ry='40' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='25'/%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='25' d='M112 160l144 112 144-112'/%3E%3C/svg%3E");
}

.icon-call-outline {
  display: inline-block;
  margin: -3px 5px;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath d='M451 374c-15.88-16-54.34-39.35-73-48.76-24.3-12.24-26.3-13.24-45.4.95-12.74 9.47-21.21 17.93-36.12 14.75s-47.31-21.11-75.68-49.39-47.34-61.62-50.53-76.48 5.41-23.23 14.79-36c13.22-18 12.22-21 .92-45.3-8.81-18.9-32.84-57-48.9-72.8C119.9 44 119.9 47 108.83 51.6A160.15 160.15 0 0083 65.37C67 76 58.12 84.83 51.91 98.1s-9 44.38 23.07 102.64 54.57 88.05 101.14 134.49S258.5 406.64 310.85 436c64.76 36.27 89.6 29.2 102.91 23s22.18-15 32.83-31a159.09 159.09 0 0013.8-25.8C465 391.17 468 391.17 451 374z' fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='20'/%3E%3C/svg%3E");
}

/* Responsive Utilities
   ========================================================================== */
@media (max-width: 768px) {
  .sma-text-center {
    float: none;
    text-align: center;
  }
}

/* Accessibility Fixes
   ========================================================================== */
.text-content a,
.comment-content a {
  text-decoration: underline;
}

/* Footer Specific
   ========================================================================== */

.footer__background {
  background-color: #f1efe7;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 80px 0px 20px 0;
}


.menu__footer {
  list-style: none;
  padding-left: 0;
}

.menu__footer li a {
  color: #000;
  line-height: 2;
}

.footer__logo {
  height: 90px;
}


.loghi__grid {
  display: flex;
  align-items: center;
}

.loghi__grid .col-50:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loghi__grid img {
  height: 80px;
}

.loghi__grid .logo-arpav {
  height: 70px;
}

.grid__footer {
  color: #000;
}

.grid__footer a {
  color: #000;
}

.grid__footer h3 {
  font-size: 1.7rem;

}

/* Responsive Adjustments Footer  */

@media (max-width: 768px) {

  .grid__footer {
    gap: 20px;
  }

  .loghi__grid {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .loghi__grid .col-50:first-child {
    margin-top: 10px;
  }

  .loghi__grid .col-50:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .loghi__grid .col-50:last-child img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }

  .footer__logo {
    width: 40%;
    height: auto;
  }

  .grid__footer {
    margin-left: 20px;

  }

  .grid__footer h3 {
    font-size: 1.5rem;
    margin-block-end: 0.5rem;
  }

}

/* Form
   ========================================================================== */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #d6d2c7;
}

.wpcf7 .grid {
  gap: 20px;
}

.wpcf7 .col-50 {
  width: calc(50% - 10px);
}

.wpcf7 {
  border: #d6d2c7 solid 1px;
  padding: 100px;
}


.wpcf7 input[type="submit"] {
  background-color: #bdaa86;
  color: white;
  padding: 18px 24px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: inherit;
  /* Mantiene il bordo che già hai */
  box-shadow: none;
}



/* Responsive Adjustments form  */

@media (max-width: 768px) {
  .wpcf7 {
    padding: 40px;
  }

  .wpcf7 h3 {
    font-size: 2rem;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }

}