/**
 * Custom styles for the footer
 * Modern design with sage green accents for Dishes Recipe
 */

/* Footer Styles */
.dr-footer {
    background-color: #000;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

.dr-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dr-footer-top {
    padding: 40px 0 30px;
}

/* Footer Social Icons - Moved to About Section */
.dr-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.dr-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dr-social-icon:hover {
    background-color: #6B9080;
    transform: translateY(-3px);
}

/* Main Footer Grid */
.dr-footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

/* Navigation Section */
.dr-footer-nav-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.dr-footer-nav-column {
    flex: 1;
}

/* Logo and About Section */
.dr-footer-about-section {
    padding-left: 20px;
    border-left: 1px solid rgba(107, 144, 128, 0.2);
}

.dr-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.dr-footer-logo-img {
    max-width: 180px;
    height: auto;
}

.dr-footer-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 400px;
}

.dr-footer-title {
    font-size: 14px;
    margin-bottom: 15px;
    color: #6B9080;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.dr-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dr-footer-menu li {
    margin-bottom: 12px;
}

.dr-footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.dr-footer-menu a:hover {
    color: #6B9080;
    padding-left: 5px;
}

.dr-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.dr-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dr-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dr-footer-about-section {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(107, 144, 128, 0.2);
        padding-top: 40px;
        text-align: center;
    }
    
    .dr-footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .dr-newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dr-social-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .dr-social-text {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .dr-footer-nav-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .dr-footer-menu a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .dr-footer-top {
        padding: 30px 0 20px;
    }
    
    .dr-footer-logo-img {
        max-width: 150px;
    }
}
