html {
  scroll-behavior: smooth;
} 

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    color: #d8bfa8;
    
}


.fixed-header h1 {
    margin: 0; 
    font-size: 2em; 
    color: #0e0e0e;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}

h1 {
    font-size: 2.5rem;
    color: #4e4a49;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    background-color: #fffbf5;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h2 {
    font-size: 2rem;
    color: #3e3029;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: 70px;
    margin-bottom: 20px;
    padding: 5px;
    border-bottom: 2px solid #B17457;
}

section {
    padding: 50px 0;
    background-color: #fffcf8;
}


.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.card {
    overflow: hidden;
    margin: 15px;
    transition: transform 0.2s;
    border-radius: 0;
}

.card:hover {
    transform: scale(1.05); 
}

.card-img-top {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.card-body {
    padding: 15px;
    border-radius: 0;
}

.card-title {
    font-size: 1.25rem;
    color: #4e4a49; 
}

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


@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
}

html {
    scroll-behavior: smooth;
  }

  @keyframes appear{
    from{
        opacity: 0;
        transform: translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX();
    }
    
}

.card{animation: appear linear;
animation-timeline: view();
animation-range: entry 0% cover 40% ;} 

#spage1 {
    margin-top: 150px; 
}

#spage2 {
    margin-top: -150px; 
}
footer {
    background-color: #7d716a; 
    color: #0d0b0b; 
    padding: 30px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 200px;
    min-width: 150px;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #151414;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #000;
    text-decoration: underline;
  }

  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #121111;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #000;
  }
  
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #0e0d0d;
  }
 
nav {
  position: fixed;
  top: 30px;
  left: 1100px;
  z-index: 1000;
  font-size: large;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

nav a {
  margin-left: 15px;
  color: rgb(33, 32, 32);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333; 
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

nav a.active {
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

.nav-strip {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #e5e0d4;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.gany-enterprise {
  font-size: 1.5em;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
  background: black;
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
}

  

