@charset "UTF-8";
/* Zapata Regular */
@font-face {
  font-family: "zapata-regular";
  src: url("../rsc/fonts/Zapata-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* Zapata Bold */
@font-face {
  font-family: "zapata-bold";
  src: url("../rsc/fonts/Zapata-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
.hero-text::before {
  content: "✦ ✦ ✦";
  display: block;
  margin-bottom: 1rem;
  color: #7B2D6C;
  font-size: 0.9rem;
  opacity: 0.6;
}

.hero-wrapper {
  position: relative;
  display: inline-block;
}
.hero-wrapper .hero-background {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-color: rgba(122, 72, 132, 0.35);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.65);
  clip-path: polygon(3% 37%, 96% 5%, 100% 82%, 7% 100%);
  transform: rotate(-5deg);
  z-index: 0;
}
.hero-wrapper .hero-text {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem;
  background-color: #EFE7DF;
  color: #3A2A1F;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
  clip-path: polygon(0% 25%, 100% 0%, 100% 85%, 5% 100%);
  box-shadow: 0 22px 35px black;
}
.hero-wrapper .hero-text p {
  margin: 0;
  display: inline-block;
  transform: rotate(-30deg);
  transform-origin: center;
}
.hero-wrapper .hero-text::before {
  content: "✦ ✦ ✦";
  display: block;
  margin-bottom: 1rem;
  color: #7B2D6C;
  font-size: 0.9rem;
  opacity: 0.6;
}

.slider-right-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10%;
  width: 35%;
  height: 20%;
  transform: translateY(-130%);
}
.slider-right-wrapper .slider-right-under-background,
.slider-right-wrapper .slider-right-background {
  position: absolute;
  top: 0;
  /* These sizes make the shapes visible */
  width: 120%;
  height: 350%;
}
.slider-right-wrapper .slider-right-under-background {
  background-color: rgb(128, 0, 73);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.65);
  clip-path: polygon(0% 12%, 95% 2%, 100% 95%, 12% 100%);
  transform: rotate(-7deg);
  z-index: 0;
}
.slider-right-wrapper .slider-right-background {
  background-color: white;
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.65);
  clip-path: polygon(5% 10%, 100% 5%, 95% 100%, 10% 90%);
  transform: rotate(-3deg);
  z-index: 1;
}
.slider-right-wrapper .slider-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14%;
  margin-left: 3%;
}
.slider-right-wrapper p {
  display: block;
  transform: rotate(1deg) scaleY(2);
  font-size: clamp(7px, 0.5vw, 12px);
  line-height: 1.05;
  margin-bottom: 2.5rem;
}
.slider-right-wrapper h2 {
  display: block;
  transform: rotate(2deg) scaleY(2);
  font-size: clamp(10px, 1vw, 22px);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero-logo {
  width: 120%;
  height: auto;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "zapata-regular", sans-serif;
}

.stretched-text {
  transform: scaleY(1.5);
  /* Stretches the text 1.5 times vertically */
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

main {
  overflow-y: scroll;
  height: 100vh;
}

body {
  padding-top: 50px;
}

nav {
  width: 100%;
  background-color: #2e0c27;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
nav ul li {
  margin: 0 1.5rem;
}
nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
  letter-spacing: 0.2rem;
  transform: scaleY(2);
}
nav ul li a:hover {
  color: rgba(203, 203, 203, 0.5607843137);
}

section {
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  scroll-snap-align: center;
}
section#section-top {
  background-color: #3A1E3F;
  text-align: center;
}
section#section-top .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
section#slider-right {
  background-image: url("../rsc/images/Web_Background.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}
section#slider-left {
  background-color: #9bf6ff;
}
section#carousel {
  background-color: #ffc6ff;
}

