@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 20px;
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__logo-link {
  font-size: 28px;
  font-weight: 700;
  color: #2c2c2c;
  text-decoration: none;
}
.site-header__nav {
  display: flex;
}
@media (max-width: 992px) {
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid #eee;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    pointer-events: none;
    opacity: 0;
  }
  .site-header__nav.active {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
  }
}
.site-header__nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .site-header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.site-header__nav-list a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__nav-list a:hover {
  color: #a67c52;
}
.site-header__lang-switch {
  display: flex;
  gap: 8px;
}
.site-header__lang-switch button {
  background: none;
  border: none;
  font-size: 14px;
  color: #777;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.site-header__lang-switch button:hover {
  background-color: #f2ede7;
}
@media (max-width: 768px) {
  .site-header__lang-switch {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.burger__line {
  height: 2px;
  background-color: #333;
  width: 100%;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
  .burger {
    display: flex;
  }
}

.hero-masaj {
  position: relative;
  background-color: #f2ede7;
  padding: 100px 20px;
  overflow: hidden;
}
.hero-masaj__background-decor {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #e2d6cc, transparent 70%);
  z-index: 0;
}
.hero-masaj__container {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-masaj__left {
  flex: 1 1 400px;
}
.hero-masaj__right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}
@media (max-width: 740px) {
  .hero-masaj__right {
    display: none;
  }
}
.hero-masaj__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #2b2a28;
  margin-bottom: 30px;
}
.hero-masaj__title span {
  display: block;
  background: linear-gradient(90deg, #a67c52, #d2a679);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-masaj__desc-box {
  background-color: #fff;
  padding: 24px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #a67c52;
  max-width: 500px;
}
.hero-masaj__text {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero-masaj__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #a67c52;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.hero-masaj__button:hover {
  background-color: #8a6642;
}
.hero-masaj__photo-frame {
  padding: 10px;
  background-color: #fff;
  border: 2px solid #d2bba0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.hero-masaj__photo {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero-masaj {
    padding: 60px 16px;
  }
  .hero-masaj__container {
    flex-direction: column;
    gap: 40px;
  }
  .hero-masaj__title {
    font-size: 36px;
  }
  .hero-masaj__desc-box {
    padding: 20px;
  }
}

.nasil-modern {
  background-color: #f9f6f2;
  padding: 100px 20px;
}
.nasil-modern__container {
  max-width: 1200px;
  margin: 0 auto;
}
.nasil-modern__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  color: #2c2c2c;
}
.nasil-modern__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 768px) {
  .nasil-modern__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nasil-modern__item {
  position: relative;
  background: linear-gradient(135deg, #fff, #f2ede7);
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.nasil-modern__item:hover {
  transform: translateY(-6px);
}
.nasil-modern__number {
  font-size: 72px;
  font-weight: 800;
  color: #e0d1c0;
  position: absolute;
  top: -10px;
  left: 20px;
  z-index: 0;
  pointer-events: none;
}
.nasil-modern__content {
  position: relative;
  z-index: 1;
}
.nasil-modern__subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #a67c52;
  margin-bottom: 16px;
}
.nasil-modern__text {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}

.hizmetler {
  background-color: #fff;
  padding: 100px 20px;
}
.hizmetler__container {
  max-width: 1200px;
  margin: 0 auto;
}
.hizmetler__title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 80px;
}
.hizmetler__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
@media (min-width: 992px) {
  .hizmetler__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hizmetler__item {
  position: relative;
  background: linear-gradient(145deg, #f7f3ef, #ffffff);
  padding: 32px 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.hizmetler__item:hover {
  transform: translateY(-6px);
}
.hizmetler__item--large {
  grid-column: span 2;
  background: linear-gradient(135deg, #f2ede7, #ffffff);
}
.hizmetler__label {
  font-size: 40px;
  margin-bottom: 20px;
}
.hizmetler__subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #a67c52;
  margin-bottom: 14px;
}
.hizmetler__text {
  font-size: 16px;
  color: #4b4b4b;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hizmetler__grid {
    grid-template-columns: 1fr;
  }
  .hizmetler__item--large {
    grid-column: span 1;
  }
}

.about {
  background-color: #f7f3ef;
  padding: 100px 20px;
}
.about__container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}
.about__content {
  flex: 1 1 500px;
}
.about__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 32px;
  color: #2c2c2c;
}
.about__text-box {
  background-color: #fff;
  border-left: 6px solid #a67c52;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: #4c4c4c;
  margin-bottom: 16px;
}
.about__image {
  flex: 1 1 400px;
  text-align: center;
}
.about__image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .about__container {
    flex-direction: column;
  }
  .about__title {
    font-size: 32px;
  }
  .about__text-box {
    padding: 24px;
  }
}

