@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("/wp-content/themes/viatges/assets/fonts/Rubik-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.mobile-menu-toggle .hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #ecf0f1;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active .hamburger {
  gap: 7.5px;
}
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
  display: none;
}
@media (max-width: 991px) {
  .menu-overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}

h1 {
  font-size: 2em;
}
@media (max-width: 991px) {
  h1 {
    font-size: 1.6em;
  }
}

iframe {
  border: none;
}

body {
  font-family: Rubik, sans-serif;
  margin: 0;
  padding: 0;
  color: #2c3e50;
  background: #ecf0f1;
}
body a {
  color: #951339;
  text-decoration: none;
}
body a:visited {
  color: #951339;
}
body a:hover {
  color: #b5164a;
}
body header {
  box-shadow: #bdc3c7 0 1px 12px;
}
body header .header-container .header-top {
  position: relative;
  display: flex;
  height: 360px;
  justify-content: center;
  align-items: center;
  background-image: url("/wp-content/themes/viatges/assets/images/header_escala.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  body header .header-container .header-top {
    height: 180px;
  }
}
body header .header-container .header-top .logo-container img {
  width: 400px;
}
@media (max-width: 991px) {
  body header .header-container .header-top .logo-container img {
    width: 200px;
  }
}
body header .header-container .main-menu-container {
  background-color: #f8f9fa;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    z-index: 1002;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }
  body header .header-container .main-menu-container.active {
    right: 0;
  }
}
body header .header-container .main-menu-container .main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container .main-menu {
    flex-direction: column;
  }
}
body header .header-container .main-menu-container .main-menu > .menu-item {
  position: relative;
  list-style: none;
  padding: 1rem 1rem;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container .main-menu > .menu-item {
    padding: 0.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
    width: 100%;
  }
  body header .header-container .main-menu-container .main-menu > .menu-item:first-child {
    margin-top: 1rem;
  }
  body header .header-container .main-menu-container .main-menu > .menu-item:last-child {
    border: none;
  }
}
body header .header-container .main-menu-container .main-menu > .menu-item::after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 0.8rem;
  margin-left: 4px;
  color: #951339;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container .main-menu > .menu-item::after {
    display: none;
  }
}
body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu {
    position: static;
    display: blocK;
  }
}
body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu {
  top: 42px;
  left: 0;
  box-shadow: #bdc3c7 1px 1px 14px;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu {
    box-shadow: none;
    margin-top: 0.25rem;
  }
}
body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu .menu-item {
  background-color: #f8f9fa;
  text-wrap: nowrap;
  list-style: none;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ecf0f1;
  min-width: 100px;
}
@media (max-width: 991px) {
  body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu .menu-item {
    border-bottom: none;
    padding: 0.25rem 1rem;
    font-size: 0.8em;
  }
}
body header .header-container .main-menu-container .main-menu > .menu-item .sub-menu .menu-item:last-child {
  border: none;
}
body header .header-container .main-menu-container .main-menu > .menu-item:hover .sub-menu {
  display: block;
}
body header .header-container .main-menu-container .main-menu > .menu-item:hover::after {
  color: #b5164a;
}
body main {
  display: flex;
  justify-content: center;
}
body main .container {
  width: 1000px;
}
body main .container.with-sidebar {
  width: 1270px;
}
body main .container .article-title {
  background-color: #f8f9fa;
  box-shadow: #bdc3c7 1px 1px 14px;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: 24px;
}
body main .container .article-title .breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #ecf0f1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body main .container .article-title .breadcrumb a {
  color: #951339;
  text-decoration: none;
}
body main .container .article-title .breadcrumb a:hover {
  color: #b5164a;
  text-decoration: underline;
}
body main .container .article-title .breadcrumb .separator {
  color: #7f8c8d;
  font-size: 0.75rem;
}
body main .container .article-title .breadcrumb .separator i {
  margin: 0;
}
body main .container .article-title .breadcrumb .current {
  color: #2c3e50;
  font-weight: 500;
}
body main .container .article-title h1 {
  margin: 0;
}
body main .container .article-with-sidebar {
  display: flex;
  gap: 24px;
}
@media (max-width: 1199px) {
  body main .container .article-with-sidebar {
    flex-direction: column;
  }
}
body main .container .article-with-sidebar article {
  width: 900px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  body main .container .article-with-sidebar article {
    width: 100%;
  }
}
body main .container .article-with-sidebar .sidebar {
  flex-grow: 1;
}
body main .container .article-with-sidebar .sidebar .card {
  background-color: #f8f9fa;
  box-shadow: #bdc3c7 1px 1px 14px;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: 24px;
}
@media (max-width: 991px) {
  body main .container .article-with-sidebar .sidebar .card {
    margin-top: 0;
  }
}
body main .container .article-with-sidebar .sidebar .card h2 {
  margin-top: 0;
}
body main .container .article-with-sidebar .sidebar .related-posts-grid .related-post-item {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ecf0f1;
}
body main .container .article-with-sidebar .sidebar .related-posts-grid .related-post-item:last-child {
  border: none;
}
body main .container article {
  background-color: #f8f9fa;
  box-shadow: #bdc3c7 1px 1px 14px;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: 24px;
  padding: 0;
}
body main .container article h1 {
  margin: 0 1rem 1rem 1rem;
}
body main .container article .post-thumbnail {
  width: 100%;
}
body main .container article .post-thumbnail img {
  width: 100%;
  height: auto;
}
body main .container article .post-content {
  padding: 1rem;
  font-size: 1.1em;
  line-height: 1.5;
}
@media (max-width: 991px) {
  body main .container article .post-content {
    font-size: 0.9em;
  }
}
body main .container article .post-content figure figcaption {
  text-align: center;
  color: #7f8c8d;
  font-size: 0.9em;
}
@media (max-width: 991px) {
  body main .container article .post-content iframe {
    width: 100%;
  }
}
body main .container article .post-content .callout {
  display: flex;
  gap: 1rem;
  background-color: #ecf0f1;
  padding: 1rem;
  border-radius: 24px;
}
@media (max-width: 991px) {
  body main .container article .post-content .callout {
    gap: 0;
  }
}
body main .container article .post-content .callout .icon-column {
  background-position: center 1em;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  body main .container article .post-content .callout .icon-column {
    height: 64px;
    background-position: left;
  }
}
body main .container article .post-content .callout .icon-desayuno {
  background-image: url("../images/desayuno.png");
}
body main .container article .post-content .callout .icon-comida {
  background-image: url("../images/comida.png");
}
body main .container article .post-content .callout .icon-cena {
  background-image: url("../images/cena.png");
}
body main .container article .post-content .callout p, body main .container article .post-content .callout li {
  font-size: 0.9em;
}
body main .container article .post-content .callout h2 {
  margin-top: 0;
  padding-top: 0.5em;
  font-size: 1.2em;
}
body main .container .post-navigation {
  background-color: #f8f9fa;
  box-shadow: #bdc3c7 1px 1px 14px;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: 24px;
}
body main .container .post-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body main .container .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 24px;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 991px) {
  body main .container .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  body main .container .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  body main .container .category-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
body main .container .category-grid .category-item {
  background-color: #f8f9fa;
  box-shadow: #bdc3c7 1px 1px 14px;
  padding: 1rem;
  box-sizing: border-box;
  display: block;
  padding: 0;
}
body main .container .category-grid .category-item .post-thumbnail {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
body main .container .category-grid .category-item h2 {
  margin: 1rem;
  font-size: 1em;
}

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

/*# sourceMappingURL=style.css.map */
