@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* Footer Styling */
html,
body {
    overflow-x: hidden;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(270deg, #f3daa0, #e2e2e2);
    /* Smooth luxury gradient */
}

/* Logo section */
.pre-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}

/* Footer container with columns */
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding: 10px 0;
}

/* Footer columns */
.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h3 {
    color: #3a2426;
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #3a2426;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    text-decoration: none;
    font-weight: smaller;
    color: #3a2426;
    transition: transform 0.3s ease, font-weight 0.3s ease, color 0.3s ease;
}

.footer-column ul li a:hover {
    font-weight: bold;
    color: #a98d4e;
    transform: scale(1.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    color: #3a2426;
    margin-bottom: 15px;
}

.social-icons a {
    color: #3a2426;
    font-weight: normal;
    transition: transform 0.3s ease, font-weight 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #a98d4e;
    font-weight: bold;
    transform: scale(1.2)
}

.social-icons a {
    font-size: 20px;
    transition: color 0.3s;
}

/* Footer Bottom Section */
.footer-bottom {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    color: #000;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        font-size: 12px;
    }
}