/* footer.css - Egyszerűsített és fixált, zöld/szürke témában */

/* ================== ALAP STRUKTÚRA ================== */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body.footer-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Fő tartalom - kitölti a rendelkezésre álló helyet */
#main-content-container {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

/* ================== FOOTER STÍLUSOK ================== */
#main-footer {
    background-color: #1a1b1a;          /* Sötétzöldes fekete */
    color: #F5F5F5;                     /* Világosszürke */
    padding: 40px 0 20px;
    width: 100%;
    box-sizing: border-box;
    border-top: 3px solid #2F4F4F;      /* Sötétzöldes szürke */
    margin-top: auto;
}

/* Footer container */
#footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Footer szekciók */
#footer-contact,
#footer-links,
#footer-social {
    flex: 1;
    min-width: 250px;
}

#footer-contact h3,
#footer-links h3,
#footer-social h3 {
    color: #6B8E23;                     /* Középzöld */
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #6B8E23;   /* Középzöld */
    padding-bottom: 10px;
    font-weight: 600;
}

/* Elérhetőségek */
#footer-contact p {
    margin: 12px 0;
    color: #E8E4DD;                     /* Világos szürkés bézs (megtartható) */
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}

#footer-contact i {
    color: #6B8E23;                     /* Középzöld */
    font-size: 1.2rem;
    min-width: 25px;
}

/* Gyors linkek */
#footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-links-list li {
    margin-bottom: 12px;
}

#footer-links-list a {
    color: #E8E4DD;                     /* Világos szürkés bézs */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

#footer-links-list a:hover {
    color: #8FBC8F;                     /* Világoszöld */
    transform: translateX(5px);
}

#footer-links-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #8FBC8F;          /* Világoszöld */
    transition: width 0.3s ease;
}

#footer-links-list a:hover::after {
    width: 100%;
}

/* Social media ikonok */
#social-icons-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

#social-icons-wrapper a {
    color: #6B8E23;                     /* Középzöld */
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(107, 142, 35, 0.1);   /* Középzöld átlátszó */
    border: 2px solid rgba(107, 142, 35, 0.3);   /* Középzöld átlátszó */
}

#social-icons-wrapper a:hover {
    color: #1F2A1F;                     /* Sötétzöldes fekete */
    background-color: #8FBC8F;          /* Világoszöld */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.3);
}

/* Footer alsó rész */
#footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(107, 142, 35, 0.3);   /* Középzöld átlátszó */
    text-align: center;
    color: #C9C5BE;
    font-size: 0.9rem;
}

#footer-bottom p {
    margin: 10px 0;
}

#footer-bottom a {
    color: #6B8E23;                     /* Középzöld */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

#footer-bottom a:hover {
    color: #8FBC8F;                     /* Világoszöld */
    text-decoration: underline;
}

/* ================== RESZPONZIV DESIGN ================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
    #footer-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    #footer-contact,
    #footer-links,
    #footer-social {
        min-width: 200px;
    }
}

/* Mobil és tablet (max-width: 768px) */
@media (max-width: 768px) {
    #main-footer {
        padding: 30px 0 15px;
    }
    
    #footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    #footer-contact,
    #footer-links,
    #footer-social {
        min-width: 100%;
        text-align: center;
    }
    
    #footer-contact p {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* 316px - 768px között gyors linkek horizontálisan */
    @media (min-width: 316px) {
        #footer-links-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        #footer-links-list li {
            margin: 0;
        }
        
        #footer-links-list a {
            padding: 8px 15px;
            background: rgba(107, 142, 35, 0.1);    /* Középzöld átlátszó */
            border-radius: 25px;
            border: 1px solid rgba(107, 142, 35, 0.3); /* Középzöld átlátszó */
        }
        
        #footer-links-list a:hover {
            transform: translateY(-3px);
            background: rgba(107, 142, 35, 0.2);
        }
        
        #footer-links-list a::after {
            display: none;
        }
    }
    
    #social-icons-wrapper {
        justify-content: center;
    }
    
    #footer-bottom {
        margin-top: 30px;
        padding: 20px 15px 0;
    }
}

/* Kis mobil (max-width: 480px) */
@media (max-width: 480px) {
    #main-footer {
        padding: 25px 0 10px;
    }
    
    #footer-container {
        padding: 0 10px;
        gap: 25px;
    }
    
    #footer-contact h3,
    #footer-links h3,
    #footer-social h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    #footer-contact p {
        font-size: 0.95rem;
        margin: 10px 0;
    }
    
    @media (min-width: 316px) and (max-width: 480px) {
        #footer-links-list {
            gap: 8px;
        }
        
        #footer-links-list a {
            padding: 6px 12px;
            font-size: 0.9rem;
        }
    }
    
    #social-icons-wrapper a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    #footer-bottom {
        font-size: 0.85rem;
        margin-top: 25px;
    }
}

/* Extra kis kijelző (max-width: 315px) */
@media (max-width: 315px) {
    #footer-links-list {
        display: block !important;
    }
    
    #footer-links-list li {
        margin-bottom: 10px;
    }
    
    #footer-links-list a {
        display: block;
        padding: 10px;
        background: rgba(107, 142, 35, 0.1);    /* Középzöld átlátszó */
        border-radius: 8px;
        text-align: center;
    }
    
    #footer-links-list a:hover {
        transform: none;
    }
}

/* ================== NYOMTATÁSI STÍLUSOK ================== */
@media print {
    #main-footer {
        display: none;
    }
}