/* Add CSS styles for your web site here and use them in index.html. */
html {
    scroll-behavior: smooth;
    background-attachment: fixed;
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100vh;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 15px;
    background-color: #000;
    color: #c0eb75;
}
.product-card,
.feed-back-card {
    display: flex;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 5px 8px;
    margin: 10px;
    gap: 10px;
    overflow-y: auto;
}
.card {
    display:flex;
    gap: 15px;
    margin: 10px;
    border: 1px solid olivedrab;
    border-radius: 12px;
    width:fit-content;
    height: 140px;
    justify-content: center;
}
.card-img {
    border-radius: 12px;
    border: none;
    overflow: hidden;
    object-fit: cover;
    width: fit-content;
    height: 120px;
    margin: 10px;
}
.nav-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  height: 50px;
  margin: 10px 0;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.nav-bar a, nav a {
  display: inline-block;
  text-decoration: none;
  color: #c0eb75;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

.nav-bar a:hover, nav a:hover {
  color: white;
  text-shadow: 0 0 10px #c0eb75;
}

.CTA-btn {
    border-radius: 5px;
    border: 2px solid #c0eb75;
    color: #000;
    font-weight: bold;
    background: #c0eb75;
    padding: 10px 15px;
    margin: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.CTA-btn:hover {
    background: #a8d856;
    border-color: #a8d856;
    transform: scale(1.05);
}

div {
    margin: 15px 0;
}
.fot-a {
    text-decoration: none;
    color: #c0eb75;
    display: block;
    margin: 15px 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.fot-a:hover {
    color: white;
    text-shadow: 0 0 10px #c0eb75;
}

h1, h2 {
    text-align: center;
    color: #c0eb75;
}

.hero-img {
    border-radius: 12px;
    padding: 10px 16px;
    border: 2px solid #c0eb75;
    display: block;
    margin: auto;
    width: 80%;
    height: fit-content;
    object-fit: cover;
}
