/* Reset some default styles for a cleaner look */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: none;
    color: #ffffff54;
}

/* Main footer styles */
footer {
    background: linear-gradient(293deg, black, #111111);
    color: #fff; /* White text color for readability */
    padding: 20px 0;
    font-family: Helvetica, sans-serif;
}

.footer-container {
    max-width: 1200px; /* Control the max width of the content */
    margin: 0 auto; /* Center the content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 15px;
}

#footer .logo-section,
.links-section,
.social-section,
.newsletter-section {
    flex: 1; /* Equal width columns */
    margin: 10px; /* Spacing between columns */
    max-width: 100%;

}

#footer .logo-section img {
    max-width: 100px; /* Control logo size */
    margin-bottom: 10px; /* Spacing between logo and copyright text */
}

#footer .links-section ul li {
    margin-bottom: 8px; /* Spacing between links */
}

#footer .social-section a {
    margin-right: 10px; /* Spacing between icons */
}

#footer .social-section img {
    width: 24px; /* Social icons size */
    transition: opacity 0.3s; /* Smooth transition effect */
}

#footer .social-section img:hover {
    opacity: 0.7; /* Opacity change on hover for icons */
}

#footer .newsletter-section h3 {
    margin-top: 0; /* Remove default margin */
}

#footer .newsletter-section form {
    display: flex; /* Align form elements in a row */
    margin-top: 10px; /* Space between text and form */
}

#footer .newsletter-section input[type="email"] {
    padding: 10px;
    border: none;
    flex: 1; /* Take up most of the space */
    margin-right: 10px; /* Spacing between input and button */
    margin-top: 0px; /* Spacing between input and button */
}

#footer .newsletter-section button {
    background-color: #ff4500; /* Color for the button */
    border: none;
    color: #fff; /* Text color for the button */
    padding: 10px 15px;
    cursor: pointer; /* Hand cursor for button */
    transition: background-color 0.3s; /* Smooth transition effect */
    border-radius: 10px;
}

#footer .newsletter-section button:hover {
    background-color: #a93824; /* Slightly different color on hover */
}

#footer-form {
    background: #2e2e2e;
    border-radius: 10px;
    overflow: hidden;
}

input {
    background: #2e2e2e;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
