/************************************************************ 
*************************************************************  GLOBAL  
*************************************************************/
:root {
  --color-beige: #fff1c8;
  --color-dark: #202020;
  --color-mustard: #fab427;
  --color-bluish: #638e95;
  --color-light-beige: #c9c2ae;
  --color-amber: #83120c;
  --color-hoppy: #0a6113;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
}

@media screen and (min-width: 1001px) {
  html {
    font-size: 16px;
  }
}

html,
body {
  width: 100%;
  height: 100%;
  color: var(--color-dark);
  background-color: var(--color-beige);
  font-family: "PaperTigerSans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/************************************************************ 
*************************************************************  TEXTS   
*************************************************************/
h1,
h2,
h3,
h4,
h5,
a,
.display,
.display-name {
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
a i,
.display i,
.display-name {
  font-style: normal;
  font-weight: 300;
  display: block;
}

i.inline {
  display: inline-block;
}

.ff-serifp {
  font-family: "PaperTigerSrfP", serif;
}

.ff-serif {
  font-family: "PaperTigerSrf", serif;
}

.ff-sans {
  font-family: "PaperTigerSans", sans-serif;
}

.ff-src {
  font-family: "PaperTigerScr", cursive;
}

.display {
  font-size: 5.5625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.375rem;
  /* 78.652% */
  letter-spacing: 0.1113rem;
}

.display-name {
  font-size: 12rem;
  font-style: normal;
  font-weight: 400;
  line-height: 7rem;
  /* 78.652% */
  letter-spacing: 0.125rem;
}

.pink-ale .display-name{
	padding: 0 2rem;
}

h1,
.h1 {
  font-size: 50px;
  line-height: 3rem;
  letter-spacing: -0.125rem;
  /* max-width: 70%; */
  margin: 0 auto;
}

h2,
.h2 {
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0625rem;
}

h3,
.h3 {
  font-size: 2.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.758px;
}

h4,
.h4 {
  font-size: 1.7769rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.569px;
}

h5,
.h5 {
  font-size: 1.3331rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0267rem;
}

p,
.p {
  font-size: 1.3331rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.02rem;
}

a {
  color: var(--color-dark);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.02rem;
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--color-bluish);
  cursor: pointer;
}

@media (max-width: 1000px) {
  .display {
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.125rem;
    /* 78.652% */
    letter-spacing: 0.1113rem;
  }
  .display-name {
    font-size: 10rem;
    font-style: normal;
    font-weight: 400;
    line-height: 5.125rem;
    /* 78.652% */
    letter-spacing: 0.125rem;
  }
  h1,
  .h1 {
    font-size: 2.75rem;
    line-height: 3rem;
    letter-spacing: -0.125rem;
    /* max-width: 70%; */
    margin: 0 auto;
  }

  h2,
  .h2 {
    font-size: 2.4375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.0625rem;
  }

  h3,
  .h3 {
    font-size: 1.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.758px;
  }

  h4,
  .h4 {
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.569px;
  }

  h5,
  .h5 {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.0267rem;
  }
}

.color-white {
  color: #fff;
}

.color-beige {
  color: var(--color-beige);
}

.color-dark {
  color: var(--color-dark);
}

.color-mustard {
  color: var(--color-mustard);
}

.color-bluish {
  color: var(--color-bluish);
}

.color-light-beige {
  color: var(--color-light-beige);
}

.color-amber {
  color: var(--color-amber);
}

.color-hoppy {
  color: var(--color-hoppy);
}

.color-tropic{
	color: #00968C;
}

.bg-amber {
  background-color: var(--color-amber);
}

.bg-hoppy {
  background-color: var(--color-hoppy);
}

.bg-beige {
  background-color: var(--color-beige);
}

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

.bg-mustard {
  background-color: var(--color-mustard);
}

.bg-bluish {
  background-color: var(--color-bluish);
}

.bg-light-beige {
  background-color: var(--color-light-beige);
}

.border-bottom-mustard {
  border-bottom: 1px solid var(--color-mustard);
}

.opacity-80 {
  opacity: 0.8;
}

/* logos and images sizes */
.insta-logo {
  width: 3.125rem;
  height: auto;
  margin: 0 auto;
}
.menu-logo {
  width: 3rem;
  height: auto;
  margin: 0 auto;
}
.header-logo {
  width: 10rem;
  height: auto;
  margin: 0 auto;
  padding: 1rem 0;
}
.hero-img {
  width: 30.875rem;
  margin: 0 auto;
}
.hero-img-new {
  width: 16.875rem;
  margin: 0 auto;
}
.hero-guau-img {
  max-width: 28.5rem;
  margin: 0 auto;
}
.big-things-logo {
  width: 17.625rem;
  margin: 0 auto;
}
.hoppy-ale-logo {
  width: 46.875rem;
  margin: 11.5rem auto;
}
.sabor-guau-logo {
  width: 34.625rem;
  margin: 0rem auto;
}
.sabor-guau-logos {
  width: 10.125rem;
  margin: 0rem auto;
}
.dog-lovers-logo {
  width: 34.625rem;
  margin: 0rem auto;
}
.experimenta-dog-logo {
  width: 10.25rem;
  margin: 0rem auto;
}
.footer-logo {
  width: 7.875rem;
  margin: 0rem auto;
}
.curacavi-logo {
  width: 12rem;
}
@media (max-width: 1000px) {
  .hero-guau-img {
    max-width: 18.5rem;
    margin: 0 auto;
    margin-top: -1.5rem;
    margin-bottom: -3rem;
  }
}
/* Placeholder styles for Header */
header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  transition: all 0.5s ease;
  padding-top: 3rem;
  z-index: 999;
}

