/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 29 2025 | 06:51:28 */
.slider {
  position: relative;
  width: 100%;
  max-width:100%;
  height: 700px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
  border-radius: 20px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  border-radius: 15px 15px 0 0;
}

.slide {
  min-width: 100%;
  height: 100%;
  width:100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

.bottom-center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  background-color: #ffffffd9 !important;
  padding: 15px 20px;
  padding-bottom: 20px;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: visible;
  border-radius: 20px 20px 0 0;
  transition:all 0.3s ease-in-out;
}

/* Outer radius using pseudo-elements */
.bottom-center::before,
.bottom-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 40px;
  background: #fff;
  border-radius: 0;
  z-index: -1;
}

.bottom-center h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #333;
}

.bottom-center p {
  margin: 5px 0 10px;
  color: #666;
  font-size: 14px;
}

.luxury-heading {
  font-weight: 700;
  font-size: 2.9rem;
  color: #2c2a29; /* deep charcoal */
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
  text-transform: capitalize;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.luxury-subtitle {
  font-weight: 400;
  font-size: 1.2rem;
  color: #6b5b3b; /* warm gold-brown */
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 0;
  opacity: 0.85;
}

.buttons {
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: center;
}

.btn {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin: 0 10px;
  user-select: none;
  margin-bottom:10px;
  text-decoration: none;
}

.btn.primary {
  background-color: #00d2f7;
  color: white;
  box-shadow: 0 4px 12px #00d2f7;
}

.btn.primary:hover {
  background-color: #ffb400;
  box-shadow: 0 6px 16px rgba(255, 180, 0, 0.5);
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: transparent;
  color: #00d2f7;
  border: 2px solid #00d2f7;
}

.btn.secondary:hover {
  background-color: #fff8e1;
  color: #222;
  border-color: #ffb400;
  transform: translateY(-2px);
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}


@media(max-width:768px){
  .slider {
    width:95%;
    height:400px;
  }
  .slider{
    border-radius:10px;
  }
  .btn{
    margin:5px;
  }
  .bottom-center {
    width: 80%;
    border-radius:10px;
  }
  .bottom-center::before {
  left: -20px;
  bottom: -20px;
  mask: radial-gradient(20px at top left, #0000 98%, #000);
}

.bottom-center::after {
  right: -20px;
  bottom: -20px;
  mask: radial-gradient(20px at top right, #0000 98%, #000);
}
}

@media(max-width:414px){
  .bottom-center{
    border-radius:10px 10px 0 0;
  }
   .btn{
    width:100%;
    margin:5px 0;
  }
   .bottom-center::before,.bottom-center::after {
    display:none;
}

}





.author-box__wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--wp--preset--color--custom-accent-3-transparent) !important;
  border-radius: 20px;
  border-color: var(--wp--preset--color--custom-accent-1-transparent-light) !important;
}

.author-box__avatar {
  width: 300px;
  height: 300px;
  background: navy;
  border-radius: 20px;
}

.author-box__button-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 30px;
}

.author-box__button-wrapper button {
  padding: 10px 20px;
  outline: 0;
  border: 0;
  background: blue;
  font-size: 10px;
  font-family: sans-serif;
  color: white;
  border: 3px solid blue;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--wp--preset--font-family--unbounded);
}

.author-box__button-wrapper a {
  font-size: 10px;
  font-family: sans-serif;
  padding: 10px 20px;
  color: white;
  border: 3px solid blue;
  border-radius: 7px;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--unbounded);
}

.author-box__details h2 {
  font-family: var(--wp--preset--font-family--unbounded);
  margin: 20px 0;
}

.author-box__details p {
  margin-bottom: 3rem;
}

/* ===== POPUP ===== */
.popup {
  position: fixed;
  inset: 0;                /* на весь экран */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  /* скрыто по умолчанию через анимационные свойства */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup__content {
  color: black;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  width: min(500px, calc(100vw - 32px));
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateY(8px);
  transition: transform .2s ease;
}

.popup.is-open .popup__content {
  transform: translateY(0);
}

/* Кнопка закрытия */
.popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  border: 0;
  background: transparent;
  line-height: 1;
}

/* Заголовок */
.popup__content h2 {
  margin-bottom: 20px;
  font-family: var(--wp--preset--font-family--unbounded), sans-serif;
  font-size: 22px;
  color: #000;
}

/* Форма */
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup__form label {
  font-size: 14px;
  font-weight: 600;
}

.popup__form input,
.popup__form textarea {
  width: 95%;
  padding: 10px 12px;
  border: 1px solid #aaa;
  border-radius: 8px;
  font-size: 14px;
  font-family: sans-serif;
}

.popup__form button {
  padding: 12px;
  border: none;
  background: blue;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: sans-serif;
  transition: filter .2s;
}

.popup__form button:hover {
  filter: brightness(.9);
}

/* Адаптив */
@media (max-width: 600px) {
  .popup__content { padding: 20px; }
  .popup__content h2 { font-size: 18px; }
}

.xbet {
	display: flex!important;
    justify-content: center!important;
    align-items: center!important;
	width: 120px!important;
	height: 120px!important;
	border-radius: 50%!important;
	background: #5f9ea063!important;
}

