/*
Theme Name: nordesign theme
Author: norbeat17
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Ha látható a WordPress Admin Bar, tolja lejjebb a fejlécet és a body-t */
.admin-bar .site-header {
    top: 32px !important;
}

.admin-bar body {
    padding-top: 102px !important; /* 70px alap + 32px admin bar */
}

/* Reszponzív fix: Mobilon az admin bar magassága megváltozik (46px) */
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px !important;
    }
    .admin-bar body {
        padding-top: 116px !important;
    }
}
body {
    font-family: Montserrat, sans-serif; 
    line-height: 1.6;
    color: #333;
    background-color: #000000;
    margin: 0;
    padding: 0;
    /* PONTOSAN A FEJLÉC MAGASSÁGA: Fenntartja a helyet a fixed sávnak */
    padding-top: 70px !important; 
}

/* ==================== FEJLÉC FIXÁLÁSA ==================== */

.site-header {
    background-color: #E01468 !important; /* Nordesign dögös lila-rózsaszín */
    width: 100% !important;
    height: 70px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
}

.site-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100% !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-navigation {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

/* WordPress ul/li struktúra kényszerített középre igazítása */
.main-navigation div > ul,
.nav-list {
    list-style: none !important;
    display: flex !important;
    align-items: center !important; /* Függőlegesen középre teszi a menüt */
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

.main-navigation div > ul li,
.nav-list li {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.main-navigation div > ul li a,
.nav-list li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    line-height: 1 !important;
}

.logo h1 a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
}

.nav-list li a:hover {
    color: #f1f1f1;
}

/* ==================== HERO SZEKCIÓ FIXÁLÁSA ==================== */

.header-hero-section {
    position: relative !important;
    width: 100% !important;
    
    /* DINAMIKUS MAGASSÁG: Teljes képernyőmágasság mínusz a 70px-es lila fejléc */
    height: calc(100vh - 70px) !important; 
    
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    top: 0 !important;
    overflow: hidden !important;
    display: block !important;
    clear: both !important;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Torzulásmentesen vágja és méretezi a képet */
    object-position: center !important;
    display: block !important;
}

.hero-text-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important; /* Így a hatalmas képernyőn is mértani középen marad */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    color: #ffffff !important;
    background-color: rgba(224, 20, 104, 0.85) !important;
    padding: 40px !important;
    border-radius: 8px !important;
    width: 85% !important;
    max-width: 650px !important;
    z-index: 10 !important;
}

.hero-text-overlay h1 {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-text-overlay p {
    margin: 15px 0 0 0;
    font-size: 1.2rem;
}

/* ==================== TARTALMI RÉSZ ==================== */

.site-main {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px;
    max-width: 100% !important;
}

.custom-post-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    background-color: #111111;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.post-image-side {
    flex: 1;
    max-width: 45%;
}

.post-image-side img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.post-text-side {
    flex: 1.2;
    color: #ffffff;
}

.post-text-side h2 a {
    color: #E01468;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    transition: color 0.2s ease;
}

.post-text-side h2 a:hover {
    color: #ffffff;
}

.post-text-side .entry-content {
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

/* ==================== 3 OSZLOPOS HOVER GRID (FÉLIG RÁLÓGÓS) ==================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px; /* Normális felső padding, semmi rálógás a felső nagy képre */
    position: relative;
    z-index: 30;
}

