/*
 Theme Name:   Axios Child
 Theme URI:    https://demo.rstheme.com/wordpress/axios/
 Description:  Axios Child
 Author:       RSTheme
 Author URI:   http://rstheme.com
 Template:     axios
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */
.type-post p
{
    color: #ffffff;
}

.type-post p
{
    color: #ffffff;
}
.type-post li
{
    color: #ffffff;
}

.single-content-full h2
{
    font-size: 36px !important;
    font-weight: 600 !important;
}
.single-content-full h3
{

    font-size: 24px !important;
    font-weight: 700 !important;
}
.single-content-full h4
{
    font-size: 20px !important;
    font-weight: 700 !important;
}

.footer-3 span
{
    color: #ffffff !important;
}

.footer-3 p
{
    color: #ffffff !important;
}

.footer-3 a
{
    color: #ffffff !important;
}

.rs-contact-box .address-text
{
    margin-top: 15px !important;
}

#content
{
    background-color: #000000 !important;
}

.container
{
    background-color: #000000 !important;
}

.elementor-widget-hfe-search-button
{
    margin-bottom: -40px !important;
}

.title-inner .title {
    font-family: var(--e-global-typography-b1b74b3-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-b1b74b3-font-size) !important;
    font-weight: var(--e-global-typography-b1b74b3-font-weight) !important;
    line-height: var(--e-global-typography-b1b74b3-line-height) !important;
    letter-spacing: var(--e-global-typography-b1b74b3-letter-spacing) !important;
    color: #FFFFFF;
    margin: 0px 0px 0px 0px !important;
}

/* ===========================================
     DESIGN TOKENS / CSS VARIABLES
     =========================================== */
:root {
    /* Colors */
    --color-background: #08111D;
    --color-surface: #0D1724;
    --color-foreground: #F4F6FB;
    --color-text-soft: rgba(244, 246, 251, 0.78);
    --color-text-muted: rgba(244, 246, 251, 0.62);
    --color-accent: #C78BFF;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-subtle: rgba(255, 255, 255, 0.06);

    /* Typography */
    --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* Layout */
    --max-width: 1200px;
    --border-radius: 8px;
}

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================================
   FOOTER STRUCTURE
   =========================================== */
.footer {
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
}

.footer__main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-12) var(--space-6);
}

@media (min-width: 768px) {
    .footer__main {
        padding: var(--space-16) var(--space-6);
    }
}

@media (min-width: 1024px) {
    .footer__main {
        padding: var(--space-20) var(--space-6);
    }
}

/* ===========================================
   DESKTOP GRID (4 columns)
   =========================================== */
.footer__grid {
    display: none;
}

@media (min-width: 1024px) {
    .footer__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-8);
    }
}

/* ===========================================
   COLUMN HEADINGS
   =========================================== */
.footer__heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-foreground);
    margin-bottom: var(--space-6);
}

/* ===========================================
   BRAND COLUMN
   =========================================== */
.footer__brand {
    /* Brand column */
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-6);
}

.footer__logo img {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-soft);
    max-width: 280px;
}

/* ===========================================
   NAVIGATION LINKS
   =========================================== */
.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__nav a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-soft);
}

.footer__nav a:hover {
    color: var(--color-foreground);
}

.footer__nav--menu {
    margin-bottom: var(--space-8);
}

/* ===========================================
   INTERNATIONAL PRESENCE
   =========================================== */
