/* Footer Styling */

.site-footer {
  background-color: #033333;
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #008080, #00a0a0);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo .tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.link-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
}

.link-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.link-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #008080;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column li {
  margin-bottom: 10px;
}

.link-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.link-column a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background-color: #008080;
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.link-column a:hover {
  color: #fff;
  padding-left: 20px;
}

.link-column a:hover::before {
  opacity: 1;
  background-color: #00a0a0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-logo {
    min-width: 100%;
    text-align: center;
  }
  
  .footer-links {
    justify-content: space-around;
  }
  
  .link-column h3::after {
    left: 50%;
    margin-left: -15px;
  }
  
  .link-column {
    text-align: center;
  }
  
  .link-column a {
    padding-left: 0;
  }
  
  .link-column a::before {
    display: none;
  }
  
  .link-column a:hover {
    padding-left: 0;
  }
}