@font-face {
    font-family: 'Baron-Regular';
    src: url('../font/Baron-Regular.woff2') format('woff2'),
        url('../font/Baron-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Baron-Medium';
    src: url('../font/Baron-Medium.woff2') format('woff2'),
        url('../font/Baron-Medium.woff') format('woff');
    font-weight: medium;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Baron-Bold';
    src: url('../font/Baron-Bold.woff2') format('woff2'),
        url('../font/Baron-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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;
}

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

html {
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

body {
  margin: 0;
  font-family: "Baron";
  color: #000;
  background: #020202;
}

a {
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}


/* HERO */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}

.hero-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 148px;
  background: linear-gradient(
    180deg,
    #AD0000 6%,
    #DF0E11 45%,
    #AD0000 75%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 90vh;
}

.hero-logo img {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  transform-origin: center center;
  z-index: 20;
}

.hero-title {
  position: fixed;
  top: 36vh;
  z-index: 10;
  pointer-events: none;
}

.hero-title img {
  width: 66vw;
  max-width: 990px;
}

.landscape {
  position: relative;
  z-index: -; 
  margin-top: -36vh;
}

.landscape img {
  width: 100vw;        
  max-width: 100%;   
  height: auto;
  display: block; 
}

@media (max-width: 768px) {
  .hero-stripe {
    width: 84px;
  }
  .hero-logo img {
    width: 72px;
  }
  .hero-title {
    top: 36vh;
  }
  .hero-title img {
    width: 90vw;
  }
  .landscape {
    margin-top: -30vh;
  }
  .landscape img { 
    height: 30vh;
    display: block; 
    object-fit: cover;
    object-position: 70%;
  } 
}


/* Animation */

.hero-stripe {
  animation: animate-stripe 1s cubic-bezier(0.00,0.93,0.60,0.95) forwards;
  clip-path: inset(0 0 0 0);
}
@keyframes animate-stripe {
  from {
    clip-path: inset(0 0 100% 0);
  }
}

.hero-logo img {
  animation: animate-logo 3s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
  clip-path: circle(100% at 50% 50%);
}

@keyframes animate-logo {
  from {
    transform: translateX(-50%) scale(0.6);
    clip-path: circle(0% at 50% 50%);
  }
}

.hero-title {
  animation: slide-hero 1.4s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

@keyframes slide-hero {
  from {
    opacity: 0;
    scale: 0.8;
    filter: blur(10px);
  }
}

/* STORY */

.story {
  background: #fff;
}

.story-inner {
  padding: 80px 0 200px 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
  background: #fff
}

.story-inner p {
  color: #000;
  font-family: "Baron-Medium";
  font-size: 22px;
  line-height: 140%;
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .story-inner {
   padding: 40px 20px 140px 20px;
  }
  .story-inner p {
    font-size: 18px;
  }
}

/* Animation */

.story-inner  {
  animation: story-text ease-in both;
  animation-timeline: view(); 
  animation-range: 0vh 50vh; 
}

@keyframes story-text {
  from {
    opacity: 0;
    translate: 0 12vh;
  }
}

/* PRODUCT */

.product {
  background: #020202;
  padding: 360px 0 140px; 
  position: relative;
}

.product-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 148px;
  background: linear-gradient(
    180deg,
    #AD0000 6%,
    #DF0E11 45%,
    #AD0000 75%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  height: 480px;
  z-index: 1;
}

.product-logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.product-logo img {
  width: 400px;
  height: auto;
}

.product-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Steklenica */
.bottle {

}

.product-bottle {
  display: block;
  max-width: 560px;
  height: auto;
}

@media (max-width: 768px) {
  .product {
    padding: 200px 0 200px;
  }
  .product-stripe {
    width: 84px;
    height: 320px;
  }
  .product-logo img {
    width: 220px;
  }
  .product-bottle {
    width: 100%;
    margin: 0 auto;
  }
}


/* Animation */

.product-stripe  {
  animation: brand-reveal ease-in both;
  animation-timeline: view(); 
  animation-range: 0vh 50vh; ;
}

@keyframes brand-reveal {
  from {
    opacity: 0;
    scale: 1; 
    translate: 0 -60vh;
  }
}

.product-logo  {
  animation: product-logo-reveal ease-in both;
  animation-timeline: view(); 
  animation-range: 0vh 60vh; 
}

@keyframes product-logo-reveal {
  from {
    opacity: 0;
    translate: 0 12vh;
  }
}


.bottle {
  animation: animate-bottle ease-in both;
  animation-timeline: view();
  animation-range: entry 0vh 40vh;
}

@keyframes animate-bottle {
  from {
    transform: scale(.6);
  }
}

/* Specifikacije */
.specs {
  margin: 100px 0 80px;
  width: 560px;
}

.spec-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 22px;
  color: #FFF;
  line-height: 140%;
}

.spec-row dt {
  min-width: 140px;
  font-family: "Baron-Regular";
}

.spec-row dd {
  margin: 0;
  font-family: "Baron-Medium";
}

/* Gumb */
.cta {
  display: inline-block;
  width: 100%;
  font-size: 22px;
  padding: 24px;
  background: #DF0E11;
  font-family: "Baron-Medium";
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta:hover {
  background: #B70000;
}

/* Opomba */
.note {
  margin-top: 40px;
  color: #666;
  font-family: "Baron-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 768px) {
  .specs {
    margin: 100px 0 80px;
    width: 100%;
  }
  .product-content {
    padding: 0 20px;
  }
  .spec-row {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .spec-row dt {
    min-width: 80px;
  }

  .cta {
    font-size: 18px;
  }

}

.spec-row,
.cta,
.note {
  opacity: 0; /* osnovno stanje: skrito */
  animation: product-info 1s ease-out both;
  animation-timeline: view();
  animation-range: 0vh 20vh;
}

@keyframes product-info {
  from {
    opacity: 0;
    transform: translateY(6vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ------ Reviews ------- */


.reviews-inner {
  margin-bottom: 120px;
}

.reviews {
  max-width: 560px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  align-items: center;
}

.reviews-title {
  margin-bottom: 48px;
  text-align: center;
  font-family: "Baron-Medium";
  font-size: 32px;
  color: #ffffff;
}

.reviews-card {
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid #333333;
  background: #000;
}

.reviews-text {
  font-family: "Baron-Regular";
  font-size: 22px;
  color: #FFF;
  line-height: 140%;
  margin-bottom: 20px;
}

.reviews-meta {
  font-family: "Baron-Regular";
  font-size: 18px;
  line-height: 140%;
  color: #808080;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .reviews {
    padding: 0 20px;
  }
  .reviews-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .reviews-text {
    font-size: 18px;
  }
  .reviews-meta {
    font-size: 14px;
  }
}

/* animation */
.reviews-title,
.reviews-card {
  opacity: 0; /* osnovno stanje: skrito */
  animation: product-info 1s ease-out both;
  animation-timeline: view();
  animation-range: 0vh 20vh;
}

@keyframes product-info {
  from {
    opacity: 0;
    transform: translateY(6vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* FOOTER */

.footer {
  padding-bottom: 40px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}

.footer p {
  color: #666666;
  font-family: "Baron-Regular";
  font-size: 14px;
  line-height: 140%;
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 0px;
    text-align: left;
    padding: 20px;
  }
  .footer-logo {
    margin-bottom: 100px;
  }
  .footer-logo img {
    width: 90%;   
  }
}

/* Animation */

.footer-logo  {
  animation: footer-logo ease-in both;
  animation-timeline: view();
  animation-range: entry 0vh 40vh;
}

@keyframes footer-logo {
  from {
    filter: blur(20px);
    opacity: 0;
    scale: .90;
    translate: 0 10vh;
  }
}













/* Kontakt */

/* HERO */

.kontakt-hero {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}

.kontakt-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 148px;
  background: linear-gradient(
    180deg,
    #AD0000 6%,
    #DF0E11 45%,
    #AD0000 75%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 240px;
}

.kontakt-logo img {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  transform-origin: center center;
  z-index: 20;
}

@media (max-width: 768px) {
  .kontakt-stripe {
    width: 84px;
  }
  .kontakt-logo img {
    width: 72px;
  }
}

/* Animation */

.kontakt-stripe {
  animation: animate-kontakt-stripe 1s cubic-bezier(0.00,0.93,0.60,0.95) forwards;
  clip-path: inset(0 0 0 0);
}
@keyframes animate-kontakt-stripe {
  from {
    clip-path: inset(0 0 100% 0);
  }
}

.kontakt-logo img {
  animation: animate-kontakt-logo 3s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
  clip-path: circle(100% at 50% 50%);
}

@keyframes animate-kontakt-logo {
  from {
    transform: translateX(-50%) scale(0.6);
    clip-path: circle(0% at 50% 50%);
  }
}


/* kontakt form */

.kontakt {
  background: #FFF;
  padding: 80px 0 200px 0;
}

.form {
	max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.form h2 {
  color: #000;
  font-family: "Baron-Bold";
  font-size: 40px;
  line-height: 140%;
  margin-bottom: 24px;
}

.form p {
  font-family: "Baron-Medium";
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 40px; 
}

form label {
  font-family: "Baron-Medium";
	font-size: 16px;
	line-height: 48px;
  color: #000;
}

.required {
  color: #DF0E11; 
  font-family: "Baron-Medium";
	font-size: 16px;
	line-height: 48px;
	margin-left: 4px;
}
.optional {
  color: #aaaaaa; 
  font-family: "Baron-Medium";
	font-size: 16px;
	line-height: 48px;
	margin-left: 4px;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 0px;
	box-sizing: border-box;
  font-family: "Baron-Regular";
	font-size: 16px;
	line-height: 22px;
  color: #000;
}

input:focus, textarea:focus {
  border-color: #141414; 
  box-shadow: none;
	outline: none;
}

input[type="text"].error,
input[type="email"].error,
textarea.error {
	border: 1px solid #DF0E11; 
}

.error-message {
	color:  #DF0E11;
	font-style: normal;
  font-family: "Baron-Medium";
	font-weight: 300;
	font-size: 14px;
	line-height: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
}

div:has(#phone) {
  margin-bottom: 24px;
}

textarea {
  min-height: 120px; 
  resize: vertical;
	display: block;
}

button[type="submit"] {
	font-weight: 500;
	padding: 24px;
	color: #ffffff;
	background: #DF0E11;
  font-family: "Baron-Medium";
	text-align: center;
	font-size: 20px;
	line-height: 24px;
	text-decoration: none;
	display: inline-block;
	border:none;
	cursor: pointer;
	margin-top: 20px;
  width: 100%;
}
button[type="submit"]:hover {
	background: #AD0000;
}

.form  {
  animation: kontakt-reveal 1s cubic-bezier(0.00,0.93,0.60,0.95) forwards;
  clip-path: inset(0 0 0 0);
}

@keyframes kontakt-reveal {
  from {
    filter: blur(10px);
    opacity: 0;
    translate: 0 10vh;
  }
}

@media (max-width: 767px) {
	.error-message,
	.optional,
	input[type="text"],
	input[type="email"],
	textarea {
		font-weight: 500;
	}
	.form {
		width: 100%;
		box-sizing: border-box;
		order: 2;
    padding: 20px;
	}
	button[type="submit"] {
		width: 100%;
	}
}

.white {
  background: #FFF;
}

.thankyou h2,
.thankyou p {
  text-align: center;
}