html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  color: #c5a476;
  background-color: #1a1a1a;
  line-height: 1.6;
}

.main-header {
    background-color: ;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: ;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #FFD700;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 20%, black 80%, transparent),
    linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-composite: intersect;
  mask-image:
    linear-gradient(to right, transparent, black 20%, black 80%, transparent),
    linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;

  height: 200px;
  width: auto;
}

/* Навигационное меню - ОСНОВНЫЕ ИЗМЕНЕНИЯ ЗДЕСЬ */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 1s ease;
}

.main-nav a:hover {
    color: #4CAF50; /* Тёмно-зелёный при наведении */
    background-color: #252525;
}

.main-nav a.active {
    color: #FFD700; /* Золотой для активной страницы */
    border-bottom: 2px solid #FFD700;
}

.main-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section {
    flex: 1;
    background-color: #252525;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 10px solid #333;
}

.welcome-section h2 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}






/*
.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center; 
  align-items: center;     
  overflow: hidden;
}

.bg-layer img {
  width: 20%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;

  /*плавное исчезновение по краям 
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.text {
  color: #7fffd4;
  font-family: 'Yusei Magic', sans-serif;
  z-index: 2; 
  text-align: left;
  position: relative;
}

.text h1 {
  margin: 0;
  padding: 0;
  line-height: 1.1;
  padding-left: 40px;
}

.text h4 {
  padding-top: 100px;
  padding-left: 40px;
}

.text::after {
  position: absolute;
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background: url("https://avatars.mds.yandex.net/i?id=fdc0d5a65d0d7f88b5959a2de3737b45_l-5876235-images-thumbs&n=13") no-repeat center/cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  top: 5px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.side-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0.45; 
  object-fit: cover;
  z-index: 1; 
}

main {
  position: relative; 
  min-height: 100vh;
  width: 100%;
  background-color: #e83c1a; 
  margin: 0;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px; /* зона плавного перехода 
  background: linear-gradient(to bottom, black, transparent);
*/
.tea-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; 
  max-width: 100%;
  margin: auto;
  background: ;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
  border-botto: 2px solid #FFD700;
}

.tea-header {
  color: #0ced67;
  border: 2px solid #001600;
  border-radius: 10px;
  background-color: #001600;
}

.tea-table div {
  text-align: center;
  padding: 10px;
}

.section-tea {
  border-radius: 10px;
  background: #001600;
  color: #0ced67;
}