/* A kártya alap konténere */
.hover-card {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #111111;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* A kártyában lévő kép mindig 100%-os */
.card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.section-title-container {
    width: 100%;
    text-align: center;
    padding-top: 40px;    /* Távolság a felső nagy képtől */
    margin-bottom: 20px;  /* Távolság az alatta lévő 3 kártyától */
}

.section-title {
    color: #E01468 !important; /* A Nordesign fukszia-rózsaszín színe */
    font-size: 2.5rem;         /* Szép, hangsúlyos méret desktopon */
    font-weight: 800;          /* Extra vastag betűtípus */
    text-transform: uppercase; /* Csupa nagybetűs megjelenés */
    letter-spacing: -0.5px;    /* Modern, zárt karakterköz */
    font-family: Montserrat, sans-serif;
    position: relative;
    display: inline-block;
}
/* ==================== AZ ÚJ, FÉLIG FELKÚSZÓ HOVER RÉTEG ==================== */

.card-overlay {
    position: absolute;
    left: 0;
    bottom: 0;               /* Alulra rögzítjük */
    width: 100%;
    height: 50%;             /* CSAK A KÉP FELÉT FOGJA TAKARNI */
    background-color: rgba(224, 20, 104, 0.95); /* Nordesign fukszia */
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    
    /* ANIMÁCIÓ: Teljesen elrejtjük a kártya alja alá, és lekapcsoljuk az opacity-t */
    opacity: 0;
    transform: translateY(100%); 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    z-index: 2;
}

/* Szövegtartalom finomhangolása (mivel kisebb a hely, kompaktabb kell legyen) */
.card-content {
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.card-content h3 {
    font-size: 1.3rem; /* Kicsit kisebb betűméret, hogy kényelmesen elférjen a fél képernyőn */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== INTERAKCIÓ (HOVER) ==================== */

/* Amikor az egeret a kártya fölé viszed: */
.hover-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0); /* A fukszia sáv selymesen felcsúszik pontosan a kép feléig */
}

/* Opcionális: A kép nem zúmol, így nem zavarja a szöveg olvashatóságát */
.hover-card:hover .card-image {
    transform: none; 
}

/* ==================== RESZPONZÍVITÁS MOBILRA ==================== */

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
        margin-top: 0 !important;
    }
    
    .hover-card {
        height: 320px;
    }
    
    .card-overlay {
        height: 60%; /* Mobilon a szövegnek kicsit több helyet hagyunk a biztonság kedvéért */
    }
}

.card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    
    /* ANIMÁCIÓS IDŐZÍTÉS: 0.6 másodperc alatt fut le, finom lassulással */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important; 
}

/* Amikor az egeret a kártya fölé viszed: */
.hover-card:hover .card-image {
    /* 8%-os nagyítás (zoom). Ha ennél erősebbet szeretnél, írj 1.12-őt */
    transform: scale(1.08) !important; 
}

.hover-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0); /* Ez változatlanul csak felcsúszik a helyére */
}

/* Képigazítások & Reszponzivitás */
.aligncenter { display: block; margin: 20px auto; }
.alignright { float: right; margin: 0 0 20px 20px; }
.alignleft { float: left; margin: 0 20px 20px 0; }

@media (max-width: 768px) {
    .custom-post-layout {
        flex-direction: column;
        text-align: center;
    }
    .post-image-side {
        max-width: 100%;
    }
}

.site-main::after,
.custom-post-layout::after {
    content: "";
    display: table;
    clear: both;
}

/* ==================== RÓLAM SZEKCIÓ JAVÍTÁSA ==================== */

.about-section {
    width: 100% !important;
	height: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 60px 20px 40px 20px !important;
    border-bottom: 1px solid rgba(224, 20, 104, 0.2) !important;
    box-sizing: border-box !important;
}

.about-container {
    display: flex !important;
    flex-direction: row !important; /* KÉNYSZERÍTETT EGYMÁS MELLÉ RAKÁS */
    align-items: center !important;
    justify-content: space-between !important;
    gap: 50px !important;
    width: 100% !important;
}

/* Szöveges oldal (szélesebb) */
.about-text-side {
    flex: 1.6 !important;
    text-align: left !important;
}

.about-title {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
}

