/* ---------------------------------------------
Table of contents
------------------------------------------------
00. root
01. global styles
02. header
03. home
04. artists list
05. modal detalle artista
06. footer
--------------------------------------------- */

:root {
  --bs-primary-rgb: 216, 154, 152;
  --bs-secondary-rgb: 233, 225, 197;
  --bs-primary: #d89a98;
  --bs-secondary: #e9e1c5;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/

a {
  text-decoration: none !important;
  color: #fff;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  width: 100%;
  overflow: hidden;
}

.color-primary {
  color: var(--bs-primary);
}
.color-secondary {
  color: var(--bs-secondary);
}
.color-dark {
  color: var(--bs-dark);
}

.shadow-sm {
  box-shadow: 0 1rem 1.5rem rgba(17, 17, 17, 1) !important;
}

.heading-section h4 {
  color: var(--bs-primary);
  font-size: 20px;
  text-decoration: none;
  margin-bottom: 30px;
}

.heading-section h4 em {
  color: #fff;
  font-style: normal;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .heading-section h4 {
    font-size: 30px;
  }
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.header-area {
  background-color: #171717;
  position: absolute;
  height: 70px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 70px;
  background: var(--bs-dark);
  display: flex;
}

.header-area .main-nav .logo {
  flex-basis: 30%;
  margin: auto 15px;
}
#quijot-svg {
  height: 38px;
}
#quijot-svg .cls-1,
#quijot-svg .cls-2 {
  fill: #e1e1e1;
}

.header-area.header-sticky {
  min-height: 70px;
  position: sticky;
}
.header-area.header-sticky .nav li a.active {
  color: #fff;
}

.header-area .main-nav .nav {
  display: inline-flex;
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  text-align: right;
  margin-top: 0px;
  margin-right: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #e1e1e1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: transparent;
  margin: 16px 0;
  padding: 5px 10px;
  letter-spacing: .3px;
}

.header-area .main-nav .nav li.btn-go-web a {
  background-color: #27292a;
  padding: 10px 20px;
  border-radius: 23px;
  margin: 11px 0 0 0;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  border-bottom: 2px solid var(--bs-primary);
}

.header-area .main-nav .nav li.btn-go-web a:hover,
.header-area .main-nav .nav li.btn-go-web a.active {
  background-color: var(--bs-primary) !important;
  border-bottom: none;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 18px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--bs-primary);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--bs-primary);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}
.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: var(--bs-primary);
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: var(--bs-primary);
}

@media (max-width: 1200px) {
  #quijot-svg {
    height: 38px;
  }
}

@media (max-width: 992px) {

  .header-area .main-nav {
    padding: 0px 0px 0px;
    height: 70px;
  }
  .header-area .main-nav.active {
    height: 100vh;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 0px;
    top: 18px;
  }
  #quijot-svg {
    height: 34px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--bs-primary) !important;
    opacity: 1;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    margin-left: 0px;
    margin-right: 0px;
  }
  .header-area.header-sticky .nav {
    margin-top: 70px !important;
    text-align: center;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #333;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: var(--bs-dark);
    border-bottom: 1px solid #333;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 60px;
    line-height: 60px;
    padding: 0px;
    border: none !important;
    /* background: var(--bs-dark); */
    color: #eee;
    margin: 0px;
  }

  .header-area .main-nav .nav li.btn-go-web {
    padding: 10px 0px;
  }
  .header-area .main-nav .nav li.btn-go-web a {
    margin: 0 auto;
    width: 200px;
    border-radius: 32px;
    line-height: 40px;
    background-color: var(--bs-primary) !important;
  }
  .header-area .main-nav .nav li.btn-go-app {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  .header-area .main-nav .nav li.btn-go-app a {
    width: 150px;
  }

  .header-area .main-nav .nav li a:hover {
    background: #202020 !important;
    color: var(--bs-primary) !important;
  }
  .header-area .main-nav .nav li.btn-go-web a:hover {
    color: #e1e1e1 !important;
    background-color: var(--bs-primary) !important;
  }
}

/*
---------------------------------------------
home
--------------------------------------------- 
*/

.home-first-imgs .h-50 {
  height: 75% !important;
}

.img-painting {
  width: 427px;
}

.img-watcher {
  width: 435px;
  margin-left: 10px;
}

