/*
* Theme name: Vesna
* Author name: Vesna Agency
*/
:root {
  --heading-font-family: "Coolvetica", sans-serif;
  --body-font-family: "Coolvetica", sans-serif;
  --black: #101010;
  --white: #fff;
  --orange-accent: #FF6A0E;
  --yellow-accent: #F6BE33;
  --orange-bright: #FF7A00;
  --dark-base: #363432;
  --green-accent: #328B40;
  --brown-accent: #725309;

  
  --dark-40: rgba(54, 52, 50, 0.4); 
  --green-50: rgba(50, 139, 64, 0.5); 
  --dark-15: rgba(54, 52, 50, 0.15); 
  

}

@font-face {
  font-family: "Coolvetica";
  src:
    url("./assets/fonts/CoolveticaRegular.woff2") format("woff2"),
    url("./assets/fonts/CoolveticaRegular.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /*reset for mobile browsers */
  font-weight: normal;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
  object-fit: cover;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
  font-size: calc(8.53px + 7.47 * ((100vw - 960px) / 840));
}

.container {
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

section.wrapper {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

section.wrapper--large {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media screen and (max-width: 959px) {
  html {
    
    font-size: calc(14.66px + 1.34 * ((100vw - 360px) / 15));
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  section.wrapper,
  section.wrapper--large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

svg path {
  fill: inherit;
  stroke: inherit;
}

body {
  min-width: 360px;
  overflow-x: hidden;
  font-family: var(--body-font-family);
  font-weight: 600;
  font-style: normal;
}

/* HEIGHT & WIDTH */
.h--full {
  height: 100%;
}

.w-full {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .w-full--mobile {
    width: 100%;
  }
}

/* FLEX CLASSES */
.flex {
  display: flex;
}
.flex.flex--row {
  flex-direction: row;
}
.flex.flex--column {
  flex-direction: column;
}
.flex.items--center {
  justify-content: center;
  align-items: center;
}
.flex.align--start {
  align-items: flex-start;
}
.flex.align--center {
  align-items: center;
}
.flex.align--end {
  align-items: flex-end;
}
.flex.justify--start {
  justify-content: flex-start;
}
.flex.justify--center {
  justify-content: center;
}
.flex.justify--end {
  justify-content: flex-end;
}
.flex.justify--between {
  justify-content: space-between;
}
.flex.flex--wrap {
  flex-wrap: wrap;
}
.flex.flex--grow {
  flex-grow: 1;
}

@media screen and (max-width: 959px) {
  .flex.flex--row--mobile {
    flex-direction: row;
  }
  .flex.flex--row-reverse--mobile {
    flex-direction: row-reverse;
  }
  .flex.flex--column--mobile {
    flex-direction: column;
  }
  .flex.items--center--mobile {
    justify-content: center;
    align-items: center;
  }
  .flex.align--start--mobile {
    align-items: flex-start;
  }
  .flex.align--center--mobile {
    align-items: center;
  }
  .flex.align--end--mobile {
    align-items: flex-end;
  }
  .flex.justify--start--mobile {
    justify-content: flex-start;
  }
  .flex.justify--center--mobile {
    justify-content: center;
  }
  .flex.justify--end--mobile {
    justify-content: flex-end;
  }
  .flex.justify--between--mobile {
    justify-content: space-between;
  }
  .flex.wrap--mobile {
    flex-wrap: wrap;
  }
  .flex.nowrap--mobile {
    flex-wrap: nowrap;
  }
}

/* SPACING */
.gap--4 {
  gap: 4px;
}

.gap--8 {
  gap: 0.5rem;
}

.gap--12 {
  gap: 0.75rem;
}

.gap--16 {
  gap: 1rem;
}

.gap--20 {
  gap: 1.25rem;
}

.gap--32 {
  gap: 2rem;
}

.gap--40 {
  gap: 2.5px;
}

.gap--48 {
  gap: 3rem;
}

.gap--64 {
  gap: 4rem;
}

@media screen and (max-width: 959px) {
  .gap--4--m {
    gap: 4px;
  }

  .gap--8--m {
    gap: 0.5rem;
  }

  .gap--12--m {
    gap: 0.75rem;
  }

  .gap--16--m {
    gap: 1rem;
  }

  .gap--20--m {
    gap: 1.25rem;
  }

  .gap--32--m {
    gap: 2rem;
  }

  .gap--40--m {
    gap: 2.5rem;
  }

  .gap--48--m {
    gap: 3rem;
  }

  .gap--64--m {
    gap: 4rem;
  }
}

/*MARGIN*/
.mb--8 {
  margin-bottom: 0.5rem;
}

.mb--20 {
  margin-bottom: 1.25rem;
}

.mb--24 {
  margin-bottom: 24px;
}

.mb--32 {
  margin-bottom: 2rem;
}

.mb--36 {
  margin-bottom: 2.25rem;
}

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

.mb--48 {
  margin-bottom: 3rem;
}

.mb--64 {
  margin-bottom: 64px;
}

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

/* --- MARGINS --- */
/* Top */
.mt--8 {
  margin-top: 0.5rem;
}
.mt--16 {
  margin-top: 1rem;
}
.mt--24 {
  margin-top: 1.5rem;
}
.mt--32 {
  margin-top: 2rem;
}
.mt--40 {
  margin-top: 2.5rem;
}
.mt--48 {
  margin-top: 3rem;
}
.mt--64 {
  margin-top: 4rem;
}

/* Bottom */
.mb--8 {
  margin-bottom: 0.5rem;
}
.mb--16 {
  margin-bottom: 1rem;
}
.mb--24 {
  margin-bottom: 1.5rem;
}
.mb--32 {
  margin-bottom: 2rem;
}
.mb--40 {
  margin-bottom: 2.5rem;
}
.mb--48 {
  margin-bottom: 3rem;
}
.mb--64 {
  margin-bottom: 4rem;
}

/* Left */
.ml--8 {
  margin-left: 0.5rem;
}
.ml--16 {
  margin-left: 1rem;
}
.ml--24 {
  margin-left: 1.5rem;
}
.ml--32 {
  margin-left: 2rem;
}

/* Right */
.mr--8 {
  margin-right: 0.5rem;
}
.mr--16 {
  margin-right: 1rem;
}
.mr--24 {
  margin-right: 1.5rem;
}
.mr--32 {
  margin-right: 2rem;
}

/* --- PADDINGS --- */
/* All sides */
.p--16 {
  padding: 1rem;
}
.p--24 {
  padding: 1.5rem;
}
.p--32 {
  padding: 2rem;
}
.p--48 {
  padding: 3rem;
}

/* Top & Bottom (Vertical) */
.py--16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py--24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py--32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py--48 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py--64 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Left & Right (Horizontal) */
.px--16 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px--24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px--32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* --- MOBILE ADAPTIVE (max-width: 959px) --- */
@media screen and (max-width: 959px) {
  /* Margins Mobile */
  .mt--0--m {
    margin-top: 0 !important;
  }
  .mt--16--m {
    margin-top: 1rem;
  }
  .mt--24--m {
    margin-top: 1.5rem;
  }
  .mt--32--m {
    margin-top: 2rem;
  }

  .mb--16--m {
    margin-bottom: 1rem;
  }
  .mb--24--m {
    margin-bottom: 1.5rem;
  }
  .mb--32--m {
    margin-bottom: 2rem;
  }

  /* Paddings Mobile */
  .p--16--m {
    padding: 1rem;
  }
  .p--24--m {
    padding: 1.5rem;
  }

  .py--24--m {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py--32--m {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .px--16--m {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* HEADINGS */

.heading {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}

.heading strong {
  color: var(--green-accent);
  font-weight: 400;
}


.heading-1 {
  font-size: 13.75rem; 
  line-height: 100%;
  letter-spacing: 0;
}

.heading-2 {
  font-size: 6rem;
  line-height: 100%;
  letter-spacing: 0.02em; 
}

.heading-3 {
  font-size: 5rem; 
  line-height: 100%;
  letter-spacing: 0.02em; 
}

.heading-4 {
  font-size: 4.5rem; 
  line-height: 100%;
  letter-spacing: 0.02em; 
}

.heading-5 {
  font-size: 3.75rem; 
  line-height: 110%;
  letter-spacing: 0.05em;
}

.heading-6 {
  font-family: "Bryndan Write", cursive; 
  font-size: 3rem; 
  line-height: 110%;
  letter-spacing: -0.04em; 
}

.heading-7 {
  font-size: 2.25rem; 
  line-height: 100%;
  letter-spacing: 0.02em; 
}

.text {
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.02em;
}

.text.text--large {
  font-size: 2rem; 
}

@media screen and (max-width: 959px) {
  .heading-1, .heading-1{
    font-size: 5.3125rem;
    line-height: 90%;
    letter-spacing: 0;
  }

  .heading-2, .heading-2{
    font-size: 2.25rem; 
    line-height: 100%;
    letter-spacing: 0;
  }

  .heading-3, .heading-3{
    font-size: 2.25rem; 
    line-height: 110%;
    letter-spacing: 0.02em;
  }

  .heading-4, .heading-4 {
    font-size: 2.25rem; 
    line-height: 110%;
    letter-spacing: 0.02em;
  }

  .heading-5, .heading-5 {
    font-size: 2rem; 
    line-height: 100%;
    letter-spacing: -0.01em; 
  }

  .heading-6, .heading-6 {
    font-size: 2rem;
    line-height: 110%;
    letter-spacing: 0.02em;
  }

  .heading-7, .heading-7 {
    font-size: 1.25rem;
    line-height: 110%;
    letter-spacing: 0.02em;
  }

  .text.text--large {
    font-size: 1.25rem; 
    line-height: 110%;
    letter-spacing: 0.02em;
  }
}

/* COLORS */
.color--white {
  color: var(--white);
}
.color--black {
  color: var(--black);
}
.color--black-80 {
  color: var(--black-80);
}
.color--black-40 {
  color: var(--black-40);
}
.color--black-30 {
  color: var(--black-30);
}

/* BORDER RADIUS */
.br--20 {
  border-radius: 1.25rem;
}
.br--24 {
  border-radius: 1.5rem;
}
.br--32 {
  border-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .br--16--m {
    border-radius: 1rem;
  }
  .br--20--m {
    border-radius: 1.25rem;
  }
  .br--24--m {
    border-radius: 1.5rem;
  }
  .br--32--m {
    border-radius: 2rem;
  }
}

/* BUTTON */
.btn {
  /* GENERAL STYLES FOR ALL BUTTONS */
}

.btn.btn--primary {
  /* STYLES FOR SPECIFIC BUTTON STYLE*/
}

/* ICON */
.icon {
  display: flex;
  width: 4.5rem;
  height: 4.5rem;
  justify-content: center;
  align-items: center;
  background-color: var(--light-green);
  border-radius: 100%;
  flex-shrink: 0;
}

.icon img,
.icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

@media screen and (max-width: 959px) {
  .icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .icon img,
  .icon svg {
    width: 1.203125rem;
    height: 1.203125rem;
  }

  .icon.icon--large {
    width: 4rem;
    height: 4rem;
  }

  .icon.icon--large img,
  .icon.icon--large svg {
    width: 2rem;
    height: 2rem;
  }
}

/* MEDIA */
.media {
  position: relative;
  overflow: hidden;
}

.media img,
.media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM */
form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}

form input:not([type="submit"]):not([type="button"]) {
  border-radius: 900px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  width: 100%;

  color: rgba(255, 255, 255, 1);
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.01125rem;
}

form .form__terms {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

form .form__terms a {
  font-weight: 700;
  color: var(--white);
}

@media screen and (max-width: 959px) {
  form .form__bottom p {
    width: 100%;
    text-align: center;
  }

  form .form__bottom input[type="submit"] {
    width: 100%;
  }
}

.wpcf7 {
  position: relative;
}

.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  color: white;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7 form.invalid input:not([type="submit"]):not([type="button"]) {
  border-color: #ff0000;
}

section .wpcf7 form.sent .wpcf7-response-output {
  margin-left: 0px;
  margin-right: 0px;
  background-color: var(--green);
  border-color: var(--green);
  border-radius: 1rem;
  padding: 1rem;
}

/* HEADER */

/* FOOTER */

@media screen and (min-width: 960px) {
  .hide-desktop {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .hide-mobile {
    display: none;
  }
}
.header, .burger-menu{
  display: none;
}