/* Footer Styles */

.site-footer {
    background-color: var(--dark-charcoal);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    padding: 0 1rem;
}

.footer-column h4 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-accent);
    padding-left: 0.5rem;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: var(--gold-accent);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    color: var(--gold-accent);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--gold-accent);
    color: var(--dark-charcoal);
    transform: translateY(-3px);
}

/* Footer Newsletter */
.footer-newsletter {
    background-color: rgba(212, 165, 116, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.footer-newsletter h4 {
    margin-top: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-white);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--gold-accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--gold-hover);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-bottom-links a {
    color: var(--gold-accent);
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-column {
        padding: 0 0.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