header.scrolled {
  padding-top: 0rem;
  background-color: var(--color-mustard);
}

/* Placeholder styles for overlapping images */
.section-with-overlap {
  position: relative;
}

img.middle-overlap {
  position: absolute;
  width: 6rem; /* Adjust size as needed */
  z-index: 9;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0; /* Align at the top of the section */
}

img.top-left-overlap {
  position: absolute;
  width: 44rem;
  height: auto;
  top: -30%;
  left: 0;
  animation: floatUpDown 4s infinite; /* 3 seconds duration and infinite repetition */
}
@media (max-width: 1000px) {
  img.middle-overlap {
    position: absolute;
    width: 6rem; /* Adjust size as needed */
    transform: translate(-50%, -50%);
    left: 50%;
    top: 0; /* Align at the top of the section */
  }
  img.top-left-overlap {
    position: relative;
    margin-top: -12rem;
    width: 44rem;
    height: auto;
    top: unset;
    left: unset;
    animation: floatUpDown 4s infinite; /* 3 seconds duration and infinite repetition */
  }
}
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}
/* Full-page Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-dark);
  z-index: 998;
}

.marquee {
  background-color: #f0b64a;
  color: var(--color-dark);
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 99;
}

.marquee span {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  animation: marquee 10s linear infinite;
  text-transform: uppercase;
}

/* Two distinct styles for the word "news" */
.marquee span.style1 {
  color: #f7ee9b;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 83.333% */
  letter-spacing: 1px;
  text-transform: capitalize;
}

.marquee span.style2 {
  color: #fff1c8;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 83.333% */
  letter-spacing: 1px;
  text-transform: capitalize;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-500%, 0);
  }
}

/* sections */