.about-lead {
    color: #E01468 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.about-paragraph {
    color: #cccccc !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* Kép oldala (kisebb, fix doboz) */
.about-image-side {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* ITT KORLÁTOZZUK A MÉRETÉT KICSIVÉ */
.about-image-wrapper {
    position: relative !important;
    width: 280px !important;  /* Kisebb, kompakt szélesség */
    height: 280px !important; /* Kisebb, kompakt magasság */
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(224, 20, 104, 0.3) !important; /* Kicsi fukszia keret */
}

.about-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Nem engedi torzulni a kicsi négyzetben */
    display: block !important;
}

/* Reszponzivitás mobilon (csak 768px alatt ugorjanak egymás alá) */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .about-text-side {
        text-align: center !important;
    }
    .about-image-wrapper {
        width: 220px !important;
        height: 220px !important;
    }
}

/* ==================== RÓLAM SZEKCIÓ SOCIAL IKONOK ==================== */

.about-social-icons {
    display: flex !important;
    gap: 15px !important;    /* Távolság az ikonok között */
    margin-top: 25px !important; /* Távolság a felette lévő szövegtől */
}

.social-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;  /* A kör szélessége */
    height: 45px !important; /* A kör magassága */
    border-radius: 50% !important; /* Tökéletes kör alak */
    background-color: #111111 !important; /* Sötétszürke alap, ami illik a sötét témához */
    color: #ffffff !important; /* Fehér ikonok */
    font-size: 1.2rem !important; /* Ikonok mérete */
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important; /* Selymes átmenet hoverre */
}

/* HOVER INTERAKCIÓK: Érintésre fukszia színűek lesznek és finoman megemelkednek */
.social-icon:hover {
    background-color: #E01468 !important; /* Nordesign fukszia */
    color: #ffffff !important;
    transform: translateY(-3px) !important; /* 3 pixellel feljebb ugrik */
    box-shadow: 0 10px 15px -3px rgba(224, 14, 104, 0.3) !important; /* Fukszia színű ragyogás/árnyék */
}

/* Reszponzív igazítás: Ha mobilon egymás alá ugrik a struktúra, az ikonok is középre igazodnak */
@media (max-width: 768px) {
    .about-social-icons {
        justify-content: center !important;
    }
}

/* ==================== PORTFÓLIÓ SZEKCIÓ FORMÁZÁSA ==================== */

.projects-section {
    width: 100%;
    padding: 80px 0;
    background-color: #000000;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Távolság az egyes projektsorok között */
    margin-top: 40px;
}

/* Egy projekt sor alapértelmezett elrendezése (Kép balra, szöveg jobbra) */
.project-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background-color: #111111 !important; /* Egy árnyalattal világosabb sötétszürke */
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    width: 100%;
}

/* TRÜKK: Minden második (páros) sornál megcseréljük a kép és szöveg sorrendjét */
.project-row:nth-child(even) {
    flex-direction: row-reverse !important;
}

/* Kép konténere */
.project-image-box {
    flex: 1.2 !important;
    height: 380px !important;
    overflow: hidden !important;
}

.project-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Ha a kurzort a projekt fölé visszük, a kép finoman bezúmol */
.project-row:hover .project-img {
    transform: scale(1.05) !important;
}

