/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: url('food-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-container {
    width: 90%;
    max-width: 600px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

h2 {
    color: #d35400;
}

p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f9e79f;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.input-group:hover {
    background: #f5c469;
}

.input-group i {
    margin-right: 10px;
    color: #d35400;
}

input, select, textarea {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    padding: 5px;
}

/* Rating Stars */
.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-direction: row-reverse;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #f39c12;
}

.submit-btn {
    padding: 12px;
    border: none;
    background: #e74c3c;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    z-index: 1000;
}

.popup h3 {
    color: #27ae60;
}

.popup button {
    padding: 8px 15px;
    border: none;
    background: #27ae60;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.popup button:hover {
    background: #219150;
}

@media (max-width: 600px) {
    .contact-container {
        width: 95%;
        padding: 15px;
    }
}
