/* ==========================================================================
   Footer Styles
   ========================================================================== */

.full-footer {
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ddd;
    padding: 60px 0 0;
    position: relative;
}

/* Overlay nhẹ để chữ dễ đọc hơn trên nền gear */
.full-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); /* độ tối tùy chỉnh */
    z-index: 1;
}

.inner-footer {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-title {
    color: #fff;
    font-size: 18;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #c39c5e; /* màu vàng đồng sang trọng */
}

/* Links chung */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 18px;
    margin: 20px 0 35px;
}

.social-links a {
    color: #bbb;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #c39c5e;
    transform: translateY(-3px);
}

/* Newsletter form */
.newsletter-form {
    display: flex;
    width: 100%;
	box-sizing: border-box;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
    background: #222;
    color: #eee;
	width: 80%;
}

.newsletter-form input[type="email"]::placeholder {
    color: #888;
}

.newsletter-form button {
	width: 20%;
	text-align: center;
    background: #c39c5e;
    color: #111;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #d4ad6e;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #999;
}

.copyright,
.designed-by {
    margin: 10px 0;
}

.dmca img {
    height: 40px;
    margin-left: 15px;
}

.designed-by a {
    color: #c39c5e;
    text-decoration: none;
}

.designed-by a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-content {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .dmca {
        margin: 15px 0;
    }
}