/* Premium Footer Styling */
:root {
    --footer-bg: #ffffff;
    --footer-text: #5e5e5e;
    --footer-heading: #2d2d2d;
    --footer-accent: #c4a484;
    /* Soft earthy accent */
    --pencil-grey: rgba(0, 0, 0, 0.08);
}

.premium-footer {
    background-color: var(--footer-bg);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    border-top: none;
}

.premium-footer h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
}

/* The Artistic Sketch Background */
.footer-sketch-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-sketch-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/footerwithremovebg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.22;
    mix-blend-mode: multiply;
}

/* Subtle Paper Texture */
.footer-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-column-heading {
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    height: 150px;
    width: auto;
}

.premium-footer h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--footer-heading);
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

/* Removed decorative line under headings */

.premium-footer a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--footer-text);
    text-decoration: none;
    display: inline-block;
}

.premium-footer a:hover {
    color: var(--footer-heading);
    transform: translateY(-2px);
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--footer-heading);
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem !important;
    /* Spacing below the top border */
    padding-bottom: 1.5rem !important;
    /* Moves both lines slightly upward off the bottom edge */
    /* border-top: 1px solid rgba(0, 0, 0, 0.08) !important; */
    /* Ensure the subtle horizontal line is present */
}

.copyright-text {
    text-align: left;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .copyright-text {
        align-self: flex-start !important;
        /* Left-align on mobile viewports */
    }
}

.footer-bottom-links {
    display: flex !important;
    gap: 3rem !important;
    /* Elegant spacing to fix the squished PRIVACYTERMS layout */
}

/* Subtle corner decorations */
.corner-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 1;
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-right: 0;
    border-bottom: 0;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-left: 0;
    border-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-footer {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .footer-column-heading {
        height: auto;
        margin-bottom: 1rem;
    }

    .mb-20 {
        margin-bottom: 3rem;
    }
}