@import url("fonts.css");

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Colors
--------------------------------------------- */

:root {
  --rp-red-logo: #e1241b;
  --rp-logo-black: #010101;
  --rp-dark-cyan: #a3cacf;
  --rp-pale-cyan: #b6fcff;
  --rp-dark-pink: #f9afab;
  --rp-pale-pink: #fce4e3;
  --rp-pale-red: #ff5b5b;
  --rp-bright-red: #e5453c;
  --rp-counter-red: #9e1a13;
  --rp-dark-red: #71130e;
  --rp-light-grey: #e9e9e9;
  --rp-medium-grey: #c8c8c8;
  --rp-dark-grey: #919191;
  --rp-darker-grey: #595959;
  --rp-charcoal: #222222;
  --rp-headlines: #2d2b2b;
  --rp-danger: #ef3b5f;
  --rp-warning: #fdb900;
  --rp-success: #65bf22;
  --rp-info: #1d6ef3;
  --rp-white: #ffffff;
  --rp-background: #f5f5f5;
  --rp-black: #000000;

  /* Typography */

  /* Font families */
  --font-heading: "Recoleta", serif;
  --font-body: "Kumbh Sans", sans-serif;

  /* Font weights */
  --weight-bold: 700;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-regular: 400;

  /* Extra Large Heading */
  --heading-xl-size: 68px;
  --heading-xl-line: 86px;

  /* Large Heading */
  --heading-lg-size: 54px;
  --heading-lg-line: 70px;

  /* Medium Heading */
  --heading-md-size: 47px;
  --heading-md-line: 56px;

  /* Mobile Large Heading */
  --heading-mobile-lg-size: 34px;
  --heading-mobile-lg-line: 42px;

  /* Small Heading */
  --heading-sm-size: 26px;
  --heading-sm-line: 34px;

  /* Extra Small Heading */
  --heading-xs-size: 22px;
  --heading-xs-line: 28px;

  /* Large Paragraph */
  --paragraph-lg-size: 18px;
  --paragraph-lg-line: 30px;

  /* Medium Paragraph */
  --paragraph-md-size: 16px;
  --paragraph-md-line: 28px;

  /* Small Pargraph */
  --paragraph-sm-size: 14px;
  --paragraph-sm-line: 22px;

  /* Extra Small Paragraph */
  --paragraph-xs-size: 12px;
  --paragraph-xs-line: 100%;

  /* Percentages */
  --percentage-lg: 33px;
}

/* Bootstrap Override */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1180px;
  }
}

/* Buttons */

.btn {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 100px;
  letter-spacing: 1.3px;
}

.btn.btn-large {
  padding: 21px 27px;
  border: 1px solid var(--rp-logo-black);
}

.btn.btn-large.btn-red {
  color: var(--rp-white);
  background: var(--rp-bright-red);
  transition: all 0.3s ease;
  border: 1px solid var(--rp-bright-red);
}

.btn.btn-large.btn-red:hover {
  background: var(--rp-pale-cyan);
  color: var(--rp-logo-black);
  border-color: var(--rp-pale-cyan);
}

.btn.btn-large.btn-black {
  color: var(--rp-white);
  background: var(--rp-logo-black);
  transition: all 0.3s ease;
  border: 1px solid var(--rp-logo-black);
}

.btn.btn-large.btn-black:hover {
  background: var(--rp-pale-cyan);
  color: var(--rp-logo-black);
  border-color: var(--rp-pale-cyan);
}

.btn.btn-large.btn-outline {
  color: var(--rp-logo-black);
  border: 1px solid var(--rp-logo-black);
  background: transparent;
  transition: all 0.3s ease;
}

.btn.btn-large.btn-outline:hover {
  background: transparent;
  border-color: var(--rp-bright-red);
  color: var(--rp-bright-red);
}

.btn.btn-small {
  padding: 10px 19px;
}

.btn.btn-small.btn-red {
  color: var(--rp-white);
  background: var(--rp-bright-red);
  transition: all 0.3s ease;
  border: 1px solid var(--rp-bright-red);
}

.btn.btn-small.btn-red:hover {
  color: var(--rp-white);
  background: var(--rp-logo-black);
  transition: all 0.3s ease;
  border: 1px solid var(--rp-logo-black);
}

.btn.btn-small.btn-outline {
  color: var(--rp-logo-black);
  border: 1px solid var(--rp-logo-black);
  background: transparent;
  transition: all 0.3s ease;
}

.btn.btn-small.btn-outline:hover {
  background: transparent;
  border-color: var(--rp-bright-red);
  color: var(--rp-bright-red);
}

.btn.btn-icon {
  padding: 0;
  gap: 4px;
  color: var(--rp-white);
  border: 0;
  border-radius: 0;
}

.btn.btn-icon:hover {
  color: var(--rp-pale-cyan);
}

.btn.btn-mobile-menu {
  background: var(--rp-darker-grey);
  padding: 8px;
  border: 0;
  color: var(--rp-white);
}

.btn.btn-mobile-menu:hover {
  background: var(--rp-darker-grey);
}

/* Navbar Links */

.navbar-nav {
  position: relative;
}

