/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-image: url('bgpizza.jfif'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #e74c3c;
    padding: 10px 0;
    text-align: center;
    color: white;
}

header h1 {
	text-align: center;
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

nav ul li a:hover {
    color: #f1c40f;
}

/* Main Heading */
h1 {
    font-size: 2.5em;
    margin-top: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	text-align: center;
}

/* Form Styles */
form {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: 50px auto;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

form label {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1em;
}

button[type="submit"] {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

button[type="submit"]:hover {
    background-color: #c0392b;
}

/* Go Back Button */
.back-button {
    text-align: center;
    margin: 20px 0;
}

.back-button button {
    background-color: #e3170a; /* Pizza Hut Red */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.back-button button:hover {
    background-color: #ba1500; /* Darker red on hover */
}


/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex-basis: 22%;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-section p, .footer-section a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
