/* Footer */
footer {
    background-color: #d8c5b1;
    color: white;
    padding: 10px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Top Section (Social Media + Download App) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    padding: 20px;
}

/* Social Media Section */
.social-media {
    display: flex;
    align-items: center;
    gap: 20px; /* Adds spacing between elements */
}

/* Stay Connected Section */
.social-media p {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

/* Social links styling */
.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links a:hover {
    color: #ddd;
    background-color: black;
}

/* Divider between social icons */
.divider {
    height: 24px;
    width: 1px;
    background-color: #333;
    margin: 0 10px;
    display: inline-block;
}

/* Specific hover styling for X logo */
.x-logo:hover {
    filter: invert(100%);
}

/* Download App Section */
.download-app {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-app p {
    font-size: 18px;
    font-weight: bold;
    color: black;
    margin: 0;
}

/* App Links Styling */
.app-links {
    display: flex;
    align-items: center;
}

.app-links a {
    color: black;
    font-size: 24px;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.app-links a img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.app-links a:hover {
    background-color: black;
    color: white;
}

.app-links a:hover img {
    filter: invert(100%);
}

/* Footer Content Section */
.footer-content {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.contact-info,
.store-info {
    width: 48%;
}

.contact-info p,
.store-info p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-info i,
.store-info i {
    margin-right: 10px;
    color: rgb(0, 0, 0);
}

footer h3 {
    color: black;
    text-decoration: underline;
    text-align: center;
}

footer p {
    margin: 10px 0;
    font-size: 14px;
    color: black;
    text-align: center;
}

.contact-info a {
    color: black;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.highlight-red {
    color: #c1442e; /* Elegant deep red */
    font-weight: bold;
    white-space: nowrap; /* Prevents breaking into a new line */
    display: inline; /* Ensures it flows with the text */
}

.address-link {
    display: inline-block;
    line-height: 1.5; /* Adjust to match your site's typography */
    text-decoration: none;
    color: inherit; /* Or any specific color */
}

.address-link span {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column; /* Stack elements on smaller screens */
        align-items: center;
        text-align: center;
    }

    .social-media,
    .download-app {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info,
    .store-info {
        width: 100%;
        margin-bottom: 10px;
    }
}
