/* Footer Styles */

.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 50px 30px 25px;
    margin-top: 60px;
    border-radius: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: #c9a77c;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95em;
    display: block;
}

.footer-section a:hover {
    color: #c9a77c;
    transition: color 0.3s ease;
    padding-left: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(201, 167, 124, 0.1);
    border-radius: 50%;
    color: #c9a77c;
    transition: all 0.3s ease;
    padding: 0;
}

.social-links a:hover {
    background: #c9a77c;
    color: #ffffff;
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #c9a77c;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 30px 15px 15px;
        margin-top: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
}
