/*
 Theme Name:   HighendChild
 Theme URI:    http://printamanaics.com/HighendChild
 Description:  A child theme of Highend
 Author:       Mark Zitzmann
 Author URI:   http://printamaniacs.com
 Template:     HighendWP
 Version:      1.0.0
*/

/* Add custom CSS below this line */

/* Basic styling for footer */
/* Custom Footer Styling */
.custom-footer {
    display: flex;
    justify-content: space-around;
    background-color: #000;
    padding: 40px 20px;
    color: #f0ffff;
    border-top: 1px solid #333;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
    max-width: 300px;
}

.footer-section h3 {
    color: #f0ffff;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.navigation-menu {
    list-style: none;
    padding: 0;
}

.navigation-menu li {
    margin-bottom: 10px;
}

.navigation-menu a {
    color: #f0ffff;
    text-decoration: none;
}

.navigation-menu a:hover {
    text-decoration: underline;
}

/* Newsletter Section Styling */
.newsletter-section {
    text-align: center;
}

.newsletter-container {
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.newsletter-header {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 8px;
    margin-right: 10px;
    flex-grow: 1;
    min-width: 200px;
    max-width: 300px;
    background-color: #333;
    color: #fff;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #0056b3;
}