@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: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header__logo img {
  height: 48px;
}
.site-header__nav {
  display: flex;
  gap: 2rem;
}
.site-header__nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}
.site-header__nav a:hover {
  color: #c87d3f;
}
@media (max-width: 768px) {
  .site-header__nav {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
  }
  .site-header__nav.active {
    display: flex;
  }
}
.site-header__lang {
  display: flex;
  gap: 0.5rem;
}
.site-header__lang .lang-btn {
  border: none;
  background: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
}
.site-header__lang .lang-btn--active {
  background: #c87d3f;
  color: white;
  border-radius: 4px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}

.hero {
  position: relative;
  background: url("/assets/img/hero.webp") center right no-repeat;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}
.hero__overlay {
  display: flex;
  align-items: center;
  padding-left: 100px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #fff8ed 40%, rgba(255, 255, 255, 0) 100%);
}
.hero__content {
  max-width: 600px;
  padding: 5rem 0;
}
.hero__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #5e3419;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero {
    background-position: center;
    background-size: cover;
    height: auto;
  }
  .hero__title {
    font-size: 2.4rem;
  }
  .hero__overlay {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #fff8ed 60%, rgba(255, 255, 255, 0) 100%);
  }
}

.media-showcase {
  background: #fff8ed;
  padding: 6rem 8vw;
}
.media-showcase__title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  color: #3c2e1e;
  margin-bottom: 4rem;
}
.media-showcase__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.media-showcase .media-card {
  background: #fefcf8;
  border: 1px solid #d6c1a1;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(130, 95, 50, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.media-showcase .media-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 30px rgba(130, 95, 50, 0.12);
}
.media-showcase .media-card__image {
  position: relative;
}
.media-showcase .media-card__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-bottom: 1px solid #e5d7bd;
}
.media-showcase .media-card__text {
  padding: 2rem 1.5rem;
  font-size: 1.2rem;
  color: #4d3219;
  text-align: center;
  background: linear-gradient(to bottom, #fefcf8 0%, #f7f0e3 100%);
  z-index: 3;
}

.about-modern {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: #000;
}
.about-modern__bg {
  background: url("/assets/img/2-1.webp") center/cover no-repeat;
  height: 100%;
  position: relative;
}
.about-modern__overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10vw;
}
.about-modern__content {
  background: rgba(255, 248, 237, 0.92);
  padding: 2.5rem 3rem;
  max-width: 600px;
  border-left: 6px solid #c58940;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.about-modern__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #3e2a1b;
  margin-bottom: 1rem;
}
.about-modern__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5e4b36;
  margin-bottom: 1.8rem;
}
.about-modern__btn {
  display: inline-block;
  background: #c58940;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 0;
  transition: 0.3s ease;
}
.about-modern__btn:hover {
  background: #a26d2f;
}
@media (max-width: 768px) {
  .about-modern__content {
    padding: 2rem;
  }
  .about-modern__title {
    font-size: 1.8rem;
  }
  .about-modern__text {
    font-size: 1rem;
  }
}

.flavor {
  background: #fff8ed;
  padding: 6rem 8vw;
}
.flavor__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
.flavor__cups {
  flex: 1;
  min-width: 320px;
}
.flavor__cups img {
  width: 100%;
  height: auto;
  display: block;
}
.flavor__content {
  flex: 1;
  min-width: 320px;
}
.flavor__content .flavor__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3a2717;
  margin-bottom: 1.5rem;
}
.flavor__content .flavor__title span {
  color: #f4af3d;
}
.flavor__content .flavor__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a4432;
  max-width: 500px;
}
@media (max-width: 768px) {
  .flavor__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .flavor .flavor__title {
    font-size: 2rem;
  }
}