section.hero {
  padding: 12rem 0 0 0;
  background-image: url("https://cervezaodissea.cl/wp-content/uploads/2024/11/odissea-desktop-2000x800px.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
section.tropical {
  padding: 12rem 0 0 0;
  background-image: url("https://cervezaodissea.cl/wp-content/uploads/2026/01/pink-ale-banner-desktop.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media (max-width: 1000px) {
  	section.hero {
		padding: 12rem 0 5rem 0;
		background-image: url("https://cervezaodissea.cl/wp-content/uploads/2024/11/odissea-mobile-420x800px.jpg");
		background-position: center; /* Ensures the background image remains centered */
		background-size: cover;
	}
	section.tropical {
	  padding: 12rem 0 0 0;
	  background-image: url("https://cervezaodissea.cl/wp-content/uploads/2026/01/pink-ale-banner-mobile.png");
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-position: top center;
	}
}
@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.swiper-pagination {
  bottom: 4rem !important;
  z-index: 2 !important;
}
@media (max-width: 1000px) {
  .swiper-pagination {
    bottom: -1rem !important;
    z-index: 2 !important;
  }
}

.swiper-pagination-bullet {
  background-color: var(--color-beige) !important;
  opacity: 0.5 !important;
  margin: 0 1rem !important;
  width: 1rem !important;
  height: 1rem !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-mustard) !important;
  opacity: 1 !important;
}

.rotateY-animation {
  animation: rotateY 10s infinite linear;
  transform-style: preserve-3d;
}

section.big-things {
  background-image: url("../img/odissea-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  section.big-things {
    background-image: url("../img/odissea-bg.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}

.video-background {
  object-fit: cover;
  z-index: 1;
}
section.sabor-guau {
  background-image: url("../img/kross_odissea_background_hero3_b.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  section.sabor-guau {
    background-image: url("../img/kross_odissea_background_hero3_b.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}
section.perro-alado {
  background-image: url("../img/kross_odissea_background5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  section.perro-alado {
    background-image: url("../img/kross_odissea_background5.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}
section.dog-lovers {
  background-image: url("../img/kross_odissea_background_hero3_b.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 0;
  background-position: top center;
}
@media (max-width: 1000px) {
  section.dog-lovers {
    background-image: url("../img/kross_odissea_background_hero3_b.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}
.collapse {
  transition: height 0.35s ease;
}
section.experimenta {
  background-image: url("../img/kross_odissea_background_black_1920x1920.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 5rem 0;
}
@media (max-width: 1000px) {
  section.experimenta {
    background-image: url("../img/kross_odissea_background_black_1920x1920.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}
/* Custom class for image transition */
.transition-img {
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
figure:hover .transition-img {
  transform: scale(1.1);
}
section.saber-mas {
  background-image: url("../img/kross_odissea_background_yellow_1920x600.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  section.saber-mas {
    background-image: url("../img/kross_odissea_background_yellow_1920x600.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}
section.pre-footer {
  background-image: url("../img/kross_odissea_background_crema_1920x1920.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 0;
}
@media (max-width: 1000px) {
  section.pre-footer {
    background-image: url("../img/kross_odissea_background_crema_1920x1920.jpg");
    background-position: center; /* Ensures the background image remains centered */
  }
}
footer {
  background-color: var(--color-dark);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 0;
}
@media (max-width: 1000px) {
  footer {
    background-color: var(--color-dark);
    background-position: center; /* Ensures the background image remains centered */
  }
}

/* buttons */

/* Common styles for all custom buttons */
.custom-btn {
  max-width: 15rem;
  background-color: var(--color-mustard);
  color: var(--color-dark);
  text-align: center;
  font-family: "PaperTigerSans", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 85.714% */
  border: none;
  padding: 10px 20px;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1); /* Full opacity */
  transition: box-shadow 0.3s ease, top 0.3s ease, left 0.3s ease;
}

/* Specific styles for menu button */
.custom-btn-menu {
  width: 50px; /* Set width */
  height: 50px; /* Set height */
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Existing menu-logo */
.menu-logo {
  width: 1.5rem;
  height: auto;
  margin: 0 auto;
}

/* Specific style for menu-logo inside custom-btn-menu */
.custom-btn-menu .menu-logo {
  margin: 0; /* Reset margin to 0 */
}

/* Hover effect */
.custom-btn:hover {
  text-decoration: none;
  font-style: normal;
  color: var(--color-dark);
  background-color: var(--color-mustard);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 1); /* Full opacity */
}

/* Active/Visited/Clicked state */
.custom-btn:active {
  box-shadow: none;
  top: 4px;
  left: 4px;
}

.mailto-btn {
  background-color: var(--color-dark);
  color: var(--color-mustard);
  border: none;
  border-radius: 0%;
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.mailto-btn:hover {
  background-color: var(--color-dark);
  border: none;
  border-radius: 0%;
  color: var(--color-beige);
}

/* Specific styles for round button */
.custom-btn-round {
  width: 50px; /* Set width */
  height: 50px; /* Set height */
  padding: 0;
  border-radius: 50%; /* Make it round */
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Fixed position */
  bottom: 5rem; /* Position from bottom */
  right: 2rem; /* Position from right */
  z-index: 995;
}

.custom-btn-round:active {
  box-shadow: none;
  bottom: 5rem;
  right: 2rem;
  top: unset;
  left: unset;
}

/* Specific style for menu-logo inside custom-btn-round */
.custom-btn-round .menu-logo {
  margin: 0; /* Reset margin to 0 */
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

.fadeInUp.animate {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Style for the ul */
.overlay-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Style for each list item */
.overlay-menu li {
  padding: 10px;
  text-align: center;
}

/* Style for each anchor tag in list item */
.overlay-menu li a {
  color: var(--color-mustard);
  border-bottom: 0px solid var(--color-beige);
  text-decoration: none;
  font-size: 38px;
  transition: color 0.5s ease, border-bottom 0.5s ease;
}

/* Hover effect */
.overlay-menu li a:hover {
  color: var(--color-beige);
  border-bottom: 1px solid var(--color-beige);
  text-decoration: none;
  cursor: pointer;
}

/* age gate */

/* Age Gate Overlay */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Age Gate Box */
.age-gate-box {
  background-color: transparent;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.module-newsletter .cf7-custom-form p {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.module-newsletter .wpcf7-response-output {
  display: block;
  width: 100%;
}
.module-newsletter form.wpcf7-form {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.module-newsletter .wpcf7-response-output {
  background-color: var(--color-beige);
}
.module-newsletter .disclaimer {
  margin-top: 2rem;
  display: block;
  width: 100%;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-subscribe{
  margin: 1rem auto;
}

.module-newsletter a {
  text-transform: capitalize;
  font-weight: bold;
  transition: all 0.5s ease;
}
.module-newsletter a:hover {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--color-beige);
}
.module-newsletter .wpcf7-not-valid-tip {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}

.input-subscribe {
  padding: 0.9rem;
  height: auto;
  max-width: 18rem;
  background-color: var(--color-dark);
  color: var(--color-mustard);
  border: none;
  border-radius: 0%;
  transition: color 0.3s ease;
}

/* Common styles for all custom buttons */
.btn-subscribe {
  max-width: 15rem;
  background-color: var(--color-mustard);
  color: var(--color-dark);
  text-align: center;
  font-family: "PaperTigerSans", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: none;
  padding: 0.5rem;
  width: auto;
  height: auto;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transition: box-shadow 0.3s ease, top 0.3s ease, left 0.3s ease;
}
/* Hover effect */
.btn-subscribe:hover {
  text-decoration: none;
  font-style: normal;
  color: var(--color-dark);
  background-color: var(--color-mustard);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 1); /* Full opacity */
}

input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.input-subscribe {
  width: 100% !important;
  min-width: 20rem !important;
  outline: none;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  box-shadow: none;
}

.encircled-atribute {
  width: 6rem;
  height: 6rem;
  background-color: var(--color-beige);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.encircled-atribute * {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.5rem;
}

.section-can {
  margin-top: -8rem;
  width: 24rem;
}

.tropic-ale .section-can {
  width: 22rem;
}

.pink-ale{
  background-image: url("https://cervezaodissea.cl/wp-content/uploads/2025/12/Pink_fondo__1920x1080px-scaled.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.amber-ale {
  background-image: url("../img/amber-ale-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hoppy-ale {
  background-image: url("../img/hoppy-ale-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  padding: 3rem 0;
}

.tropic-ale {
  background-image: url("https://cervezaodissea.cl/wp-content/uploads/2024/11/Bannerweb-1920x1080px-03.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  padding: 4rem 0;
}

.contenedor-items-header{
	display: flex;
	gap: 20px;
    align-items: center;
}

.insta-header {
	display: flex;
    width: 50px;
	margin-top: 5px;
}

.insta-header-img {
	position: relative;
	width: 40px;
	display:flex !important;
}

.comprar-header{
	margin-top: 8px;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 24px;
    background: var(--color-mustard);
    text-decoration: none !important;
    color: black;
	
	&:hover{
		color:black;
	}
}

.comprar-mobile {
	display: none;
}



@media (max-width: 1000px) {
	 .comprar-header{
		display:none;
	}
	
	.contenedor-items-header{
		display: -webkit-inline-box;
		gap: 10px;
	}
	
	.comprar-mobile-box{
		width: min-content;
    	margin: auto;
	}
	
	.comprar-mobile {
		display: block;
		background: var(--color-mustard);
		border-radius: 5px;
		padding: 5px 25px;
		color: black !important;
	}
}

img.fixed-gif.float-end.img-fluid {
    width: 170px;
}

@media (max-width: 500px) {
	.tropic-ale {
	  background-position: right;
	}
	img.fixed-gif.float-end.img-fluid {
    	width: auto;
	}
}

@media (max-width: 400px) {
	.contenedor-items-header{
		display: flex;
	}
}

.cart-icon{
	    height: 25px;
}