/* Szöveges konténer */
.project-text-box {
    flex: 1 !important;
    padding: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

/* Kis kategória felirat a cím felett */
.project-category {
    color: #E01468 !important; /* Nordesign fukszia */
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 10px !important;
}

.project-name {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

.project-desc {
    color: #aaaaaa !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

/* Dögös fukszia gomb a projekthez */
.project-btn {
    display: inline-block !important;
    padding: 12px 28px !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid #E01468 !important; /* Fukszia keret */
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Gomb hover effektus */
.project-btn:hover {
    background-color: #E01468 !important; /* Kitöltődik fuksziával */
    box-shadow: 0 10px 20px -5px rgba(224, 14, 104, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* ==================== PORTFÓLIÓ RESZPONZÍVITÁS ==================== */

@media (max-width: 992px) {
    /* Mobilon és tableten mindenképp egymás alá rakjuk őket, és a kép legyen felül */
    .project-row, 
    .project-row:nth-child(even) {
        flex-direction: column !important;
    }
    
    .project-image-box {
        width: 100% !important;
        height: 250px !important;
    }
    
    .project-text-box {
        padding: 30px !important;
    }
    
    .project-name {
        font-size: 1.5rem !important;
    }
}
/* ==================== KAPCSOLAT SZEKCIÓ FORMÁZÁSA ==================== */

.contact-section {
    width: 100%;
    padding: 80px 0 100px 0;
    background-color: #000000;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important; /* Aszimmetrikus elrendezés, az űrlap kicsit szélesebb */
    gap: 60px !important;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

/* Elérhetőségek oldala */
.contact-info-box {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.contact-subtitle {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}

.contact-text {
    color: #aaaaaa !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
}

.info-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.info-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    color: #cccccc !important;
    font-size: 1.05rem !important;
}

/* Fukszia ikonok az elérhetőségeknél */
.info-item i {
    color: #E01468 !important; /* Nordesign fukszia */
    font-size: 1.2rem !important;
    width: 25px !important;
    text-align: center !important;
}

.info-item a {
    color: #cccccc !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.info-item a:hover {
    color: #E01468 !important;
}

/* Űrlap oldala */
.contact-form-box {
    background-color: #111111 !important; /* Sötétszürke kártya háttér */
    padding: 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.custom-contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.form-group label {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Input és Textarea mezők sötétítése és formázása */
.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    background-color: #1a1a1a !important; /* Még sötétebb belső rész */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-family: Montserrat, sans-serif !important;
    font-size: 1rem !important;
    outline: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* FÓKUSZ EFFEKT: Ha a látogató belekattint a mezőbe, fukszia színben felizzik a keret */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #E01468 !important;
    box-shadow: 0 0 10px rgba(224, 20, 104, 0.2) !important;
}

/* Placeholder (halványított szöveg) igazítása */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555555 !important;
}

/* Küldés gomb */
.contact-submit-btn {
    width: 100% !important;
    padding: 15px !important;
    background-color: #E01468 !important; /* Teljes fukszia kitöltés */
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    margin-top: 10px !important;
}

.contact-submit-btn:hover {
    background-color: #ff2580 !important; /* Kicsit világosabb fukszia hoverre */
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px -5px rgba(224, 14, 104, 0.5) !important;
}

/* ==================== KAPCSOLAT RESZPONZÍVITÁS ==================== */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important; /* Mobilon egymás alá ugranak */
        gap: 40px !important;
    }
    
    .contact-form-box {
        padding: 30px !important;
    }
}

.form-alert {
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-align: center !important;
}
.success-alert {
    background-color: rgba(46, 204, 113, 0.15) !important;
    color: #2ecc71 !important;
    border: 1px solid #2ecc71 !important;
}
.error-alert {
    background-color: rgba(231, 76, 60, 0.15) !important;
    color: #e74c3c !important;
    border: 1px solid #e74c3c !important;
}

/* ==================== LÁBLÉC FORMÁZÁSA ==================== */

.site-footer {
    width: 100% !important;
    background-color: #0d0d0d !important; /* Egy leheletnyivel világosabb, mint a tiszta fekete */
    padding: 30px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03) !important; /* Nagyon vékony felső elválasztó él */
    position: relative;
    z-index: 99;
}

.footer-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright p {
    color: #666666 !important; /* Diszkrét szürke szöveg */
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.fuchsia-text {
    color: #E01468 !important; /* Nordesign fukszia kiemelés */
    font-weight: 600;
}

/* Vissza a tetejére gomb formázása */
#scroll-to-top {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #1a1a1a !important;
    color: #aaaaaa !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

#scroll-to-top i {
    font-size: 0.9rem !important;
}

/* Gomb hover effektus */
#scroll-to-top:hover {
    background-color: #E01468 !important; /* Fukszia felvillanás */
    color: #ffffff !important;
    transform: translateY(-3px) !important; /* Kicsit megemelkedik */
    box-shadow: 0 10px 15px -3px rgba(224, 14, 104, 0.3) !important;
}

/* Reszponzív nézet mobilon középre igazítva */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column !important;
        gap: 20px;
        text-align: center;
    }
}