

/* Navbar */
.navbar {
  background: #252f2b;
}

.nav-link {
  color: #7b9188 !important;
  font-weight: 500;
  margin: 0 5px;
}

.nav-link:hover {
  color: #ffd700 !important;
}

.nav-item a {
    font-weight: 600;
   
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
}

/* Center alignment fix on mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-bottom: 10px;
  }

  .d-flex {
    justify-content: center;
  }
}




.hero-buttons{
    margin-top:25px;
}

.btn-primary{
    display:inline-block;
    color:#000000;
    padding:8px 25px;
    border-radius:8px;
    text-decoration:none;
    margin-right:10px;
    background-color: beige;
    border: 1px solid #0d6efd;
    font-weight: 700;
}

.btn-secondary{
    display:inline-block;
    background:#fff;
    color:#000;
    padding:8px 25px;
    border-radius:8px;
    text-decoration:none;
    background-color:#8ece89;
    border: 1px solid #0d6efd;
     font-weight: 700;
   
}


}


/* Buttons */
.post-actions{
  display:flex;
  justify-content:space-between;
  border-top:1px solid #eee;
  padding-top:10px;
}

.action-btn{
  flex:1;
  margin:0 3px;
  padding:6px 8px;
  font-size:13px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
  background:#f3f4f6;
}

.action-btn:hover{
  background:#e5e7eb;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
}

.footer-logo {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-title {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* Social */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  color: #22c55e;
  padding-left: 5px;
}

/* Divider */
.footer-hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

/* Bottom text */
.footer-bottom {
  color: #94a3b8;
}

/* Mobile fix */
@media (max-width: 768px) {
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
}


