* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-image: url('images/icons.png');
    background-repeat: repeat;
    background-size: 700px auto;
    background-color: #f6952e;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 425px;
    width: 100%;
    background-color: #f6952e;
    box-shadow:
        0 0 0 5px black;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #f7f8ce;
    font-weight: 600;
    font-size: clamp(16px, 7.5vw, 32px);
}

header {
    background-image: url("images/header.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90px;
    width: 100%;
    max-width: 425px;
}

#contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6952e;
    padding: 4px 0px;
    width: 100%;
    max-width: 425px;
}

#numbers {
    display: flex;
    flex-direction: column;
}

.sochial {
    width: 52%;
    margin: 0px 20px;
    border-radius: 7px;
}

.food-card {
    padding: 1px 1px 15px 1px;
    background-color: #f7f8ce;
    border-radius: 6px;
    margin: 0px 5px 10px 5px;
    box-shadow: 1px 7px 6px rgba(0, 0, 0, 0.3);
}

.food-img {
    height: 100%;
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

hr {
    border: none;
    background-color: #ff9800;
    width: 80%;
    margin: 3px auto;
    opacity: 70%;
    height: 4px;
    border-radius: 50px;
}

.food-name {
    text-align: center;
    padding-top: 4px;
    color: #f6952e;
    font-weight: bolder;
    font-size: clamp(16px, 7vw, 30px);
}

.food-price {
    text-align: center;
    color: #f7f8ce;
    font-weight: bolder;
    font-size: clamp(12px, 4vw, 18px);
}

.add-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6952e;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 14px 8px 10px;
    margin-right: 13px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.add-btn:hover {
    transform: scale(1.03);
}

.add-btn:active {
    transform: scale(0.97);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


#order-btn {
    position: fixed;
    bottom: 5%;
    left: 7%;
    background-color: #fa681f;
    color: #f7f8ce;
    border: none;
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#order-btn:hover {
    transform: scale(1.05);
}

#order-btn:active {
    transform: scale(0.97);
}









.dialog {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.dialog.hidden {
    display: none;
}

.dialog-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.dialog-box h2 {
    margin-bottom: 15px;
}

.dialog-box input,
.dialog-box textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #aaa;
    border-radius: 10px;
    font-size: 16px;
}

.dialog-box button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #f6952e;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}
