.footer-container1 {
  display: contents;
}
 
.footer-container2 {
  display: none;
}
 
.footer-container3 {
  display: contents;
}
 
.footer-container4 {
  display: none;
}
 
.footer-container5 {
  display: contents;
}

/* Make footer visible with explicit colors */
.footer-wrapper {
  background-color: #2c1810 !important; /* Dark brown background */
  color: #ffffff !important; /* White text */
  padding: 40px 0 !important;
}

.footer-wrapper * {
  color: #ffffff !important; /* Ensure all text in footer is white */
}

.footer-input {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* New Footer Styles */
.footer {
    background: var(--color-secondary);
    color: var(--color-on-secondary);
    padding: 40px 20px 20px;
    font-family: var(--font-family-body);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--color-on-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: var(--color-on-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-on-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    margin-top: 30px;
    color: var(--color-on-secondary);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Styles for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }
}
