footer {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 2rem 1rem;
}

.footer-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  min-width: 250px; 
}

.footer-col2{
  
  min-width: 250px; 
}


.footer-logo .logo {
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
}


.footer-links,
.header-links {
  padding: 0;
  margin: 0rem 0;
}

.footer-links li,
.header-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a,
.header-links li a {
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links li a:hover,
.header-links li a:hover {
  color: var(--white);
}

.social-share{
  padding: 0;
  width: 100%;
}

.social-share a{
  border: 2px solid var(--extra-light);
  border-radius: 5px;
  padding: 3px;
  font-size: 18px;
  color: var(--text-dark);
  background-color: var(--extra-light);
}

.social-share a:hover{
  background-color: var(--primary-color);
}

#column form {
  margin-top: 1rem;
}

#column form input {
  width: 50%;
  padding: 0.6rem;
  border: 1px solid var(--white);
  border-radius: 0.3rem;
  margin-bottom: 0.5rem;
  background: transparent;
  color: var(--text-dark);
  font-size: 1rem;
  outline: none;
}


/* .footer-btn {
  width: 140px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right,#77530a,#ffd277,#77530a,#77530a,#ffd277,#77530a);
  background-size: 250%;
  background-position: left;
  color: #ffd277;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 1s;
  overflow: hidden;
}

.footer-btn::before {
  position: absolute;
  content: "SUBSCRIBE";
  color: #ffd277;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  height: 90%;
  border-radius: 8px;
  transition-duration: 1s;
  background-color: rgba(0, 0, 0, 0.842);
  background-size: 200%;
}

.footer-btn:hover {
  background-position: right;
  transition-duration: 1s;
}

.footer-btn:hover::before {
  background-position: right;
  transition-duration: 1s;
}

.footer-btn:active {
  transform: scale(0.95);
}
 */

#column form button {
  padding: 0.5rem 1rem;
  background-color: var(--text-dark);
  color: var(--extra-light);
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
}

#column form button:hover {
  background-color: #333;
} 

.footer-bar{
  color: var(--white);
  padding: 1rem 1rem 2rem;
  font-size: .9rem;
  color: var(--text-dark);
  text-align: center;
  border-top: 1px solid var(--text-light);
  background-color: var(--primary-color);
}

.footer-bar p:last-child{
  margin-top: 1rem;
  border-top: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  display: inline-block;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer-container {
      grid-template-columns: repeat(2, 1fr);
  }

  .footer-col {
      text-align: left;
  }

  .footer-bar{
    padding-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
      grid-template-columns: repeat(3, 1fr);
  }
}


