/* Global styles */
body {
  font-family: 'Roboto', sans-serif; /* Default font */
  background-color: #f8f9fa; /* Light gray background */
  color: #212529; /* Dark text color */
}

.container {
  max-width: 960px; /* Center content and limit width */
}

/* Navbar styles */
.navbar {
  border-bottom: 2px solid #212529; /* Dark border */
}

.navbar-brand {
  font-size: 2rem;
  font-family: 'Indie Flower', cursive; /* Unique font for navbar brand */
}

/* Map container styles */
#map {
  width: 100%;
  height: 400px; /* Adjust the height of the map */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Text below the map */
.text-below-map {
  margin-top: 20px; /* Add space between map and text */
}

/* Card container styles */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Adjust spacing between cards */
}

/* Card styles */
.card {
  background-color: #fff; /* White background */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: transform 0.3s ease; /* Smooth hover effect */
  margin: 20px 0; /* Adjust margin to space out cards */
  padding: 20px;
  width: 250px; /* Fixed width for cards */
  height: 250px;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.logo-img {
  margin-top: auto; /* Push the image to the bottom */
}


.card:hover {
  transform: translateY(-5px); /* Move up on hover */
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.card-text {
  font-size: 1rem;
}

.glow {
  box-shadow: 0 0 10px 5px var(--glow-color);
}

/* Footer styles */
.footer {
  margin-top: 20px; /* Add space between cards and footer */
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d; /* Gray text color */
}

.gradient-background {
  background: linear-gradient(145deg, #ff0000, #faff00, #ff0000, #faff00);
  background-size: 240% 240%;
  animation: gradient-animation 4s ease infinite;
  -webkit-background-clip: text; /* Clip the text to the background */
  background-clip: text;
  color: transparent; /* Set text color to transparent */
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  margin-top: 50px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

.menu {
  margin-top: 40px; /* Add some space between the cards and the menu */
}

.menu img {
  max-width: 100%;
  height: 600px;
  border-radius: 10px; /* Add rounded corners to the menu picture */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
}

.enlarged-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  overflow: auto;
}

.enlarged-menu img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  border-radius: 10px; /* Add rounded corners to the enlarged menu picture */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
  cursor: pointer; /* Change cursor to pointer on hover */
  padding-top: 2rem;
}

.click-to-enlarge{
  font-size: small;
}

.contact-card {
  background-color: #fff; /* White background */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: transform 0.3s ease; /* Smooth hover effect */
  padding: 20px;
  width: 300px; /* Increased width for the card */
  margin: 20px auto; /* Center the card horizontally */
  text-align: center;
}

.contact-card svg {
  padding-right: 3px;
}


#menuImage {
  margin: 1rem;
}
/* Privacy-specific styles */
.privacy-content {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.privacy-content p {
  font-size: 1rem;
  margin-bottom: 10px;
}