.yorumlar {
  background-color: #fff;
  padding: 100px 20px;
}
.yorumlar__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.yorumlar__title {
  font-size: 38px;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 80px;
}
.yorumlar__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}
.yorumlar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.yorumlar__text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  position: relative;
}
.yorumlar__text::before {
  content: "“";
  font-size: 64px;
  line-height: 0;
  position: absolute;
  top: -30px;
  left: -10px;
  color: #e0d1c0;
  z-index: -1;
}
.yorumlar__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.yorumlar__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a67c52;
}
.yorumlar__name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.galeri {
  background-color: #fffaf6;
  padding: 100px 20px;
}
.galeri__container {
  max-width: 1200px;
  margin: 0 auto;
}
.galeri__title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  color: #2c2c2c;
}
.galeri__grid {
  display: grid;
  grid-template-areas: "large small1" "large small2";
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .galeri__grid {
    grid-template-areas: "large" "small1" "small2";
    grid-template-columns: 1fr;
  }
}
.galeri__item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.galeri__item:hover {
  transform: scale(1.02) rotate(0.3deg);
}
.galeri__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.galeri__item--large {
  grid-area: large;
  height: 100%;
}
.galeri__item--small {
  height: 300px;
}
.galeri__item--small:nth-of-type(2) {
  grid-area: small1;
}
.galeri__item--small:nth-of-type(3) {
  grid-area: small2;
}
.galeri__item--offset {
  margin-top: -40px;
}
@media (max-width: 768px) {
  .galeri__item--offset {
    margin-top: 0;
  }
}

.footer {
  background: #f5f5f5;
  padding: 4rem 0 2rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer__branding .footer__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer__branding .footer__slogan {
  font-size: 1.1rem;
  color: #555;
}
.footer__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
}
.footer__section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.footer__contact-list, .footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-list li, .footer__nav-list li {
  margin-bottom: 0.6rem;
}
.footer__contact-list li a, .footer__nav-list li a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-list li a:hover, .footer__nav-list li a:hover {
  color: var(--secondary);
}
.footer__contact-list span, .footer__nav-list span {
  font-weight: 600;
  color: #444;
}
.footer__bottom {
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #777;
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

/* About Page Section */
.aboutpage {
  padding: 120px 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.aboutpage__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.aboutpage__header {
  text-align: center;
  margin-bottom: 80px;
}

.aboutpage__header h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.aboutpage__header h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.aboutpage__header p {
  font-size: 22px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.aboutpage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.aboutpage__textblock {
  position: relative;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aboutpage__textblock:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.aboutpage__textblock h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.aboutpage__textblock h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
}

.aboutpage__textblock p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.aboutpage__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.aboutpage__facts .fact__item {
  background: white;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.aboutpage__facts .fact__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.aboutpage__facts .fact__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.aboutpage__facts .fact__item:hover:before {
  transform: scaleX(1);
}

.aboutpage__facts .fact__number {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.aboutpage__facts .fact__label {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.aboutpage__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.aboutpage__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.aboutpage__image:hover img {
  transform: scale(1.05);
}

.aboutpage__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 95, 115, 0.1) 0%, rgba(0, 95, 115, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.aboutpage__image:hover:after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .aboutpage {
    padding: 100px 0;
  }
  .aboutpage__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aboutpage__textblock {
    padding: 35px;
  }
  .aboutpage__header h1 {
    font-size: 48px;
  }
  .aboutpage__header p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .aboutpage__facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aboutpage__header h1 {
    font-size: 42px;
  }
  .aboutpage__header p {
    font-size: 18px;
  }
  .aboutpage__textblock h2 {
    font-size: 24px;
  }
  .aboutpage__facts .fact__item {
    padding: 40px 25px;
  }
  .aboutpage__facts .fact__number {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .aboutpage {
    padding: 80px 0;
  }
  .aboutpage__container {
    padding: 0 25px;
  }
  .aboutpage__header h1 {
    font-size: 36px;
  }
  .aboutpage__textblock {
    padding: 30px 25px;
  }
}
.services-page {
  background-color: #fff;
  padding: 100px 20px;
}
.services-page__container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-page__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #2c2c2c;
}
.services-page__intro {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}
.services-page__intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}
.services-page__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.services-page__item {
  background: #f7f3ef;
  padding: 32px;
  border-left: 6px solid #a67c52;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
}
.services-page__item:hover {
  transform: translateY(-4px);
}
.services-page__item h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #a67c52;
}
.services-page__item p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.services-page__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.privacy__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 130px;
  margin-bottom: 80px;
  color: #000;
  gap: 20px;
}
@media (max-width: 740px) {
  .privacy__container {
    margin-top: 201px;
  }
}
.privacy__container__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
}
.privacy__container__text {
  font-size: 22px;
  width: 80%;
}
.privacy__container__title {
  width: 80%;
  font-size: 24px;
}

.contact {
  padding: 100px 20px;
  background-color: #fffaf6;
}
.contact__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2c2c2c;
}
.contact__intro {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form label {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form label span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.contact__form label input,
.contact__form label textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
  font-family: inherit;
  resize: vertical;
}
.contact__form label input:focus,
.contact__form label textarea:focus {
  outline: none;
  border-color: #a67c52;
}
.contact__submit {
  padding: 14px;
  background-color: #a67c52;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact__submit:hover {
  background-color: #8a6642;
}
.contact__popup {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.contact__popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact__popup-content p {
  margin-bottom: 20px;
  font-size: 16px;
}
.contact__popup-content button {
  padding: 10px 20px;
  font-weight: 600;
  background-color: #a67c52;
  color: #fff;
  border: none;
  cursor: pointer;
}
.contact__popup-content button:hover {
  background-color: #8a6642;
}

@font-face {
  font-family: "Sora";
  src: url("/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Sora";
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.subtitile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitile__img {
  width: 100px;
}

/*# sourceMappingURL=main.css.map */
