/* --- High-End Studio Footer --- */
#footer-section {
    background: #ffffff; /* Pure white background for a clean look */
    color: #1a1a1a;
    padding: 100px 20px 40px; /* Increased padding for better breathing room */
    text-align: center;
    font-family: 'Montserrat', sans-serif; /* Switching to a more modern font */
    border-top: 1px solid #f0f0f0; /* Subtle border instead of thick gold */
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
    color: #c5a059; /* Using the refined gold from your theme */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #888; /* Softer grey for a more expensive feel */
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* --- Social Links Styling --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.social-icon {
    font-size: 1.2rem;
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #eee; /* Light outline look */
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

/* Hover Effects - Inverting colors for style */
.social-icon:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
    color: #c5a059;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

/* --- Contact Info Grid --- */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    border-top: 1px solid #f0f0f0;
    padding-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #c5a059; /* Theme gold for icons */
    font-size: 1rem;
}

.contact-item:hover {
    color: #c5a059;
}

/* --- Bottom Bar --- */
.footer-bottom {
    font-size: 0.7rem;
    color: #bbb;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f9f9f9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 45px;
    height: 45px;
    background-color: #1a1a1a; /* Darker for better contrast */
    color: #ffffff;
    border: none;
    border-radius: 0; /* Square/Rectangular look is more "fashion" */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #c5a059;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .footer-tagline {
        font-size: 1.8rem;
    }
}