* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
 background-color: #5a8dde;
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Hamburger */
#toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
}

/* Menu */
.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  transition: all 0.3s ease;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem;
  transition: 0.3s;
}

.menu li a:hover {
  color: #00c9ff;
}

/* Dropdown */
.menu li ul {
  /* margin: 10px 0; */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2c5364;
  display: none;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
}

.menu li:hover ul {
  display: block;
}

.menu li ul li a {
  padding: 0.6rem 1rem;
  display: block;
}

.menu li ul li a:hover {
  background-color: #1e3c52;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }

  .menu li {
    width: 100%;
  }

  .menu li ul {
    position: static;
    box-shadow: none;
  }

  #toggle:checked + .hamburger + .menu {
    max-height: 1000px;
    margin-top: 2rem;
  }
}
/* navbarend */


.food-staff-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.food-staff-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

/* Staff Container */
.food-staff-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.food-staff-profile {
    background-color: #d9de9b;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-staff-profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.food-staff-profile h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.food-staff-profile p {
    font-size: 16px;
    color: #666;
}

/* Hover Effect */
.food-staff-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for smaller screens */
@media (max-width: 1024px) {
    .food-staff-container {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on medium screens */
    }
}

@media (max-width: 768px) {
    .food-staff-container {
        grid-template-columns: 1fr; /* 1 item per row on smaller screens */
    }
}

/* About Us Section */
.about-us {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Stack the text and image in a column */
        text-align: center;
    }

    .about-text {
        padding: 20px;
    }

    .about-image img {
        max-width: 100%; /* Ensure the image fits the container */
        margin-top: 20px;
    }

    .about-text h1 {
        font-size: 28px; /* Smaller font size for mobile */
    }

    .about-text p {
        font-size: 14px; /* Smaller text size for mobile */
    }
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.footer {
  background: linear-gradient(to right, #5a8dde, #0046a7);
  color: #fff;
  padding: 40px 0 20px;
}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  margin: 20px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col.subscribe form {
  display: flex;
  background: white;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.footer-col.subscribe input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.footer-col.subscribe button {
  padding: 10px 15px;
  background: transparent;
  border: none;
  color: #0a6ed1;
  cursor: pointer;
  font-size: 18px;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #fff;
}