
* { margin: 0; padding: 0; box-sizing: border-box; }

  body, html { font-family: Arial, sans-serif;  
      height: 100%;
      width: 100%;
      font-family: Arial, sans-serif;
      overflow-x: hidden;
    }

    .bg {
      background-size: cover;
      background-position: center;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.nav-logo {
  font-size: 18px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FFD700;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0,0,0,0.9);
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 1000;
  margin-top: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: white;     
}

.dropdown .submenu {
  display: none;
}

.dropdown.open .submenu {
  display: flex;
}

.submenu a {
  padding: 10px;
  text-align: left;
  color: white;      
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 10px 0;  z-index: 2000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
 
  .submenu {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    margin-left: 0;
    transform: none;
  }

  .dropdown.open .submenu {
    display: flex;
  }

  .submenu a {
    text-align: center;
    padding: 12px 0;
    color: white;
    text-decoration: none;
  }

}

.content {
  padding: 60px 20px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5); /* White with 50% opacity */
  border-radius: 12px;
  
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.location-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: black;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.location-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.location-card h3 {
  margin-bottom: 10px;
}

.location-card p {
  font-size: 14px;
  color: #333;
}

/* Button container */
.button-container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 12px;
  z-index: 1;
}

.button-container h1 {
  margin-bottom: 20px;
}

.button-container a {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.button-container a:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .button-container a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  header img {
    max-width: 200px;
  }
}

/* Logo */
header {
  margin-top: 20px;
  text-align: center;
  z-index: 1;
}

header img {
  max-width: 300px;
  height: auto;
}

footer {
  background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    font-size: 14px;
    z-index: 1;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.delivery-button {
  background-color: #007BFF;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.delivery-button:hover {
  background-color: #0056b3;
}
