/*
 * Luxury footer styles for Pathaan.co.uk
 *
 * This stylesheet provides a premium look and feel inspired by high‑end fashion brands.
 * It defines the layout, typography, colours, hover effects and responsive
 * adjustments for the Pathaan Luxury Footer plugin.
 */

/* Container and background */
.plf-container {
    background: #070707;
    color: #f0f0f0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin-top: 60px;
}

/* Widget wrapper */
.plf-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(202, 162, 74, 0.18);
}

/* Column styles */
.plf-col {
    flex: 1 1 220px;
    min-width: 200px;
}

/* Logo */
.plf-logo {
    margin-bottom: 15px;
}
.plf-logo img {
    max-width: 150px;
}
.plf-logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 15px;
    color: #caa24a;
}

/* Brand messaging */
.plf-tagline {
    margin: 0 0 10px;
    font-size: 13px;
    color: #d6d6d6;
}
.plf-meta {
    margin: 0 0 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.68);
}

/* Titles */
.plf-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f2f2f2;
    margin: 0 0 18px;
}

/* Links list */
.plf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plf-links li {
    margin: 0 0 12px;
}
.plf-links a {
    color: #caa24a;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}
.plf-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, #caa24a, #f6e6a6, #caa24a);
    transition: width 0.25s ease;
}
.plf-links a:hover::after {
    width: 100%;
}

/* Small text */
.plf-small {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 10px;
}

/* Newsletter form */
.plf-newsletter {
    display: flex;
    gap: 10px;
    margin: 14px 0 18px;
}
.plf-newsletter input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(202,162,74,0.25);
    border-radius: 14px;
    padding: 12px 14px;
    color: #fff;
    outline: none;
    font-size: 13px;
}
.plf-newsletter input::placeholder {
    color: rgba(255,255,255,0.55);
}
.plf-newsletter button {
    background: linear-gradient(90deg, #caa24a, #f6e6a6, #caa24a);
    border: none;
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
}
.plf-newsletter button:hover {
    background: linear-gradient(90deg, #f6e6a6, #caa24a, #f6e6a6);
}

/* Social icons */
.plf-social {
    display: flex;
    gap: 10px;
    margin: 10px 0 14px;
}
.plf-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(202,162,74,0.18);
    background: rgba(255,255,255,0.06);
    color: #f2f2f2;
    font-size: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.plf-social-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(246,230,166,0.55);
}

/* Payment icons */
.plf-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
}
.plf-payments i {
    border: 1px solid rgba(202,162,74,0.18);
    border-radius: 6px;
    padding: 6px 8px;
    background: rgba(255,255,255,0.05);
}

/* Footer bar */
.plf-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    background: #050505;
    border-top: 1px solid rgba(202,162,74,0.14);
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}
.plf-bar a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
    letter-spacing: 1px;
}
.plf-bar a:hover {
    color: #caa24a;
}
.plf-bar span {
    margin: 0 3px;
    color: rgba(255,255,255,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plf-widgets {
        padding: 40px 20px;
    }
    .plf-newsletter {
        flex-direction: column;
    }
    .plf-newsletter button {
        width: 100%;
    }
    .plf-social {
        justify-content: center;
    }
    .plf-payments {
        justify-content: center;
    }
    .plf-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}