/* Main footer container */
.site-footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px 20px 20px;
  margin-top: 60px;
  width: 100%;
  box-sizing: border-box; /* Add this line to include padding in the width calculation */
  color: white;
  font-family: "Livvic ExtraLight", "Times New Roman", Georgia, Serif;
}

/* Footer content layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 30px;
}

/* Logo in footer */
.footer-logo {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
}

.footer-logo-image {
  max-width: 150px;
  height: auto;
}

/* Navigation sections */
.footer-nav-section {
  flex: 1;
  min-width: 170px;
  margin-bottom: 20px;
}

.footer-nav-section h3 {
  color: pink;
  font-family: "Livvic Medium", "Times New Roman", Georgia, Serif;
  font-size: 1.1rem;
  margin: 0 0 15px;
  font-weight: normal;
}

.footer-nav-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-nav-section ul li {
  margin-bottom: 8px;
}

.footer-nav-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav-section ul li a:hover {
  color: pink;
  text-decoration: none;
}

/* Style for disabled (grayed out) footer links */
.footer-disabled {
  color: #666;
  cursor: default;
}

/* Copyright section */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-nav-section {
    margin-bottom: 25px;
    text-align: center;
  }
}
