/*Responsive*/

/*Root*/
:root
{
--primary-color: #FF6A36;
--secondary-color: #929292;
--black-color: #000000;
--white-color: #ffffff;
--white-bg: #E8E1DA;
--black-bg: #161616;
--accent-color: #FF6A36;
--accent-color2: #929292;
--accent-color3: #F5E4A8;
}

:root
{
--fs-xl-20: 20px;
--fs-xl-lineheight: 32px;
--fs-lg-18: 18px;
--fs-lg-lineheight: 28px;
--fs-md-16: 16px;
--fs-md-lineheight: 24px;
--fs-xs-14: 14px;
--fs-xs-lineheight: 22px;
--fs-xss-12: 12px;
--fs-xss-lineheight: 20px;
}

/*--------------------------------------------------------------
    24.5 - Button
--------------------------------------------------------------*/

.btn a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    color: var(--white-color);
    background-color: var(--secondary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.btn:hover,
.btn:hover i {
    background-color: var(--primary-color);
    color: var(--black-color);
}

.btn.xsm {
    padding: 7px 15px;
    font-size: 12px;
}

.btn.sm {
    padding: 10px 20px;
}

.btn.md {
   padding: 20px 30px;
}

.btn.lg {
   padding: 30px 40px;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #555;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
  opacity: 0.7;
  transition: opacity 0.3s, background-color 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #333;
  opacity: 1;
}

@media (max-width: 768px) {
  #scrollToTopBtn {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

#scrollToTopBtn {
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 0.7;}
}

/*1.0 base css*/
@media (min-width: 1400px)
{
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl
{
max-width: 1320px;
}
}

@media (min-width: 576px) {
  .style--1 {
    padding-top: 0px;
  }
}

@media (min-width: 992px) {
  .style--1 {

  }
  
}

/*Reset and base styles*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  color: #000;
  padding-top: 80px;
}

/* Header and Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: black;
  margin: 4px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff6a36;
}

.display-none {
  display: none;
}

.logo {
  display: flex;
  /*width: 180px;
  height: 20px;*/
  color:#000000;
  font-size: 1rem;
  font-weight: bold;

}

.logo a{
  text-decoration: none;

}

.social-phone {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  background-size: cover;
  display: block;
}

.phone-number {
  color: black;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.phone-number:hover {
  color: #ff6a36;
}

/* Hero Section */
.hero {
  padding: 8rem 1rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #ff6a36;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.hero-social .social-icon {
  width: 60px;
  height: 60px;
}

/* About Section */
.about {
  padding: 5rem 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.about h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-image {
  width: 380px;
  height: 523px;
  object-fit: cover;
}

.about-text {
  font-size: 1rem;
  flex: 1;
}

/* Services Section */
.services {
  padding: 5rem 1rem;
  background: white;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 3rem 2rem;
  height: 454px;
  display: flex;
  flex-direction: column;
  color: white;
}

.service-card:last-child {
  color: black;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.service-card p {
  font-size: 1rem;
}

.service-card a {
  text-decoration: none;
}

/* Pricing Section */
.pricing {
  padding: 5rem 1rem;
  background: #f4e3a7;
}

.pricing h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  border: 1px solid black;
  padding: 3rem 2rem;
  height: 454px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}

.pricing-card h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

.pricing-card .price {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.pricing-card .description {
  font-size: 1rem;
  text-align: center;
}

.contact-info {
  max-width: 1180px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

/* Works Section */
.works {
  padding: 5rem 1rem;
  background: white;
}

.works h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.works-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.work-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.more-works {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: #ff6a36;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

.more-works:hover {
  color: #000000;
}

/* Works Slider Section */
.works-slider {
  /*max-width: 446px;*/
  max-width: 767px;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}

.works-slider h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.slider {
  /*width: 280px;*/
  width: 480px;
  margin: 0 auto;
  position: relative;
}

.slider-container img {
  /*width: 280px;
  height: 374px;
  width: 480px;
  height: 640px;*/
  width: 100%;
  height: auto;
  pointer-events: none; /* Улучшение отзывчивости при перетаскивании */
  object-fit: cover;
  display: none;
}

.slider-container {
    overflow: hidden;
    position: relative;
    user-select: none; /* Блокировка выделения при перетаскивании */
    touch-action: pan-y; /* Разрешаем только вертикальный скролл */
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 1rem;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: rgba(255, 106, 54, 0.5);
  border-radius: 20px;
  cursor: pointer;
}

.dot.active {
  background-color: rgba(255, 106, 54, 1);
}

.view-all {
  text-align: center;
  margin-top: 2rem;
  color: #ff6a36;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
}

/* Healing Section */
.healing {
  padding: 5rem 1rem;
  background: white;
}

.healing h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.healing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.healing-card {
  padding: 2rem;
}

.healing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.healing-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.read-more {
  color: #ff6a36;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.read-more:hover {
  color: #000000;
}

/* Social Media Section */
.social-media {
  padding: 5rem 1rem;
  background: #ff6a36;
  text-align: center;
}

.social-media h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.social-media-image {
  max-width: 110px;
  height: auto;
  margin: 30px;
}

/* Footer */
.footer {
  padding: 5rem 1rem;
  background: white;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.footer-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.footer-info p {
  font-size: 1rem;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 1rem;
}

.footer-contacts p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contacts a {
  color: black;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-copyright {
  max-width: 1180px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
      gap: 1rem;
  }

  .about-content {
      flex-direction: column;
      align-items: center;
  }

  .about-image {
      max-width: 100%;
      height: auto;
  }

  .contact-info {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
      display: block;
  }

  .nav-wrapper {
      flex-wrap: wrap;
  }

  .nav-menu {
      display: none;
      width: 100%;
      flex-direction: column;
      text-align: center;
      padding: 1rem 0;
  }

  .nav-menu.active {
      display: flex;
  }

  .social-icons {
      display: none;
  }

  .hero h1 {
      font-size: 3rem;
  }

  .hero h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #ff6a36;
    margin-bottom: 1rem;
  }

  .service-card,
  .pricing-card {
      height: auto;
      min-height: 300px;
  }

  .footer-content {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .works-grid {
      grid-template-columns: 1fr;
  }

  .contact-info {
      font-size: 1rem;
  }

  .social-media h2 {
      font-size: 2rem;
  }

  .social-media-image {
      max-width: 100%;
  }
}

.hide {
      display: none !important;
  }

/* Responsive visibility */
@media (max-width: 768px) {
  .hide-on-mobile {
      display: none !important;
  }
}

@media (min-width: 767px) {
  .hide-on-desktop {
      display: none !important;
  }
}