.slider-section {
  display: flex;
  width: 100%;
  height: 65vh;
  overflow: visible;
}
.slider-section .slider-image {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  transform: translateY(-45%);
  /* RADIAL BLUR LAYER */
  /* .suelo::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../rsc/images/Ground_Web2.png") no-repeat center bottom;
    background-size: contain;

    filter: blur(10px);
    opacity: 0.45; 

    mask-image: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, 0) 100%);

    z-index: -1;
  } */
}
.slider-section .slider-image img {
  width: auto;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  opacity: 0;
  transform: translateX(0);
  transition: transform 1s ease-out, opacity 1s ease-out;
  position: relative;
  z-index: 2;
}
.slider-section .slider-image .suelo {
  position: absolute;
  bottom: -70%;
  left: 57.5%;
  transform: translateX(-50%);
  width: 120%;
  height: 700px;
  background: url("../rsc/images/Ground_Web2.png") no-repeat center bottom;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.slider-section .slider-image .sombra {
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%) scaleY(0.6);
  width: 60%;
  height: 5%;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  filter: blur(15px);
  z-index: 1;
  pointer-events: none;
}

#image_tuno {
  height: 130%;
  top: 11%;
  z-index: 2;
}

#image_croupier {
  height: 115%;
  top: 25%;
  z-index: 2;
}

#slider-right .slider-image img.animate {
  animation: slide-in-right 1s ease-out forwards;
}

#slider-left .slider-image img.animate {
  animation: slide-in-left 1s ease-out forwards;
}

#slider-right .slider-image img.animate {
  transform: translateX(0);
  opacity: 1;
}

#slider-right .slider-image img {
  transform: translateX(100%);
}

#slider-left .slider-image img.animate {
  transform: translateX(0);
  opacity: 1;
}

#slider-left .slider-image img {
  transform: translateX(-100%);
}

@media (max-width: 768px) {
  .slider-section {
    flex-direction: column;
  }
  .slider-section .slider-text,
  .slider-section .slider-image {
    width: 100%;
    flex: unset;
    padding: 0.5rem;
  }
  .slider-section .slider-image img {
    width: auto;
    height: 100%;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }
  .slider-section .slider-text {
    text-align: center;
    align-items: center;
  }
}
#carousel-section {
  width: 100%;
  overflow-x: hidden;
  height: 85vh;
  padding: 2rem 0;
}
#carousel-section .news_carousel {
  display: flex;
  gap: 4vmin;
  padding: 0 5%;
  align-items: center;
}
#carousel-section .news_carousel .carousel-item {
  position: relative;
  flex: 0 0 auto;
  width: 60%;
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
  cursor: grab;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
#carousel-section .news_carousel .carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
#carousel-section .news_carousel .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
#carousel-section .news_carousel .carousel-item .news-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#carousel-section .news_carousel .carousel-item .news-content h3 {
  margin: 0;
  font-size: 2rem;
}
#carousel-section .news_carousel .carousel-item .news-content p {
  font-size: 1.2rem;
}
#carousel-section .news_carousel .carousel-item .news-content .btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #ffcc00;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
#carousel-section .news_carousel .carousel-item .news-content .btn:hover {
  background-color: #ffaa00;
}
@media (max-width: 768px) {
  #carousel-section .news_carousel {
    flex-direction: column;
    overflow-y: scroll;
    height: 70vh;
    padding: 0 5%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #carousel-section .news_carousel::-webkit-scrollbar {
    display: none;
  }
  #carousel-section .news_carousel .carousel-item {
    flex: unset;
    width: 90%;
    height: auto;
    margin: 1rem auto;
  }
}

#carousel-section .news_carousel .carousel-item {
  position: relative;
  flex: 0 0 40vmin;
  height: 56vmin;
  border-radius: 15px;
  overflow: hidden;
  cursor: grab;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#carousel-section .news_carousel .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
#carousel-section .news_carousel .carousel-item .news-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#carousel-section .news_carousel .carousel-item .news-content h3,
#carousel-section .news_carousel .carousel-item .news-content p {
  pointer-events: none;
}
#carousel-section .news_carousel .carousel-item .news-content .btn {
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  cursor: pointer;
}

.pip-logo {
  width: 50px;
  height: auto;
}

footer {
  background-color: #bdb2ff;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
footer p {
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  opacity: 0.8;
  margin: 0 0 1rem 0;
}
footer .sm-icons {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
footer .sm-icons::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 10%;
  width: 80%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
footer .sm-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}
footer .sm-icons a:hover {
  color: #f8c8dc;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  footer .sm-icons {
    gap: 1rem;
  }
  footer .sm-icons a {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=styles.css.map */