/* General */
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

/* Navigation */
header {
  background-color: #ff4d6d; /* Pink-red color */
  padding: 20px;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0 20px;
}

.nav-list a {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff; /* White text for contrast */
}

/* Hide the nav list by default on smaller screens */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    background-color: #ff4d6d;
    position: absolute;
    top: 60px; /* Below the header */
    right: 0;
    width: 100%; /* Full width on smaller screens */
    text-align: center;
    padding-top: 10px;
  }

  /* Show nav items in a vertical list */
  .nav-list li {
    margin: 10px 0;
  }

  /* Show the hamburger menu button */
  .menu-toggle {
    display: block;
    font-size: 3rem;
    color: #ff4d6d;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50px;
    right: 1px;
  }
}

/* Display the menu when toggled */
.nav-list.active {
  display: flex;
  margin-top: 50px;
}

/* Hide the hamburger menu on larger screens */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

.titleSection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.titleSection h1 {
  position: relative;
  top: -25px;
  color: #ff4d6d;
}

@media (max-width: 768px) {
  #titleHeader {
    display: none;
  }
}

.logoImg {   /* Scales the image to 80% of the viewport width */
  width: 40vw;
  height: auto;     /* Maintains the aspect ratio */
  display: block;
}

@media (max-width: 768px) {
  .logoImg {
    width: 110vw;      
    height: auto;     
    display: block;
  }
}

.btn {
  background-color: #ff4d6d; /* Pink-red color */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #333;
  color: white;
}


/* About Section */
.about {
  padding: 60px 20px;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff4d6d;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Services Section */
.services {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: #f1f1f1;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.service {
  text-align: center;
  max-width: 300px;
  margin-bottom: 40px;
}

.service img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.service p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}



/* Make the page take up the full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto; /* This pushes the footer to the bottom */
    position: relative;
  }
  
  footer p {
    margin: 0;
  } 

  .catering {
    padding: 40px 20px;
    text-align: center;
  }
  
  .catering h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .catering p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .catering ul {
    list-style-type: none;
    padding: 0;
  }
  
  .catering ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .catering h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffcc00;
  }
  
  .catering h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .contact {
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff4d6d;
  }
  
  .contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
  
  .contact-info ul {
    list-style-type: none;
    padding: 0;
  }
  
  .contact-info li {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #ffcc00;
  }

  .menu {
  padding: 40px 20px;
  text-align: center;
}

.menu h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.menu-section {
  margin-bottom: 40px;
}

.menu-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff4d6d;
}

.menu-section p {
  font-size: 2rem;
  margin-bottom: 20px;
}

.menu-items {
  text-align: left;
  margin: 0 auto;
}

.menu-items ul {
  list-style-type: none;
  padding: 0;
}

.menu-items li {
  margin-bottom: 20px;
}

.menu-items h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.menu-items p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.price {
  font-weight: bold;
  color: #333;
}

/* Image styling for the Lunch section */
.menu-image {
  margin-top: 20px;
}

.menu-image img {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.headings {
  margin-top: 20px;
  font-size: 50px;
  font: bold;
  color: #ff4d6d;
}

.subHeadings {
  font-size: 25px;
}

.socialLink {
  color: rgb(28, 166, 209)
}

.socialLink:link {
  text-decoration: underline;
}

/* Mission Section */
.mission {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ff4d6d; /* Matches the pink-red theme */
}

.mission p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.mission strong {
  color: #ff4d6d;
}

/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Ensures modal is on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
  text-align: center;
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  color: #ff4d6d; /* Matches the pink-red theme */
  margin-bottom: 20px;
}

.modal-content ul {
  list-style-type: none;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.modal-content ul li {
  margin-bottom: 10px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

.treats-btn {
  margin-top: 20px;
  background-color: #ff4d6d;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.treats-btn:hover {
  background-color: #333;
}