/*
 * Kontakt oldal kártyák helykitöltés - hasonlóan az angol oldalhoz
 * Az újraírt CSS az angol oldal kártyáihoz hasonló elrendezést biztosít
 */

/* Kártyák elrendezése - Ütökö más CSS-ekkel */
.contact-page .contact-cards-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 30px !important;
    width: 100% !important;
    margin-bottom: 30px !important;
}

/* Az első két kártya (Címünk és Telefon) */
.contact-page .contact-card:nth-child(1),
.contact-page .contact-card:nth-child(2) {
    flex: 1 1 45% !important;
    width: 45% !important;
    max-width: 45% !important;
    min-width: 320px !important;
}

/* A harmadik kártya (Nyitvatartás) elrejtése - nem töröljük, csak nem jelenik meg */
.contact-page .contact-card:nth-child(3) {
    display: none !important;
}

/* Kártyák stilusának beállítása */
.contact-page .contact-card {
    background-color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.contact-page .card-body {
    padding: 25px !important;
    text-align: center !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Ikon stílusok - Font Awesome ikonok */
.contact-page .info-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    background-color: var(--primary-color, #4CAF50) !important;
    border-radius: 50% !important;
    margin-bottom: 15px !important;
}

.contact-page .info-icon i {
    font-size: 2rem !important;
    color: white !important;
}

.contact-page .card-title {
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.contact-page .card-text {
    color: #666 !important;
    line-height: 1.6 !important;
}

/* Mobilnézet beállítások */
@media (max-width: 767px) {
    .contact-page .contact-card:nth-child(1),
    .contact-page .contact-card:nth-child(2) {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Kártyák hover effektus */
.contact-page .contact-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}