@media (min-width: 576px) {
  .img-watcher {
    margin-left: 50px;
  }
}
@media (min-width: 768px) {
  .img-watcher {
    margin-left: 150px;
  }
}
@media (min-width: 992px) {
  .home-first-imgs .h-50 {
    height: 50% !important;
  }
  .img-watcher {
    margin-left: 50px;
  }
}

@media (min-width: 1200px) {
  .img-watcher {
    width: 500px;
  }
}

/*
---------------------------------------------
artists
--------------------------------------------- 
*/

/* search */

#search {
  position: relative;
  width: 100%;
  text-align: center;
}

#search input {
  color: var(--bs-primary);
}

#search i {
  position: absolute;
  color: #666;
  left: 20px;
  top: 16px;
  width: 18px;
  height: 18px;
  font-size: 16px;
}

/* @media (min-width: 992px) {
  #search input {
    width: 80%;
    font-size: 20px;
  }
} */

/* category badges */

.category-filter {
  text-align: right;
  position: relative;
}

.category-filter .btn-filter {
  font-size: 18px;
  position: absolute;
  /* right: 23px;
  top: -50px; */
  top: -53px;
  height: 47px;
  right: 17px;
  border-radius: 0 10px 10px 0;
}

@media (min-width: 576px) {
  .category-filter .btn-filter {
    top: -56px;
    height: 50px;
  }
}

.category-filter .category-badges {
  background: #202020;
  border-radius: 5px;
}

.category-filter .category-badges .badge {
  color: var(--bs-dark);
  cursor: pointer;
  font-weight: 600;
}

.category-filter .category-badges .badge.active {
  background-color: var(--bs-primary) !important;
  color: var(--bs-dark);
}

.category-filter .category-filter .btn-secondary {
  background-color: var(--bs-secondary);
  color: var(--bs-dark);
}

.category-filter .category-filter .btn-secondary .badge {
  background-color: var(--bs-dark);
  color: var(--bs-secondary);
}

/* artists list */

.artists-list {}

.artists-list .artist:focus {
  outline: none;
}

.artists-list .item {
  background-color: var(--bs-dark);
  padding: 30px 15px;
  border-radius: 23px;
  margin-bottom: 30px;
  cursor: pointer;
}

.artists-list .item .image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 4:4 aspect ratio */
  background-color: #202020;
  border-radius: 23px;
  overflow: hidden;
}

.artists-list .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
  opacity: 0; /* Initially hidden */
  transition: opacity 1.5s ease-in-out; /* Smooth transition */
}

.artists-list .item img.loaded {
  opacity: 1; /* Show image when loaded */
}

.artists-list .item h4 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #e1e1e1;
  font-weight: 200;
}

.artists-list .item .category {
  border-radius: 5px;
  background-color: #e9e1c5;
  display: inline-block;
  color: #000;
  padding: 0px 8px;
  font-weight: 600;
}

.artists-list .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

@media (min-width: 576px) {
  .artists-list {
    border-radius: 23px;
  }
}

@media (min-width: 768px) {
  .artists-list .item img {
    min-height: 175px; /* Height for medium screens */
  }
}

@media (min-width: 992px) {
  .artists-list .item {
    background-color: var(--bs-dark);
    padding: 30px 15px;
    border-radius: 23px;
    margin-bottom: 30px;
  }
  .artists-list .item img {
    min-height: 175px; /* Height for larger screens */
  }
}

@media (min-width: 1200px) {
  .artists-list .item img {
    min-height: 225px; /* Height for larger screens */
  }
}

/* modal detalle artista */

.modal {
  --bs-modal-width: 800px;
}
.modal-dialog {
  margin: 0 auto;
}
.modal-content {
  background-color: #171717;
  color: #e1e1e1;
}

.modal-header {
  border-bottom: 0px;
  background: transparent;
}

.modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e1e1e1'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
}

.artist-profile {
  padding: 0px;
}
.artist-profile .info-wrapper {
    padding: 50px 0px 50px;
}
.artist-profile .info-wrapper .info {
  margin: 0 16px;
  font-size: 16px;
}

.artist-profile .info-wrapper .artist-name {
  font-weight: bold;
  color: var(--bs-primary);
  margin-bottom: 0;
}

.artist-profile .info-wrapper .artist-summary {
}

