/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/************************************
    Typography
*******************************/
/* Base font size for the whole document */
html {
  font-size: 100%;
  /* Equivalent to 16px */
}

/* Body font settings with responsive scaling */
body {
  font-size: calc(1rem + 0.5vw);
  /* Responsive base font size */
  line-height: 1.6;
  /* Optimized line height for readability */
}

/* Responsive headings and paragraph settings */
h1 {
  font-size: calc(2rem + 1.5vw);
  /* Larger and more responsive for h1 */
  line-height: 1.3;
}

h2 {
  font-size: calc(1.5rem + 1vw);
  /* Responsively smaller than h1 */
  line-height: 1.35;
  margin-bottom: 1rem;
}

h3 {
  font-size: calc(1.3rem + 0.5vw);
  /* Smaller than h2 */
  line-height: 1.4;
}

h4 {
  font-size: calc(1.3rem + 0.5vw);
  /* Smaller than h2 */
  line-height: 1.4;
}

p {
  font-size: calc(1rem + 0.5vw);
  /* Same as body but can be independently adjusted */
  line-height: 1.5;
}

/* Media queries for specific breakpoints */
@media only screen and (max-width: 600px) {
  body, p {
    font-size: calc(1rem + 0.3vw);
  }

  h1 {
    font-size: calc(1.8rem + 1vw);
  }

  h2 {
    font-size: calc(1.4rem + 0.5vw);
  }

  h3 {
    font-size: calc(1.2rem + 0.3vw);
  }

  h4 {
    font-size: calc(1.2rem + 0.3vw);
  }
}
@media only screen and (min-width: 601px) and (max-width: 1100px) {
  body, p {
    font-size: calc(1rem + 0.5vw);
  }

  h1 {
    font-size: calc(2rem + 1.2vw);
  }

  h2 {
    font-size: calc(1.5rem + 0.8vw);
  }

  h3 {
    font-size: calc(1.3rem + 0.4vw);
  }

  h4 {
    font-size: calc(1.3rem + 0.4vw);
  }

  p {
    font-size: calc(0.5rem + 0.4vw);
    /* Same as body but can be independently adjusted */
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1101px) {
  body, p {
    font-size: calc(1rem + 0.6vw);
  }

  h1 {
    font-size: calc(2.5rem + 1.5vw);
  }

  h2 {
    font-size: calc(1.4rem + 1vw);
  }

  h3 {
    font-size: calc(1.4rem + 0.8vw);
  }

  h4 {
    font-size: calc(1.4rem + 0.8vw);
  }

  h5 {
    font-size: calc(0.9rem + 0.8vw);
  }

  p {
    font-size: calc(0.8rem + 0.4vw);
    /* Same as body but can be independently adjusted */
    line-height: 1.5;
  }
}
h2, h3 {
  font-family: "houschka-rounded", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h4, h5, a, p {
  font-family: "houschka-rounded", sans-serif;
  font-weight: 300;
  font-style: normal;
}

a {
  text-decoration: none;
}
a:hover {
  color: #dedede;
  cursor: pointer;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .grid2 {
    grid-template-columns: 1fr 1fr;
    gap: 2%;
  }
}

.grid4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .grid4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2%;
  }
}

.pad-bottom {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .pad-bottom {
    padding-bottom: 5%;
  }
}

section {
  padding: 20px;
}
@media (min-width: 992px) {
  section {
    padding: 1%;
  }
}

.decor {
  margin: 2rem auto;
  width: 100%;
  height: 10px;
  display: none;
}
@media (min-width: 992px) {
  .decor {
    display: grid;
  }
}
.decor div {
  height: 10px;
}
.decor-white div {
  background-color: #ffffff;
}
.decor-black div {
  background-color: #000000;
}

.background-image {
  background-image: url("../img/calvera-image.png");
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  min-height: 80vh;
}

header {
  padding: 20px;
  background-color: #081740;
  color: #ffffff;
}
@media (min-width: 992px) {
  header {
    padding: 1%;
  }
}
header img {
  max-width: 40%;
}
@media (min-width: 992px) {
  header img {
    max-width: 24%;
    margin: 3rem 0 5rem 0;
  }
}

.header-container {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .header-container {
    flex-direction: column;
  }
}

.language {
  display: flex;
  justify-content: flex-end;
}
.language a {
  color: #ffffff;
}

.product {
  background-color: #e6e7e8;
}

footer {
  padding: 20px 20px 40px 20px;
  background: #ff4500;
}
@media (min-width: 992px) {
  footer {
    padding: 1% 1% 3% 1%;
  }
}
footer p, footer a {
  color: #ffffff;
}

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