/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.nav-links ul {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* .search-bar input {
    border: none;
    padding: 10px;
    border-radius: 20px;
  }
  
  .name {
    cursor: pointer;
    margin-left: 10px;
  } */

/* Image Slider */
.image-slider {
  width: 100%;
  height: 100%;
  display: flex;
}

.slide {
  flex: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Message */
.message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  text-align: justify;
}

.message-left {
  width: 20%;
  padding-right: 20px;
}

.message-right {
  width: 80%;
}

.message-right img {
  max-width: 100%;
  height: auto;
}

/* Media Queries */
@media (max-width: 600px) {
  .message {
    flex-direction: column;
  }

  .message-left,
  .message-right {
    width: 100%;
    padding: 0;
  }

  .message-right img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 601px) and (max-width: 991px) {
  .message-left {
    width: 30%;
    padding-right: 10px;
  }

  .message-right {
    width: 70%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .message-left {
    width: 25%;
    padding-right: 15px;
  }

  .message-right {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .message-left {
    width: 80%;
    padding-right: 20px;
  }

  .message-right {
    width: 20%;
  }
}


/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  justify-items: center;
  margin: 20px 0;
}

.gallery-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* Media Queries */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 993px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 10px;
}

.footer-item a {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}

.footer-item i {
  font-size: 24px;
}

.footer-bottom {
  font-size: 14px;
}

/* Media Queries */
@media (max-width: 600px) {
  .footer-item {
    width: 100%;
  }

  .footer-item a {
    margin-right: 5px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-item {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .footer-item {
    width: 50%;
  }
}

@media (min-width: 993px) {
  .footer-top {
    justify-content: space-between;
  }

  .footer-item {
    width: auto;
  }
}