.nav-highlight {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 100px;
  background: var(--rp-pale-cyan);
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none; /* So it doesn't block hover */
  opacity: 0; /* Hidden by default */
}

.navbar-nav .nav-item {
  position: relative;
  z-index: 2;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 8px 20px;
  display: inline-block;
}

.navbar-nav .nav-link:after {
  display: none;
}

/* Optional: active state */
.navbar-nav .nav-item.active .nav-link {
  color: var(--rp-white);
}

/* Icon Animation */

.icon-animation {
  animation: float 3s ease-in-out infinite;
}

.diagonal-animation {
  animation: diagonalFloat 3s ease-in-out infinite;
}

@keyframes diagonalFloat {
  0% {
    transform: translate(0, 20px); /* start bottom */
  }
  50% {
    transform: translate(15px, -20px); /* move to top-right */
  }
  100% {
    transform: translate(0, 20px); /* back to bottom */
  }
}

.circular-animation {
  animation: circularMove 4s linear infinite;
}

@keyframes circularMove {
  0% {
    transform: rotate(0deg) translate(20px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(20px) rotate(-360deg);
  }
}

.icon-bounce {
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.icon-pulse {
  animation: iconPulse 2.2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.icon-wiggle {
  animation: iconWiggle 1s ease-in-out infinite;
}

@keyframes iconWiggle {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  }
}

.icon-twinkle {
  animation: iconTwinkle 1.5s ease-in-out infinite;
}

@keyframes iconTwinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.icon-slide {
  animation: iconSlide 1.8s ease-in-out infinite;
}

@keyframes iconSlide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: var(--rp-charcoal) !important;
  padding: 10px 18px !important;
  border-radius: 2px !important;
  background-color: var(--rp-background) !important;

  font-family: var(--font-body) !important;
  font-weight: var(--weight-regular) !important;
  font-size: var(--paragraph-sm-size) !important;
  line-height: var(--paragraph-sm-line) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: var(--rp-charcoal);
  box-shadow: none;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/* Typography */

/* Large Heading */
.large-heading {
  font-size: var(--heading-lg-size);
  line-height: var(--heading-lg-line);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}

/* Medium Heading */
.medium-heading {
  font-size: var(--heading-md-size);
  line-height: var(--heading-md-line);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}

/* Small Heading */
.small-heading {
  font-size: var(--heading-sm-size);
  line-height: var(--heading-sm-line);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}

/* Large Paragraph 18px - Regular */
.large-paragraph {
  font-size: var(--paragraph-lg-size);
  line-height: var(--paragraph-lg-line);
  font-weight: var(--weight-regular);
  font-family: var(--font-body);
}

/* Medium Paragraph 16px - Regular */
.medium-paragraph {
  font-size: var(--paragraph-md-size);
  line-height: var(--paragraph-md-line);
  font-weight: var(--weight-regular);
  font-family: var(--font-body);
}

/* Small Pargraph 14px */
.small-paragraph {
  font-size: var(--paragraph-sm-size);
  line-height: var(--paragraph-sm-line);
  font-weight: var(--weight-regular);
  font-family: var(--font-body);
}

/* Extra Small Heading */
.extra-small-heading {
  font-size: var(--heading-xs-size);
  line-height: var(--heading-xs-line);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}

/* Introduction heading */
.introduction-heading {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--paragraph-sm-size);
  line-height: var(--paragraph-sm-line);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Recoleta Mega Menu Headings */

.recoleta-mega-menu-heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .large-heading {
    font-size: var(--heading-mobile-lg-size);
    line-height: var(--heading-mobile-lg-line);
  }

  .medium-heading {
    font-size: var(--heading-mobile-lg-size);
    line-height: var(--heading-mobile-lg-line);
  }

  .large-paragraph {
    font-size: var(--paragraph-md-size);
    line-height: var(--paragraph-md-line);
  }
}

/* Slider Section */

.section-title-wrapper {
  position: relative;
  z-index: 2;
}

.slider-section .section-title {
  color: var(--rp-headlines);
  margin: 0 0 18px 0;
  position: relative;
  z-index: 2;
}

.slider-section .section-subtitle {
  color: var(--rp-black);
  max-width: 824px;
  margin-bottom: 0px;
}

.slider-section .slider-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.slider-section .heading-icon {
  position: absolute;
  top: 50px;
  left: 294px;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 180px;
  height: auto;
  z-index: 0;
  transition: transform 0.1s ease-out;
  will-change: transform;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

/* Sub Menu */

.sub-menu {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: 14px;
  line-height: 22px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.breadcrumb-link {
  text-decoration: none;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

/* Pagination */

.pagination-wrapper ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0;
  margin-top: 60px;
  list-style: none;
  padding: 0;
}

.pagination-wrapper ul.page-numbers li a,
.pagination-wrapper ul.page-numbers li span {
  text-decoration: none;
  display: flex;
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--paragraph-xs-size);
  line-height: var(--paragraph-xs-line);
  color: var(--rp-headlines);
  width: 35px;
  height: 35px;
  border-radius: 8px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.pagination-wrapper ul.page-numbers li span.current {
  background-color: var(--rp-medium-grey);
}
