/* Footer Container */
.footer-container {
    bottom: -100px; /* Start off-screen */
    background-color: #7b3130; /* Solid background color */
    padding: 30px 20px;
    border-top-left-radius: 50px;  /* Rounded top-left corner */
    border-top-right-radius: 50px; /* Rounded top-right corner */
    color: #fafafa; /* Light text color */
    text-align: center;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    transition: transform 2s ease-out; /* Smooth transition */
    transform: translateY(100px); /* Move it down initially */
    opacity: 0; /* Start hidden */
}

.footer-container.show {
    transform: translateY(0); /* Move it up */
    opacity: 1; /* Show it */
}

/* Logo and Address Section */
.footer-logo-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 10px;
    height: 150px; /* Adjust size as needed */
}

.footer-address {
    font-size: 1rem;
    color: #fafafa;
    margin: 0;
}

/* Footer Links */
.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #fafafa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e5af68; /* Highlight color on hover */
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fafafa;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #e5af68; /* Highlight color on hover */
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 20px;
    font-size: 0.9rem;
}

@media  (min-width: 768px) {
    .footer-container {
        margin-left: 30%;
        margin-right: 30%;
    }
}