
/* home page*/

.hero {
    height: 80vh;
    background: url("images/1400x919-Air-fryer-Gobi-Manchurian-44-0383d08f-4012-48d5-8da2-5421b8ed4686-0-1400x919.jpg") no-repeat center/cover;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}
.hero-text{
    position: absolute;
    top: 30px;
    left:30px;
    color: white;

}
.hero-text h1{
    font-style: italic;
    font-size:40px ;
    margin: 0;
}
.hero-text p{
    font-size: 13px;
    margin-top:10px ;
    font-style: italic;
    font-weight: lighter;
}
.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
}

.hero h1,
.hero p {
    position: relative;
}


#status {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}







/* General Page Style */
body {
    color: orange;

    font-family: Arial, sans-serif;
    margin: 0;
    text-align: center;
    background-color:black;
}

/* Navigation Bar */
nav {
  
    display: flex;
    justify-content: space-between;
    align-items:end;

    padding: 15px ;
    color: white;

}*/
.nav-home{
    background-color: black;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding:20px 40px;
}
.nav-menu{
  background-image: 
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
  url("images/one-pot-jollof-rice-and-chicken.jpg");
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
     padding: 10px;
}
.nav-links{
    display:flex;
    list-style:none ;
    gap: 30px;
    margin:0 ;
    padding: 0;
}
.nav-links a{
    text-decoration: none;
    color :white;
    font-size: 18px;
}
.logo img{
    border-radius:50%;
    width: 30px;
    height: 30px;
}
.logo{
    display:flex;
    align-items: center;
    gap: 10px;
}
.logo span{
    font-size: large;
    color: orange;
    font-style: italic;
    font-weight: bold;
}
nav a {
    display:flex;
    
    color: white;
    text-decoration:none;
 font-size: 18px;
    text-align: right;
    
}

nav a:hover {
    color: orange;
}
.menu-row{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin:50px;

}
/* Food Cards Container */
.food-container{
    display: grid;
    justify-content: center; 
    gap: 30px;
    margin-top: 20px;
    grid-template-columns: repeat(2,1fr);
      
}
.food-container img {
    display:flex;
  
    gap: 30px;
    margin-top: 20px;
      width:300px ;
    height:300px ;
    border-radius:50% ;
    object-fit: cover;
}

/* Individual Food Card */
.food-card {
    display: flex;
    align-items: center;
    gap: 25px;
   
   /* text-align: center;*/
    background:black;
    border-radius: 10px;
    padding: 15px;
   

}
.food-info{
    color: white;
    max-width: 180px;
}
.food-info h3{
    color: orange;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 26px;
    font-style: italic;
}
.food-info p {
    color: aliceblue;
    line-height:1.3 ;
     font-size: 13px;
    margin-bottom: 15px;
}
.headings h2{
    font-style: bold;
    font-size:42px;
}

.offer p{
    font-style: italic;
}
/* 
ul{
    list-style-type: none;
}

 */
/* Buttons */
.food-info button {
    background-color: orange;
    display: inline;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: red;
}
/* Contact Section */
.contact-section {
  padding: 60px 30px;
  text-align: center;
}

.contact-section h1 {
  font-size: 42px;
  color: goldenrod;
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ddd;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-box {
  background-color: #111;
  border: 1px solid goldenrod;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(218, 165, 32, 0.2);
}

.contact-box h2 {
  color: goldenrod;
  margin-bottom: 20px;
  font-size: 26px;
}

.contact-box p {
  font-size: 17px;
  line-height: 1.8;
  margin: 10px 0;
}

.contact-box i {
  color: goldenrod;
  margin-right: 10px;
}
.contact-box img{
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.contact-box a {
  color: white;
  text-decoration: none;
}

.contact-box a:hover {
  color: goldenrod;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: transparent;
  border-radius: 10px;
}

.social-links img {
    border-radius: 50%;
  width: 35px;
  height: 35px;
  object-fit: contain;
}


/* Footer */
.footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 16px;
  color: white;
}

