@font-face {
  font-family: 'MyCustomFont1';
  src: url('./fonts/Serotiva-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'MyCustomFont1', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: black;

}

.navbar {
  background: transparent;
  z-index: 20;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);

}

#navbar-nav {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px;
  display: none; 
  position: absolute;
  top: 100%; 
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
}

.navbar-nav.show {
  display: block; 
}

.navbar-nav .nav-link {
  color: white !important;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  padding: 5px 10px;
  text-shadow: 
    2px 2px 5px rgba(0, 0, 0, 0.4), 
    4px 4px 10px rgba(0, 0, 0, 0.3), 
    6px 6px 15px rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  display: flex;
  margin-left: 20px;

}

.navbar-nav .nav-link:hover {
  color: #4a148c;
}

.navbar-toggler {
  border: 1px solid white !important;
}

.navbar-toggler-icon {
  background-image: url('./images/toggles/open.webp') !important;
}

.navbar-toggler.active .navbar-toggler-icon {
  background-image: url('./images/toggles/close.webp') !important;
}

@media (min-width: 992px) {
  .navbar-nav {
    display: flex; 
    position: static; 
    background: transparent; 
    padding: 0; 
  }

  .navbar-nav .nav-link {
    padding: 0;
  }
}


@media (max-width: 768px) {
  .logo {
    position: fixed;
    top: 10px;
    left: 10px; 
    z-index: 1000;
  }
  .translate-icon {
   font-size: 1.2rem;
      justify-content: center;
      align-items: center;
      display: flex;
      margin: auto;
      text-align: center;
      margin-left: 5%;
  }
}



.container {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 30px;
}

.row.g-4 {
  gap: 2rem; 
}

.col-md-3 {
  flex: 0 0 22%; 
  max-width: 22%;
}

img.hover-img {

  transition: transform 0.3s ease; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

img.hover-img:hover {
  transform: scale(1.1); 
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4); 
}


@media (max-width: 1024px) {
  .col-md-3 {
    flex: 0 0 50%; 
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .col-md-3 {
    flex: 0 0 100%; 
    max-width: 80%;
  }
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 0, 128, 0.7); 
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 10;
  
  display: none; 
}

.image-container {
  position: relative;
}



.footer {
  background-color: black; 
  color: #fff;           
  text-align: center;    
  padding: 10px 20px;    
  font-size: 11px;
  
}

.footer .container {
  max-width: 1200px;   
  margin: 0 auto;    
}

@media (max-width: 768px) {
  .footer {
    font-size: 8px;    
    padding: 8px 8px;  
  }
}

