body {
  font-family: "Pangolin", cursive;
  margin: 0;
  padding: 0;
  color: #333;
}

.brand-logo{
	max-width: 100px;
	height: auto;
}

h1, h2 {
  text-align: center;
  font-family: "Playwrite IT Moderna", cursive;
}

a {
  text-decoration: none;
  color: inherit;
  position: relative;
  text-align: center;
}

a:not(:has(img))::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #93B7D1;
  transition: width 0.3s ease;
}

a:not(:has(img)):hover::after {
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  padding: 10px;
}

header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-family: "Playwrite IT Moderna", cursive;
  font-size: 40px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  justify-content: center;
}

.navigation li {
  font-size: 18px;
  display: inline;
  padding: 10px;
}

.navigation a {
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.navigation a:hover {
  background-color: #f2f2f2;
}

main{
  padding: 30px;
}

#about-us {
  padding: 40px;
  background-color: #F9FAFB;
  font-family: "Pangolin", cursive;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about-us h1 {
  font-family: "Playwrite IT Moderna", cursive;
  font-size: 36px;
  color: #93B7D1;
  margin-bottom: 20px;
  text-align: center;
}

#about-us h2 {
  font-size: 24px;
  color: #4B5563;
  margin-bottom: 15px;
  border-bottom: 2px solid #93B7D1;
  display: inline-block;
  padding-bottom: 5px;
}

#about-us p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

#about-us p strong {
  color: #93B7D1;
}

/* Map */
#map {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
}

.map-container {
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

#site-footer {
  background-color: #F2F9FF;
  padding: 40px 20px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px; /* Increased gap for better spacing between sections */
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.footer-links, .footer-navigation, .footer-categories {
  font-size: 14px;
}

.footer-links h2,
.footer-navigation h2,
.footer-categories h2 {
  font-family: "Pangolin", cursive;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-links p,
.footer-navigation ul li,
.footer-categories ul li {
  margin: 5px 0;
}

.footer-links a,
.footer-navigation a,
.footer-categories a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.footer-links a::after,
.footer-navigation a::after,
.footer-categories a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #93B7D1;
  transition: width 0.3s ease;
}

.footer-links a:hover::after,
.footer-navigation a:hover::after,
.footer-categories a:hover::after {
  width: 100%;
}

.footer-navigation ul,
.footer-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation ul li,
.footer-categories ul li {
  margin: 5px 0;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #555;
}

@media (max-width: 768px){
  h1{
    font-size: 20px;
  }
  .navigation li {
    font-size: 18px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-logo{
    width: 100px;
    height: auto;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px; /* Adjusted for compactness on smaller screens */
  }
  #about-us {
    padding: 20px;
  }

  #about-us h1 {
    font-size: 28px;
  }

  #about-us h2 {
    font-size: 20px;
  }

  #about-us p {
    font-size: 16px;
  }

  /* Not sure if it is right for sizes, change if needed */
}

@media (max-width: 399px) {
  h1{
    font-size: 20px;
  }
  .navigation li {
    font-size: 15px;
  }
  #brand-name{
    font-size: 30px;
  }
  /* Not sure if it is right for h1 and navigation li */
}
