

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

header {
    margin-bottom: 30px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.card i {
    font-size: 40px;
    margin-bottom: 10px;
    color: yellow;
}

button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: darkred;
}

/* Food Gallery Styles */
.gallery {
    margin-top: 40px;
}

.gallery h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-container img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-container img:hover {
    transform: scale(1.1);
}



/* Contact Form Styles */
.contact {
    margin-top: 40px;
    text-align: center;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: #222;
    color: white;
}

textarea {
    height: 100px;
}

.map {
    margin-top: 40px;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #111;
}

/* Social Media Buttons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #222;
    border-radius: 50%;
    font-size: 24px;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    transform: scale(1.1);
}

/* Custom Colors for Each Platform */
.facebook:hover { background-color: #1877F2; }
.twitter:hover { background-color: #1DA1F2; }
.instagram:hover { background-color: #E4405F; }
.linkedin:hover { background-color: #0077B5; }