.footer {
  background: #1e1b18;
  color: #e6e1db;
  padding-top: 4rem;
  font-size: 0.95rem;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding: 0 8vw 2.5rem;
}
.footer__logo {
  width: 120px;
  margin-bottom: 1rem;
}
.footer__desc {
  color: #c9c4bd;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 250px;
}
.footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f2f2f2;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 0.6rem;
}
.footer ul li a {
  color: #b5aea6;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer ul li a:hover {
  color: #f0c187;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
  transition: 0.2s ease;
}
.footer__socials img:hover {
  filter: brightness(1.2);
}
.footer__bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #3c372f;
  font-size: 0.85rem;
  color: #9b958f;
}

.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;
}

.aboutpage {
  padding: 4rem 8vw;
}
.aboutpage__hero {
  text-align: center;
  margin-bottom: 5rem;
}
.aboutpage__hero .aboutpage__title {
  font-size: 3rem;
  color: #3a2718;
  margin-bottom: 1rem;
}
.aboutpage__hero .aboutpage__subtitle {
  font-size: 1.4rem;
  color: #7c5a3b;
}
.aboutpage__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}
.aboutpage__block--reverse {
  flex-direction: row-reverse;
}
.aboutpage__text {
  flex: 1;
  min-width: 280px;
}
.aboutpage__text h2 {
  font-size: 2rem;
  color: #3c2b1c;
  margin-bottom: 1rem;
}
.aboutpage__text p, .aboutpage__text li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5a4634;
  margin-bottom: 1rem;
}
.aboutpage__text ul {
  padding-left: 1.2rem;
  list-style: disc;
}
.aboutpage__image {
  flex: 1;
  min-width: 280px;
}
.aboutpage__image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.coffee-history {
  background: #fffaf0;
  color: #2b2b2b;
  padding-bottom: 4rem;
}
.coffee-history .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.coffee-history .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.coffee-history .subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.coffee-history .text {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 800px;
}
.coffee-history section:nth-child(even) {
  background: #fdf6e4;
}
.coffee-history section + section {
  border-top: 1px solid #e0dccc;
}

.privacy {
  background: #fffdf8;
  padding: 4rem 8vw;
}
.privacy__section {
  margin-bottom: 3rem;
}
.privacy__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3c2a1e;
  margin-bottom: 1rem;
}
.privacy__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a4a3d;
  max-width: 800px;
}
@media (max-width: 768px) {
  .privacy {
    padding: 3rem 5vw;
  }
  .privacy__title {
    font-size: 1.5rem;
  }
  .privacy__text {
    font-size: 1rem;
  }
}

.contact {
  background: #fffaf0;
}
.contact .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.contact__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.contact__text {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__form input,
.contact__form textarea {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}
.contact__form button {
  padding: 0.9rem 1.5rem;
  background: #d17c3b;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact__form button:hover {
  background: #c36b2c;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.popup__content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.popup .btn--small {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
}
.popup.active {
  display: flex;
}

.contact__info {
  background: #fff3e5;
  padding: 3rem 1.5rem;
}
.contact__info .contact__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.contact__info .contact__grid .contact__item {
  flex: 1 1 200px;
}
.contact__info .contact__grid .contact__item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3d2a1b;
  margin-bottom: 0.5rem;
}
.contact__info .contact__grid .contact__item p {
  font-size: 1rem;
  color: #5c4b3a;
}
.contact__info .contact__grid .contact__item a {
  color: #5c4b3a;
  text-decoration: none;
}
.contact__info .contact__grid .contact__item a:hover {
  text-decoration: underline;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  margin-top: -1px;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.popup.active {
  display: flex;
}
.popup__content {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.popup__content p {
  font-size: 1.1rem;
  color: #333;
}
.popup__content .btn--small {
  margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  background: #d17c3b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.popup__content .btn--small:hover {
  background: #b76626;
}

.moments {
  background: #fff;
  padding: 6rem 8vw;
}
.moments__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3a2718;
  margin-bottom: 4rem;
}
.moments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.moments .moment {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.moments .moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.moments .moment__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff8ed;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
}
.moments .moment:hover img {
  transform: scale(1.05);
}

@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 */
