/* Footer General Styling */
footer {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 2rem;
    font-family: Arial, sans-serif;
    border-radius: 20px; /* Rounded corners */
    margin: 20px; /* Spacing around footer */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
    text-align: center;
}

/* Social Media */
.footer-social-media {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #fff; /* White background */
    border-radius: 50%;
    color: #000; /* Black color for icons */
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 20px;
    border: 2px solid #000;
}

.social-icons a:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
    background-color: #000; /* Black background on hover */
    color: #fff; /* White icons on hover */
}

/* Newsletter */
.footer-newsletter input {
    width: calc(100% - 120px);
    padding: 0.6rem;
    border: 1px solid #fff;
    border-radius: 25px;
    background: transparent;
    color: #fff;
    outline: none;
    transition: border 0.3s ease;
}

.footer-newsletter input::placeholder {
    color: #ccc;
}

.footer-newsletter input:focus {
    border-color: white;
}

.footer-newsletter button {
    padding: 0.6rem 1rem;
    border: none;
    background-color: white;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #fff;
    color: #000;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem 0 0;
    padding: 0;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: white;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content */
.privacy-modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    margin:1rem;
   
    overflow-y: auto; /* Makes content scrollable */
    display: flex;
    flex-direction: column;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Privacy Policy Specific Styling */
#privacy-policy-content {
    max-height: calc(100vh - 60px); /* Adjust content height relative to viewport */
    overflow-y: auto; /* Enable scrolling if content is too long */
    padding-right: 10px; /* Optional, to avoid text touching the scrollbar */
}

#privacy-policy-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

#privacy-policy-content h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #fff;
}

#privacy-policy-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-top: 0.5rem;
}
