/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #000000;
  --primary-text: #FFFFFF;
  --accent-gold: #C69C6D;
  --accent-red: #6F042F;
  --mystic-purple: #4a2c5a;
  --mystic-blue: #1a1a2e;
  --text-muted: rgba(255, 255, 255, 0.8);
  --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  --transition-smooth: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-dark);
  color: var(--primary-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(198, 156, 109, 0.2);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 30px rgba(198, 156, 109, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.logo-text {
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: block;
  }
}

/* Burger Menu */
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.98);
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 20px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 30px rgba(198, 156, 109, 0.3);
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

@media (min-width: 768px) {
  .burger-menu {
    display: none;
  }
  
  .nav-menu {
    position: static;
    flex-direction: row;
    background: transparent;
    max-width: none;
    height: auto;
    padding: 0;
    box-shadow: none;
    overflow-y: visible;
    align-items: center;
    gap: 30px;
  }
}

.nav-link {
  color: var(--primary-text);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: var(--transition-smooth);
  display: block;
}

.nav-link:hover {
  color: var(--accent-gold);
  background: rgba(198, 156, 109, 0.1);
}

.nav-phone,
.nav-telegram,
.nav-whatsapp {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: bold;
  padding: 10px 20px;
}

.nav-phone:hover,
.nav-telegram:hover {
  background: var(--primary-text);
  transform: scale(1.05);
}

.nav-whatsapp {
  background: #25D366;
  color: white;
}

.nav-whatsapp:hover {
  background: #20BA5A;
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.hero-main-image {
  margin-bottom: 30px;
}

.hero-img {
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(198, 156, 109, 0.5));
}

.hero-title {
  margin-bottom: 20px;
}

.title-main {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(198, 156, 109, 0.8);
  margin-bottom: 10px;
  letter-spacing: 5px;
}

.title-name {
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--primary-text);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-decoration {
  margin-top: 40px;
}

.decoration-line {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.decoration-line-css {
  width: 100%;
  max-width: 600px;
  height: 3px;
  margin: 40px auto;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-gold) 20%, 
    var(--accent-gold) 80%, 
    transparent 100%);
  position: relative;
  overflow: hidden;
}

.decoration-line-css::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(198, 156, 109, 0.8) 50%, 
    transparent 100%);
  animation: shimmer-line 3s ease-in-out infinite;
}

.decoration-line-css::after {
  content: "✦ ✦ ✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-gold);
  font-size: 1.2rem;
  background: var(--primary-dark);
  padding: 0 15px;
  letter-spacing: 10px;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes shimmer-line {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.6;
    text-shadow: 0 0 5px rgba(198, 156, 109, 0.5);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(198, 156, 109, 0.9);
  }
}

@media (max-width: 768px) {
  .title-main {
    font-size: 2.5rem;
  }
  
  .title-name {
    font-size: 1.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(198, 156, 109, 0.5);
}

.section-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -1;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: bold;
}

.problems-list {
  list-style: none;
  margin: 20px 0;
  padding-left: 20px;
}

.problems-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.problems-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.highlight-text {
  font-size: 1.5rem;
  color: var(--accent-gold);
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(198, 156, 109, 0.8);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--accent-gold);
  aspect-ratio: 1;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.image-item:hover img {
  transform: scale(1.1);
}

.experience-section {
  margin: 60px 0;
  text-align: center;
}

