@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');




header {
    background-color: white;
    position: fixed;
    width: 100%;
    height: 50px;
    top: 0;

}

.btn {
    background-color: red;
    padding: 30px 20px 30px 20px;
    color: white;
    border: none;
}



.main-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    border-bottom: 2px solid #f7e9a0;
    height: 50px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #fff;
    padding: 10px 40px 0 40px;
    gap: 32px;
    height: 50px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-family: inherit;
    transition: color 0.2s;
}

.nav-link:hover {
    color: red;
    text-decoration: none;
}

.nav-link.active,
.nav-link.login,
.nav-link.cart {
    color: #d32a00;
}

.nav-link.login {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link.cart {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-user::before {
    content: "👤";
    font-size: 22px;
}

.icon-cart::before {
    content: "🛒";
    font-size: 22px;
}

.nav-separator {
    width: 32px;
    display: inline-block;
}

.YO_MAN {
    background-color: rgb(240, 240, 167);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.menu-title {
    font-family: 'inter';
    font-size: 8rem;
    color: #ff0000;
    font-weight: bold;
    letter-spacing: 8px;
    margin: 40px 0 0 0;
    text-align: center;
}

body {
    background: #faf3eb;
    font-family: 'Arial', sans-serif;
    color: #181818;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #faf3eb;
    min-height: 100vh;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    max-width: 1200px; /* ширина для двох великих блоків */
    justify-content: center;
    align-items: center;
}

.menu-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.menu-column {
    flex: 1 1 0;
    min-width: 400px;
    max-width: 600px;
    font-size: 1.35em;
    margin-bottom: 0;
}

.menu-section-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.menu-section {
    background: transparent;
}

.menu-item {
    margin-bottom: 18px;
    font-size: 1.1em;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    font-weight: bold;
    font-size: 1.15rem;
}

.item-name.highlight {
    background: #3d5ca3;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 500;
}

.item-description {
    margin: 8px 0 0 0;
    font-size: 1rem;
    color: #222;
}

hr {
    border: none;
    border-top: 2px solid #e05a2b;
    margin: 18px 0;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-form > div {
  display: flex;
  gap: 16px;
}

.footer-form input,
.footer-form textarea {
  flex: 1;
  border: none;
  border-bottom: 2px solid #000;
  padding: 8px;
  font-size: 1rem;
  background: #fff;
  outline: none;
}

.footer-form textarea {
  min-height: 60px;
  resize: vertical;
}

.footer-form button[type="submit"] {
  border: 2px solid #000;
  background: #fff;
  padding: 8px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.footer-form button[type="submit"]:hover {
  background: #000;
  color: #fff;
}

.footer-content h2 p{
  text-align: center;
  background-color: rgb(241, 235, 235);
  padding: 20px;
}

footer {
    background: #fff;
    padding: 40px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
    border-top: 1px solid #eee;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content > div {
    flex: 1 1 400px;
    min-width: 340px;
    max-width: 600px;
}

.footer-content h2 {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-content p {
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-form > div {
    display: flex;
    gap: 16px;
}

.footer-form input,
.footer-form textarea {
    flex: 1;
    border: none;
    border-bottom: 2px solid #000;
    padding: 8px 4px;
    font-size: 1em;
    background: transparent;
    outline: none;
    resize: none;
}

.footer-form textarea {
    min-height: 60px;
    margin-top: 8px;
}

.footer-form button[type="submit"] {
    align-self: flex-end;
    padding: 8px 24px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.footer-form button[type="submit"]:hover {
    background: #000;
    color: #fff;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #e74c3c;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 10px;
    }
    .footer-content > div {
        max-width: 100%;
    }
}