@import url('https://fonts.googleapis.com/css2?family=Rubik+Vinyl&family=Space+Grotesk&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #ffffff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-logo a {
  text-decoration: none;
  /* font-size: 2.5rem; */
}

.navbar-logo img {
  width: 230px;
  margin-right: 10px;

}

.navbar-logo img:hover {
  opacity: 0.6;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-item {
  margin-left: 20px;
}

.navbar-links {
  color: #3C4151;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.navbar-links:hover {
  color: #0066ff;
}

/* Mobile Styles */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #0066ff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: rgb(231, 230, 230);
    text-align: center;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-item {
    margin: 15px 0;
  }

  .navbar-toggle {
    display: flex;
  }
}


.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.line {
  height: 2px;
  width: 200px;
  background-color: #0066ff;
  margin: auto;
  margin-top: 2px;
  margin-bottom: 30px;
}

h1 {
  margin-top: 85px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 15px;
  justify-items: center;

}

.card {
  border-radius: 6px;
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  object-fit: cover;
  width: 300px;
  height: 300px;
  transition: transform 0.5s ease;
}

.card p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.card:hover img {
  transform: scale(1.5);
}

.full-view {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}

.full-view img {
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.full-view p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.full-view .prev,
.full-view .next,
.full-view .back {
  position: absolute;
  top: 50%;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.full-view .prev:hover,
.full-view .next:hover,
.full-view .back:hover {
  opacity: 0.8;
}

.full-view .prev {
  left: 20px;
}

.full-view .next {
  right: 20px;
}

.full-view .back {
  right: 20px;
  top: 95px;
}

footer {
  background-color: #333333;
  color: white;
  padding: 30px 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  width: 49%;
}

.footer-left p,
.footer-right p {
  margin: 0;
  color: #9d9d9d;
}

.footer-right nav a {
  color: #9d9d9d;
  text-decoration: none;
  margin-right: 15px;
  display: inline-block;
  font-size: 35px;
}

.footer-right nav a:hover {
  color: #0066ff;
}

.copyright {
  margin-top: 10px;
  background-color: #222222;
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.copyright p {
  margin: 0;
  color: #9d9d9d;
  margin-left: 20px;
  margin-right: 20px;
}


@media screen and (max-width: 1024px) {
  
  footer {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  
  footer {
    padding: 25px;
  }
}

@media screen and (max-width: 750px) {

  footer iframe {
    display: none;
  }

  iframe {
    display: block;
    margin: auto;
    margin-bottom: 25px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

}