@import url("header.css");
@import url("home.css");
@import url("about.css");
@import url("animation.css");
@import url("environments.css");
@import url("chef.css");
@import url("sugestion.css");
@import url("menu.css");
@import url("cellar.css");
@import url("winelist.css");
@import url("gallery.css");
@import url("assessment.css");
@import url("winery.css");
@import url("footer.css");

:root {
  --primary-color: #beacab;
  --secondary-color: #cec1c0;
  --tertiary-color: #d2b772;
  --primary-color-bg: #202121;
  --secondary-color-bg: #232525;
  --swiper-theme-color: #fff !important;
  --font-primary: "Rubik", sans-serif;
  --font-secondary: "Playfair Display", cursive;
  --font-decorative: "Great Vibes", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}
body {
  background-color: var(--primary-color-bg);
}

.hidden {
  display: none !important;
}

/* Swiper Ambientes, Grand Cru e Vinicola */

.swiper {
  display: flex;
  width: 80vw;

  margin: 0 auto;
  height: 80vw;
  background-color: #2a2a2a;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow-y: hidden;
}

.swiper-slide .swiper-slide-img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: white;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  transform: scale(1.1);
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 1em;
  font-weight: bold;
}

.swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}

.swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: flex;
  bottom: 2em;
  right: 1em;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999999;
}

.hiddenBtn {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(100%);
  transition: all 0.6s;
}

.showBtn {
  opacity: 1 !important;
  filter: blur(0px);
  transform: translateY(0);
  transition: all 0.6s;
}
