/* Johnson Footer Styles - Consolidated from footer.css and travlio-footer.css */

/* Base Footer Styles */
footer {
    font-family: "Poppins", sans-serif;
}

/* Colors */
.bg-dark-blue {
    background-color: #0D121E;
}

.bg-dark-blue-light {
    background-color: #0D121E;
}

.bg-dark-blue-lighter {
    background-color: #2a4372;
}

.bg-orange {
    background-color: #D4AF37;
}

.bg-orange-dark {
    background-color: #c09e2f;
}

.text-orange {
    color: #D4AF37;
}

.footer-bg {
    background-color: #1d1d1d;
}

/* Text Styles */
.footer-text {
    color: #a0aec0; /* gray-400 */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.footer-text p, p.footer-text {
    color: #6c757d;
}

/* Footer Titles */
.footer-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    height: 50px; /* Fixed height for all titles */
    display: flex;
    align-items: flex-start;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #D4AF37;
}

/* Footer Links */
.footer-link-container {
    display: flex;
    align-items: center;
}

.footer-link {
    color: #ffffff;
    display: inline;
}

.footer-link:hover {
    color: #D4AF37 !important;
}

/* Ensure all footer links use the gold hover color */
footer a:hover {
    color: #D4AF37 !important;
}

.footer-links a {
    transition: all 0.3s ease;
    display: block;
}

.footer-links li {
    margin-bottom: 0.5rem; /* Small gap between menu links */
}

.footer-links a:hover {
    padding-left: 5px;
    color: #D4AF37 !important;
}

/* Newsletter Section */
.newsletter-section {
    border-radius: 5px;
}

.newsletter-section input {
    color: #333;
}

.newsletter-section button {
    transition: all 0.3s ease;
}

.newsletter-container {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Newsletter Form Specific Styles */
.newsletter-form {
    width: 100%;
    margin-bottom: 1rem;
}

.newsletter-form .flex {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    height: 40px;
    color: #333;
}

.newsletter-form button {
    display: inline-block;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    height: 40px;
    min-width: 80px;
}

/* Footer Sections */
footer .mb-8.md\:mb-0 {
    padding: 0 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Social Icons */
.social-icons a {
    transition: all 0.3s ease;
    margin-right: 10px;
}

/* App Download Links */
.app-links .app-link {
    transition: all 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-title {
        margin-top: 1rem;
    }
    
    .newsletter-section .container {
        padding: 1rem;
    }
}

/* Last updated: Tuesday, August 5, 2025 2:25:55 PM */
