/* Footer Styling - Standalone CSS for pages not using mainStyle.css */

/* Footer Styling */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 48px 20px 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 32px;
  text-align: center;
}

.footer-section h3 {
  color: #82b2c1;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.footer-section h4 {
  color: #bdc3c7;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #82b2c1;
}

.footer-links a.coming-soon {
  color: #95a5a6;
  cursor: not-allowed;
  position: relative;
}

.footer-links a.coming-soon:hover {
  color: #95a5a6;
}

.footer-links a.coming-soon::after {
  content: " (Coming Soon)";
  font-size: 12px;
  color: #7f8c8d;
}

.footer-section a {
  color: #82b2c1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #a8c8d3;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding: 24px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  color: #95a5a6;
  font-size: 14px;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
  .footer {
    padding: 32px 16px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-section h3 {
    font-size: 20px;
  }
  
  .footer-section h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 24px 12px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .footer-section h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

/* Optional: If you need the sticky footer functionality for pages not using mainStyle.css */
/* Add these styles to the page's main CSS or body element:

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

*/