/* style.css | Intelio Marketplace Styling */

/* Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  margin: 0 0 10px;
  font-weight: 700;
}
p {
  margin: 0 0 20px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn.primary {
  background: #00f0ff;
  color: #000;
}
.btn.secondary {
  border: 2px solid #00f0ff;
  color: #00f0ff;
  background: transparent;
}
.btn.small {
  font-size: 14px;
  padding: 8px 16px;
  background: #00f0ff;
  color: #000;
  margin-top: 10px;
}

/* Hero */
.hero-section {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}
.hero-title {
  font-size: 2.8rem;
  color: #00f0ff;
}
.hero-title span {
  color: #fff;
}
.hero-tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin: 10px 0 30px;
}
.hero-cta .btn {
  margin: 0 10px;
}

/* Sections */
section {
  padding: 60px 20px;
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
}
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card.blog {
  background: #222;
}

/* Features */
.feature {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  color: #00f0ff;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: #080808;
  color: #aaa;
}
footer a {
  color: #00f0ff;
}

/* Bottom Navigation */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  border-top: 1px solid #333;
  z-index: 1000;
  padding: 5px 0;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00f0ff;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-item .material-icons {
  font-size: 22px;
}
.nav-item:hover {
  color: #ffffff;
  transform: scale(1.1);
}
@media(min-width: 768px) {
  .bottom-nav { display: none; }
}
