* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
code, pre, .code-editor {
    font-family: 'JetBrains Mono', monospace;
    font-optical-sizing: auto;
    font-weight: 400; 
    font-style: normal;
    font-variant-ligatures: normal;
}
.first_head{
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
    0 1px 0px rgba(99, 102, 241, 0.25);
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
}
.first_div{
    width: 1080px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
.a{
    text-decoration: none;
    transition: 0.25s ease;
    color: black;
    font-size: 18px;
}
.a:hover{
    color: #ff5722;
}
.b{
    text-decoration: none;
    color: black;
    padding-right: 500px;
    font-size: 18px;
    transition: 0.25s ease;
}
.b:hover{
    color: dodgerblue;
}.menu-section {
    padding: 80px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: black;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-card {
    background: #1e1e2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
}

.card-image {
    height: 140px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 20px;
}

.menu-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.map-info h4{
    color: #1e1e2e;
}
.card-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.card-price {
    font-size: 20px;
    font-weight: 800;
    color: #f59e0b;
    margin: 0;
}

.map-section {
    padding: 80px 20px;
    color: #ffffff;
    font-family: sans-serif;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    background-color: #ff5722;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    width: fit-content;
}

.map-info h2 {
    font-size: 36px;
    margin: 0;
    font-weight: 800;
    color: #1e1e2e;
}

.map-description {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.btn-route {
    background-color: #ff5722;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: 0.2s ease;
}

.btn-route:hover {
    background-color: #e64a19;
}
.site-footer {
    background-color: #111111;
    color: #888888;
    padding: 25px 20px;
    font-family: sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    height: 90px;
    color: #555555;

}
.last{
    text-decoration: none;
    color: #555555;
    margin-right: 600px;
}
.last:hover{
    color: #e64a19;
}