/* Dark Footer Styles */

/* Main Footer Styles */
.dark-footer {
    background-color: #111;
    color: #fff;
    padding: 50px 0 0 0;
    margin-top: 50px;
    border-top: 1px solid #333;
}

.dark-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dark-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dark-footer .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    margin-right: 20px;
}

.dark-footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.dark-footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.dark-footer p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dark-footer ul {
    list-style: none;
    padding: 0;
}

.dark-footer li {
    margin-bottom: 10px;
}

.dark-footer a {
    color: #ddd;
    text-decoration: none;
}

.dark-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.dark-footer input[type="email"] {
    flex: 1;
    padding: 10px;
    border: none;
    background: #222;
    color: #fff;
}

.dark-footer button[type="submit"] {
    background: #764ba2;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.dark-footer form {
    display: flex;
    margin-bottom: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #ddd;
    font-size: 20px;
    margin-right: 15px;
}

.social-links a:last-child {
    margin-right: 0;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.copyright-bar p {
    color: #aaa;
    margin: 0;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
}

/* Language Selector */
.copyright-bar select {
    background: #222;
    color: #ddd;
    border: none;
    padding: 3px;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dark-footer .footer-section {
        flex: 100%;
        margin-right: 0;
    }
    
    .dark-footer form {
        flex-direction: column;
    }
    
    .dark-footer button[type="submit"] {
        margin-top: 10px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