.experience-section .subtitle {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.experience-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .experience-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.exp-item {
  padding: 30px;
  background: rgba(198, 156, 109, 0.1);
  border: 1px solid rgba(198, 156, 109, 0.3);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.exp-item:hover {
  background: rgba(198, 156, 109, 0.2);
  transform: translateY(-5px);
}

.exp-item h4 {
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.story-section {
  max-width: 900px;
  margin: 60px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.story-section p {
  margin-bottom: 20px;
}

.decoration-section {
  margin: 60px 0;
  text-align: center;
}

/* Divinations Section */
.divinations {
  position: relative;
}

.divinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.divination-card {
  background: rgba(198, 156, 109, 0.1);
  border: 2px solid rgba(198, 156, 109, 0.3);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.divination-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(198, 156, 109, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
}

.divination-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 40px rgba(198, 156, 109, 0.4);
}

.divination-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: pulse 2s infinite;
}

/* Constellation Icons */
.constellation-icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(198, 156, 109, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.constellation-icon::before,
.constellation-icon::after {
  content: "✦";
  position: absolute;
  font-size: 1.2rem;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(198, 156, 109, 0.8), 0 0 20px rgba(198, 156, 109, 0.4);
  animation: star-twinkle 2s ease-in-out infinite;
}

/* Constellation 1 - Cross Pattern */
.constellation-1 {
  background: 
    linear-gradient(90deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    radial-gradient(circle at 50% 20%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 50% 80%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 20% 50%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 80% 50%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-1::before {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.constellation-1::after {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

/* Constellation 2 - Triangle */
.constellation-2 {
  background: 
    linear-gradient(135deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    linear-gradient(225deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    linear-gradient(315deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    radial-gradient(circle at 50% 15%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 20% 85%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 80% 85%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-2::before {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.constellation-2::after {
  bottom: 15%;
  right: 20%;
  animation-delay: 0.7s;
}

/* Constellation 3 - Diamond */
.constellation-3 {
  background: 
    linear-gradient(45deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    linear-gradient(135deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    radial-gradient(circle at 50% 10%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 50% 90%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 10% 50%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 90% 50%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-3::before {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.2s;
}

.constellation-3::after {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.8s;
}

/* Constellation 4 - Star Pattern */
.constellation-4 {
  background: 
    linear-gradient(45deg, transparent 48%, rgba(198, 156, 109, 0.2) 49%, rgba(198, 156, 109, 0.2) 51%, transparent 52%),
    linear-gradient(135deg, transparent 48%, rgba(198, 156, 109, 0.2) 49%, rgba(198, 156, 109, 0.2) 51%, transparent 52%),
    radial-gradient(circle at 50% 50%, var(--accent-gold) 3px, transparent 3px),
    radial-gradient(circle at 30% 30%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 70% 30%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 30% 70%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 70% 70%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-4::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  animation-delay: 0s;
}

.constellation-4::after {
  top: 30%;
  left: 30%;
  font-size: 1rem;
  animation-delay: 0.4s;
}

/* Constellation 5 - Line Pattern */
.constellation-5 {
  background: 
    linear-gradient(135deg, transparent 48%, rgba(198, 156, 109, 0.3) 49%, rgba(198, 156, 109, 0.3) 51%, transparent 52%),
    radial-gradient(circle at 25% 25%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 50% 50%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-5::before {
  top: 25%;
  left: 25%;
  animation-delay: 0.1s;
}

.constellation-5::after {
  bottom: 25%;
  right: 25%;
  animation-delay: 0.6s;
}

/* Constellation 6 - Big Dipper Style */
.constellation-6 {
  background: 
    linear-gradient(15deg, transparent 48%, rgba(198, 156, 109, 0.25) 49%, rgba(198, 156, 109, 0.25) 51%, transparent 52%),
    radial-gradient(circle at 20% 20%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 40% 15%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 60% 20%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 80% 25%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 70% 40%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 50% 45%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-6::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.constellation-6::after {
  top: 40%;
  left: 70%;
  animation-delay: 0.5s;
}

/* Constellation 7 - Complex Pattern */
.constellation-7 {
  background: 
    linear-gradient(90deg, transparent 48%, rgba(198, 156, 109, 0.2) 49%, rgba(198, 156, 109, 0.2) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(198, 156, 109, 0.2) 49%, rgba(198, 156, 109, 0.2) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(198, 156, 109, 0.2) 49%, rgba(198, 156, 109, 0.2) 51%, transparent 52%),
    radial-gradient(circle at 50% 20%, var(--accent-gold) 2.5px, transparent 2.5px),
    radial-gradient(circle at 30% 40%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 70% 40%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 50% 60%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 20% 80%, var(--accent-gold) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, var(--accent-gold) 2px, transparent 2px);
}

.constellation-7::before {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  animation-delay: 0s;
}

.constellation-7::after {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

@keyframes star-twinkle {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.9);
    filter: brightness(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

.divination-card h3 {
  font-size: 1rem;
  color: var(--primary-text);
  line-height: 1.5;
}

.divination-main-image {
  text-align: center;
  margin: 60px 0;
}

.divination-main-image img {
  max-width: 500px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(198, 156, 109, 0.5));
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 60px;
}

.service-item {
  padding: 25px;
  background: rgba(198, 156, 109, 0.05);
  border-left: 4px solid var(--accent-gold);
  border-radius: 5px;
}

.service-item h4 {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* Rituals Section */
.rituals {
  position: relative;
}

.ritual-category {
  margin-bottom: 80px;
}

.category-title {
  font-size: 2rem;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ritual-card {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(198, 156, 109, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.ritual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(198, 156, 109, 0.3);
}

.ritual-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-content {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.ritual-tarot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

@media (min-width: 992px) {
  .ritual-tarot-grid {
    grid-template-columns: 400px 1fr;
  }
}

.tarot-card-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.tarot-frame {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.tarot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 2;
  animation: rotateRight 10s linear infinite;
}

.tarot-glow img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.tarot-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  z-index: 3;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
}

.tarot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tarot-bottom {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  z-index: 4;
}

.tarot-bottom img {
  width: 100%;
  height: auto;
}

.ritual-text {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.ritual-text p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.ritual-list {
  max-width: 800px;
  margin: 0 auto;
}

.ritual-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: rgba(198, 156, 109, 0.05);
  border-left: 4px solid var(--accent-gold);
  border-radius: 5px;
  transition: var(--transition-smooth);
}

.ritual-list-item:hover {
  background: rgba(198, 156, 109, 0.1);
  transform: translateX(10px);
}

.ritual-marker {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.ritual-marker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ritual-list-item p {
  margin: 0;
  font-size: 1rem;
}

.ritual-list p {
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(198, 156, 109, 0.05);
  border-left: 4px solid var(--accent-gold);
  border-radius: 5px;
  font-size: 1rem;
}

.ritual-list-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.ritual-compact-item {
  padding: 12px 18px;
  background: rgba(198, 156, 109, 0.08);
  border-left: 3px solid var(--accent-gold);
  border-radius: 5px;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  padding-left: 35px;
}

.ritual-compact-item::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.ritual-compact-item:hover {
  background: rgba(198, 156, 109, 0.15);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(198, 156, 109, 0.2);
}

/* Reviews Section */
.reviews {
  position: relative;
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-slide {
  min-width: 100%;
  scroll-snap-align: start;
  padding: 0 20px;
}

.review-card {
  background: rgba(198, 156, 109, 0.1);
  border: 2px solid rgba(198, 156, 109, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-content {
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--primary-text);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.review-text::before,
.review-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent-gold);
  opacity: 0.5;
  position: absolute;
}

.review-text::before {
  top: -20px;
  left: 0;
}

.review-text::after {
  bottom: -40px;
  right: 0;
}

.review-author {
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(198, 156, 109, 0.8);
  border: none;
  color: var(--primary-dark);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.slider-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: -70px;
}

.slider-next {
  right: -70px;
}

@media (max-width: 768px) {
  .slider-prev {
    left: 10px;
  }
  
  .slider-next {
    right: 10px;
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(198, 156, 109, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(198, 156, 109, 0.1);
  border: 2px solid rgba(198, 156, 109, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 40px rgba(198, 156, 109, 0.4);
}

.service-card h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-card p {
  line-height: 1.8;
  color: var(--text-muted);
}

.final-message {
  text-align: center;
  margin: 60px 0;
  padding: 40px;
  background: rgba(198, 156, 109, 0.1);
  border: 2px solid rgba(198, 156, 109, 0.3);
  border-radius: 20px;
}

.final-message h2 {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-phone {
  font-size: 2rem;
  margin-top: 20px;
}

.contact-phone a {
  color: var(--primary-text);
  font-weight: bold;
  transition: var(--transition-smooth);
}

.contact-phone a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(198, 156, 109, 0.8);
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.contact-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.telegram-link {
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.telegram-link:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(198, 156, 109, 0.8);
  transform: scale(1.05);
}

.decoration-bottom {
  width: 100%;
  height: 100px;
  object-fit: cover;
  opacity: 0.8;
  margin-top: 40px;
}

.decoration-candle {
  width: 200px;
  height: auto;
  margin: -50px auto 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(198, 156, 109, 0.6));
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-main {
    grid-template-columns: 400px 1fr;
  }
}

.contact-image {
  text-align: center;
}

.contact-image img {
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(198, 156, 109, 0.5));
}

.contact-info {
  text-align: center;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.contact-phone-large {
  margin: 30px 0;
}

.contact-buttons-large {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.contact-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.3rem;
  color: var(--primary-text);
  font-weight: bold;
  padding: 18px 35px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.telegram-btn-large {
  background: rgba(0, 136, 204, 0.2);
  border: 2px solid #0088cc;
}

.telegram-btn-large:hover {
  background: #0088cc;
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 136, 204, 0.5);
}

.whatsapp-btn-large {
  background: rgba(37, 211, 102, 0.2);
  border: 2px solid #25D366;
}

.whatsapp-btn-large:hover {
  background: #25D366;
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.contact-btn-large svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  color: var(--primary-text);
  font-weight: bold;
  padding: 15px 30px;
  background: rgba(198, 156, 109, 0.2);
  border: 2px solid var(--accent-gold);
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.phone-link:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: scale(1.05);
}

.phone-icon {
  width: 40px;
  height: 40px;
  animation: pulse 2s infinite;
}

.contact-note {
  margin-top: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Footer */
.footer {
  position: relative;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0;
}

.footer-phone a {
  color: var(--accent-gold);
}

.footer-phone a:hover {
  text-shadow: 0 0 20px rgba(198, 156, 109, 0.8);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
}

.footer-link {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: block;
}

.footer-link:hover {
  text-shadow: 0 0 20px rgba(198, 156, 109, 0.8);
  transform: translateX(5px);
}

@media (min-width: 768px) {
  .footer-contacts {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

.footer-note {
  color: var(--text-muted);
  margin-top: 20px;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(198, 156, 109, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(198, 156, 109, 0.6);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes rotateRight {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 1s ease-out 0.9s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  background: linear-gradient(90deg, rgba(198, 156, 109, 0.1) 0%, rgba(198, 156, 109, 0.3) 50%, rgba(198, 156, 109, 0.1) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  overflow: visible;
  position: relative;
}

.floating-telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  box-shadow: 0 6px 25px rgba(0, 136, 204, 0.5), 0 0 40px rgba(0, 136, 204, 0.3);
}

.floating-telegram-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}

.floating-telegram-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 136, 204, 0.7), 0 0 50px rgba(0, 136, 204, 0.5);
}

.floating-telegram-btn:hover .telegram-icon {
  animation: telegram-bounce 0.6s ease;
}

.floating-whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite 0.5s;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7), 0 0 50px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-btn:hover .whatsapp-icon {
  animation: telegram-bounce 0.6s ease;
}

.telegram-icon-wrapper,
.whatsapp-icon-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}

.telegram-icon {
  width: 100%;
  height: 100%;
  color: #0088cc;
  animation: telegram-float 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-icon {
  width: 100%;
  height: 100%;
  animation: telegram-float 3s ease-in-out infinite 0.5s;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-btn span {
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes telegram-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

@keyframes telegram-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.1);
  }
}

@media (max-width: 768px) {
  .floating-contact-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 60px;
    height: 60px;
    padding: 8px;
  }
  
  .telegram-icon-wrapper,
  .whatsapp-icon-wrapper {
    width: 24px;
    height: 24px;
  }
  
  .floating-btn span {
    font-size: 0.6rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .burger-menu,
  .scroll-top,
  .slider-btn,
  .floating-contact-buttons {
    display: none;
  }
}


