/* ========================================
   KRISETTE & CO FOOTER STYLES
   Clean, Minimal Footer Design
   ======================================== */

/* Hide the default GeneratePress footer content but keep structure */
.site-footer {
    display: none !important;
}

/* ========================================
   MAIN FOOTER CONTAINER
   ======================================== */
.hm-style-footer {
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 60px 0 30px;
    margin-top: 40px;
    font-family: 'Poppins', sans-serif;
    display: block !important;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 100px 1fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* ========================================
   LOGO COLUMN
   ======================================== */
.footer-logo-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-logo {
    max-width: 80px;  /* Reduced from 120px */
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* ========================================
   MENU COLUMNS
   ======================================== */
.footer-menu-column h4 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.footer-menu-list li {
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-menu-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-menu-list a:hover {
    color: #333;
}

/* ========================================
   NEWSLETTER COLUMN
   ======================================== */
.footer-newsletter-column h4 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.newsletter-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form,
#mailpoet-newsletter-form {
    display: flex;
    flex-direction: column;  /* Stack vertically on all screen sizes */
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-email {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.newsletter-email:focus {
    outline: none;
    border-color: #999;
}

.newsletter-subscribe {
    background: #333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    width: 100%;  /* Make button full width to match input */
}

.newsletter-subscribe:hover {
    background: #555;
}

.newsletter-message {
    font-size: 12px;
    margin-top: 10px;
}

.newsletter-note {
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-top: 10px;
}

/* ========================================
   COPYRIGHT SECTION
   ======================================== */
.footer-copyright {
    border-top: 1px solid #e5e5e5;
    padding: 30px 0;
    text-align: center;
    max-width: 1200px;
    margin: 40px auto 0;
}

.footer-copyright p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet View */
@media (max-width: 1024px) {
    .footer-main-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo-column {I 
        grid-column: 1 / -1;
        justify-content: flex-start;
        max-width: 20%;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        max-width: 50px;  /* Much smaller on tablet */
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .hm-style-footer {
        padding: 40px 0 20px;
    }
    
    .footer-main-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-newsletter-column {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .footer-logo-column {
        max-width: 30%;
        padding-left: 0px !important;
    }
    
    .footer-logo {
        max-width: 40px;  /* Much smaller on mobile */
    }
    
    /* Newsletter form already stacks vertically on all screen sizes */
}

/* Small Mobile View */
@media (max-width: 480px) {
    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-logo-column {
        justify-content: center;
        text-align: left;
        max-width: 30%;
    }
    
    .footer-logo {
        max-width: 60px;  /* Consistent small size on very small screens */
    }
}