/* Custom Styles for MineHub */

:root {
  --primary-color:#009058;
  --secondary-color: #578065;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0dcaf0;
  --bg-color1:#ecf5fe;
  --bg-color2:#EEF3F7;
  --bg-color3:#F5F5F5;
}
.nav-link{
  padding: 0.5rem 1rem;
}


body {
  font-family:"Space Grotesk", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--bg-color3);
}

/* Navbar Customization */
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

footer p{
  color: #333 !important;
}

/* Hero Section */

.hero {
background-image: linear-gradient(
  to right, 
  rgba(0, 144, 88, 0.3) 0%,   /* Solid red at 0% */
  rgba(0, 144, 88, 0.3) 50%,  /* Half-transparent at middle */
  rgba(0, 144, 88, 0) 100%    /* Fully clear at 100% */
), url("img/hero-bg.webp");
  background-size: cover ;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  color:#2B3137;
}


.hero h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  color: #fff;
}

.hero .lead {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  min-height: 25dvh;
  font-family:manrope,Tahoma, Geneva, Verdana, sans-seri ;
  padding-top: 3VH;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: var(--primary-color);
    .img-fluid{
    visibility: hidden !important;
  }

  h4{
    color:white!important;
  }
  p{
    color:white!important;
  }

}

.card-title {
  font-weight: 600;
  color:var(--primary-color);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  margin-top: auto;
  background-color: #ecf5fe;
  border-top: auto ;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;

}

footer a:hover {
  color: #0dcaf0 !important;
}

/* Buttons */
.btn-primary {
  color: #fff;
  background-color:var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color:var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem var(--secondary-color);
}

.btn-outline-primary {
  background-color:var(--primary-color);
  border-color: var(--primary-color);
  border-color:var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color:var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-light {
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
 
.btn-outline-dark{
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color:transparent;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem var(--secondary-color);
  color: #333!important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #212529;
}


/* Forms */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
  font-weight: 600;
  color: #333;
}

/* Sections */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 4REM;
  padding-right: 4REM;
}


.bg-light {
  background-color: #f8f9fa !important;
}


.line {
  border: none;
  background-color: #009058 ;
  height: 0.3dvh;
  width: 10dvh;
  margin-left: 0;
  margin-bottom: 3dvh;
}

/* Badge */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
}

/* List Group */
.list-group-item {
  border: none;
  background-color: white;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
}

/* Responsive 
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding-left: 0;
  }

  h2 {
    margin-bottom: 1.5rem;
  }
}
  */

/* Utilities */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
}

.text-white-50:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

hr.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1DVH);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.3s ease;
}