.artist-profile .info-wrapper .artist-description {
  font-weight: 200;
}

.artist-profile .info-wrapper .artist-category {
  font-size: 16px;
}

.artist-profile .plans {
}

.artist-profile .plans .plan {
  background-color: var(--bs-dark);
  border-radius: 23px;
}

.artist-profile .plans .plan .card-body {
  padding: 25px 25px 70px;
  position: relative;
}

.artist-profile .plans .plan .card-title {
  color: #e1e1e1;
  margin-bottom: 15px;
}

.artist-profile .plans .plan .card-text {
  color: #888;
  display: block;
  margin-top: 7px;
  font-weight: 200;
  margin-bottom: 7px;
}

.artist-profile .plans .plan .price {
  font-size: 18px;
  color: #e1e1e1;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.artist-profile .plans .plan .btn-primary {
  background-color: #e9e1c5;
  border: none;
  width: 100%;
  position: absolute;
  left: 0;
  border-radius: 0 0 23px 23px;
  height: 55px;
  line-height: 43px;
  bottom: 0;
  color: #333;
  font-weight: 600;
}

.modal-backdrop.show {
  opacity: 0.3;
  background: #707070;
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
  .artist-profile .info-wrapper {
    padding: 0px 0px 30px;
  }
  
  .artist-profile .info-wrapper img {
    width: 200px;
  }
  
  .artist-profile .plans .plan .card-body {
    padding: 20px 20px 65px;
  }
  
  .artist-profile .plans .plan .card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .artist-profile .plans .plan .price {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .artist-profile .plans .plan .card-text {
  }
}

/* Medium screens */
@media (min-width: 577px) and (max-width: 768px) {
  .artist-profile .plans .plan .price {
    position: absolute;
    top: 20px;
    right: 25px;
    margin-bottom: 0;
  }
  
  .artist-profile .plans .plan .card-title {
    padding-right: 80px; /* Make space for the price */
  }
}

/* Large screens */
@media (min-width: 769px) {

  .artist-profile .info-wrapper .info {
    margin: 0px;
  }

  .artist-profile .plans .plan .price {
    position: absolute;
    top: 20px;
    right: 25px;
    margin-bottom: 0;
  }
  
  .artist-profile .plans .plan .card-title {
    padding-right: 100px; /* Make space for the price */
  }
}

/*
---------------------------------------------
LEGAL
--------------------------------------------- 
*/

.nav-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  border-right: 2px solid #333333;
}

.legal-main-content {
  flex: 3;
  max-width: 1000px;
  margin: auto;
  padding: 0;
}

.legal-pdf-wrapper {
  min-height: 500px;
}

#sidebarMenu {
  position: relative;
  width: 100%;
  border-top: 1px solid #141414;
}

#sidebarMenu .nav {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

#sidebarMenu .nav-item {
  flex: 1;
  padding: 15px 10px 15px 20px;
  border-bottom: 1px solid #333;
}

#sidebarMenu .nav-link {
  color: #e1e1e1;
  padding-bottom: 4px;
  font-size: 16px;
}

#sidebarMenu .nav-link.active {
  /* border-bottom: 2px solid var(--bs-primary); */
  color: var(--bs-primary);
}

#sidebarMenu .nav-link:hover {
  color: var(--bs-primary);
}

@media (max-width: 992px) {

  .nav-wrapper {
    _position: sticky;
    top: 70px;
    max-width: 100%;
    width: 100%;
    opacity: .97;
  }

  .legal-page .row {
    flex-direction: column;
  }

}

/** Estilos para el contenido de los documentos legales **/

.legal-main-content h1 {
  margin-bottom: 20px;
  font-size: 40px;
}
.legal-main-content h2 {
  color: #e1e1e1;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.legal-main-content h3 {
  color: #e1e1e1;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.legal-main-content p,
.legal-main-content ul {
  color: #e1e1e1;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 20px;
}
.legal-main-content .legal-wrapper {
  max-width: 900px;
  margin: auto;
}

/**
---------------------------------------------
404
--------------------------------------------- 
*/
.no-found-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  text-align: center;
}

/**
---------------------------------------------
footer
--------------------------------------------- 
*/

.contact-wrapper {
  font-size: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0.8);
}

.social-icon:hover {
  transform: scale(1.1);
}