 /* General body styling */ 
body { 
	background-image: url('bgpizza.jfif');
 	background-size: cover;
 	background-position: center;
	background-attachment: fixed;
 	background-size: no-reapet;
	font-family: 'Arial', sans-serif;
	background-color: #f4f4f4;
	margin: 0; 
	padding: 0; 
}

 /* Navigation bar styling */
nav { 
	background-color: #d22323;
	padding: 10px;
 	text-align: center; 
}
nav ul {
	list-style: none; 
	margin: 0; 
	padding: 0;
}
nav ul li {
	display: inline-block;
	margin-right: 15px; 
} 
nav ul li a { 
	color: white;
 	text-decoration: none;
 	font-weight: bold; 
}
 
/* Header section */
.header {
 	height: 250px;
 	text-align: center;
 	color: white; 
}
header h1 {
 	padding-top: 80px;
 	font-size: 50px;
 	text-shadow: 2px 2px #000;
}
 
/* Welcome Section */
#welcome {
 	text-align: center;
 	background-color: #fff;
 	border-bottom: 2px solid #d22323; 
}
#welcome h2 { 
	font-size: 28px;
 	color: #d22323; 
}
#welcome p {
 	font-size: 18px;
 	color: #666; 
}
 
/* Menu styling */
.menu {
 	display: flex;
 	justify-content: center;
 	flex-wrap: wrap;
 	margin: 40px 0; 
}
.menu-item {
	width: 250px;
	margin: 20px;
 	padding: 15px;
 	background-color: white;
 	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 	text-align: center;
 	border-radius: 10px;
 }
.menu-item img {
 	width: 100%;
 	height: auto;
 	border-radius: 8px; 
}
.menu-item h3 {
 	font-size: 20px;
 	margin: 10px 0; 
} 
.menu-item p {
 	font-size: 16px;
 	color: #666; 
}
/* 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;
}
/* 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 */
}