.footer__offices {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__office-location {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: var(--space-1);
}

.footer__office-address {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.address-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: var(--space-1);
}

.address-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

/* ===========================================
   CONTACT COLUMN
   =========================================== */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__contact-item {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.footer__contact-item a:hover {
    color: var(--color-foreground);
}

.footer__contact-messaging {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__contact-lang {
    color: var(--color-text-muted);
}

/* ===========================================
   MOBILE LAYOUT
   =========================================== */
.footer__mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

@media (min-width: 1024px) {
    .footer__mobile {
        display: none;
    }
}

.footer__mobile .footer__heading {
    font-size: 16px;
    margin-bottom: var(--space-4);
}

.footer__mobile .footer__logo img {
    height: 28px;
}

.footer__mobile .footer__logo {
    margin-bottom: var(--space-4);
}

.footer__mobile .footer__tagline {
    max-width: 320px;
}

.footer__mobile-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__mobile-messaging {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

/* International - Mobile simplified */
.footer__mobile-intl-label {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.footer__mobile-intl-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer__mobile-intl-item {
    font-size: 14px;
    color: var(--color-text-soft);
}

.footer__mobile-intl-separator {
    color: var(--color-text-muted);
}

@media (max-width: 639px) {
    .footer__mobile-intl-separator {
        display: none;
    }
}

/* Legal - Mobile compact */
.footer__mobile-legal {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 12px;
}

.footer__mobile-legal a {
    color: var(--color-text-muted);
}

.footer__mobile-legal a:hover {
    color: var(--color-text-soft);
}

.footer__mobile-legal-separator {
    color: rgba(244, 246, 251, 0.31);
}

/* ===========================================
   BOTTOM BAR
   =========================================== */
.footer__bottom {
    border-top: 1px solid var(--color-border-subtle);
}

.footer__bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-5) var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__copyright {
    font-size: 12px;
    color: var(--color-text-muted);
}


.hfe-copyright-wrapper .normal
{
    font-size: 12px !important;
    color: var(--color-text-muted) !important;
}

.hfe-copyright-wrapper .normal a
{
    font-size: 12px !important;
    color: var(--color-text-muted) !important;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.footer__social-link {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link:hover {
    color: var(--color-foreground);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
}

.footer-width-fixer .elementor-widget-nav-menu ul li a
{
    padding-left: 0px !important;
}

.footer-width-fixer .elementor-widget-nav-menu ul li
{

}

footer .menu-item a
{}

footer .menu-item a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-soft);
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

footer .menu-item a:hover {
    color: var(--color-foreground);
}

.footer__nav--menu {
    margin-bottom: var(--space-8);
}

footer .menu-item-type-wpml_ls_menu_item
{
    display: none !important;
}

footer p
{
    margin-bottom: 0px !important;
}
.loader .loader-icon
{
    width: unset !important;
}

.footer__office
{
    text-transform: uppercase !important;
}

.elementor-button
{
    border-radius: 5px !important;
}
.elementor-widget-button
{
    border-radius: 5px !important;
    border: none !important;
}

.elementor-button
{
    border-color: #ffffff !important;
    border-style: solid !important;
    border-width: 2px !important;
}

.e-con-inner p
{
    line-height: normal;
}

/* A konténer alaphelyzetbe állítása */
selector .elementor-gallery__container {
    display: flex !important;
    flex-flow: column wrap !important;
    align-content: space-between !important;
    height: 1000px !important; /* Itt kell megadnod egy fix magasságot, hogy a hasábok kialakuljanak */
    padding-bottom: 0 !important;
}

/* Az elemek szélességének és távolságának beállítása */
selector .e-gallery-item {
    position: relative !important;
    width: calc(33.33% - 10px) !important; /* 3 oszlop esetén */
    margin-bottom: 10px !important;
    left: auto !important;
    top: auto !important;
}

/* Képek kitöltése */
selector .e-gallery-image {
    height: 100% !important;
}

/* Reszponzivitás - Tableten 2 oszlop */
@media (max-width: 1024px) {
    selector .elementor-gallery__container {
        height: 1500px !important;
    }
    selector .e-gallery-item {
        width: calc(50% - 10px) !important;
    }
}

/* Reszponzivitás - Mobilon 1 oszlop */
@media (max-width: 767px) {
    selector .elementor-gallery__container {
        display: block !important;
        height: auto !important;
    }
    selector .e-gallery-item {
        width: 100% !important;
    }
}

.elementor-gallery-item__title
{
    display: contents !important;
}