/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8955f8;
    --secondary-color-1: #e1dcf9;
    --secondary-color-2: #d3cbf9;
    --secondary-color-3: #b06ecf;
    --background-color: #ffffff;
    --text-color: #333333;
}


html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header és Navigáció */
#header {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.top-bar {
    background-color: #0a0f32;
    color: #fff;
    font-size: 14px;
    padding: 5px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Futószöveg */
.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Kiemelt ár */
.highlight-price {
    color: #ff4d4d;
    font-weight: bold;
}

/* Gomb a futószövegben */
.marquee-btn {
    background-color: #8955f8 !important;
    color: white;
    padding: 3px 10px;
    margin-left: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.marquee-btn:hover {
    background-color: #8a69a7;
}

/* Mobil: csak futószöveg látszik */
@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
    }

    .logo {
        padding-left: 0px !important;
    }

    #top-marquee {
        width: 100%;
        margin-right: 0;
    }

    #top-email,
    #top-phone {
        display: none;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
}

#top-marquee {
    flex: 1;
    text-align: left;
    margin-right: auto;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar a:hover {
    color: #b0a5b9;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #8a69a7 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
}

.contact-info i {
    font-size: 1rem;
}

.ticker-text {
    flex: 1;
    margin-left: 20px;
    overflow: hidden;
}

.ticker-text marquee {
    color: white;
}

@media (max-width: 768px) {
    /* Keep webkit scrollbar visible for better UX */

    .info-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ticker-text {
        margin-left: 0;
        width: 100%;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    padding-left: 10px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-right: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500 !important;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-right: 30px !important;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Flag dropdown */
.flag-icon {
    width: 20px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.dropdown {
    position: relative;
}

.dropdown button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ebe2eb;
    color: black;
    right: 0;
    top: 100%;
    min-width: 150px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-content li {
    padding: 10px;
}

.dropdown-content li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}

.dropdown-content li:hover {
    background-color: #f0f0f0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color-3);
    color: white;
}

.nav-links .cta-button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: none;
    transition: background-color 0.3s;
}

.nav-links .cta-button:hover {
    background-color: var(--secondary-color-3) !important;
    color: #fff !important;
}

/* Hero Section */
#hero {
    padding: 200px 0 80px;
    background: url('../images/humandigit_cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    z-index: -1;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

#hero p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

/* Services Section */
#services {
    padding: 80px 0;
}

#services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Two Column Services Layout */
.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.column-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color-2);
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 10px 30px rgba(137, 85, 248, 0.329);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(137, 85, 248, 0.445);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-card p:last-of-type {
    margin-bottom: 20px;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.service-card .service-features li {
    color: var(--text-color);
    line-height: 1.5;
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.95rem;
}

.service-card .service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.service-card .learn-more {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 12px 24px;
    background-color: #8955f8 !important;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-card .learn-more:hover {
    background-color: #8a69a7;
    color: white;
}

/* Pricing Section */
#pricing {
    padding: 80px 0;
    background-color: var(--secondary-color-1);
}

#pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card h3 {
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
}

/* Target Audience Section */
#target-audience {
    padding: 80px 0;
    background-color: var(--secondary-color-1);
}

#target-audience h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(137, 85, 248, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(137, 85, 248, 0.2);
}

.target-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.target-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.target-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 80px 0;
}

#why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(137, 85, 248, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid var(--secondary-color-2);
    min-height: 350px;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(137, 85, 248, 0.2);
    border-color: var(--primary-color);
}

.why-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.why-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* About Section */
#about {
    padding: 80px 0;
}

#about h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.about-text {
    text-align: center;
    max-width: 700px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-color: var(--secondary-color-1);
}

/* Contact Section */
#contact {
    padding: 80px 0;
    background-color: var(--secondary-color-1);
}

#contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.map-container {
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
}

footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto 1rem auto;
}

footer .social-icon {
    font-size: 2rem;
    color: white;
    transition: color 0.2s;
}

footer .social-icon:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Reszponzív Design */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        height: 70px;
        position: relative;
    }

    .logo {
        margin-left: 20px;
    }

    .hamburger {
        display: flex;
        margin-right: 30px !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: auto;
        background-color: var(--background-color);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links a {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

    .nav-links a::after {
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 80%;
    }

    .nav-links.active {
        display: flex;
    }

    #hero {
        padding: 180px 0 50px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
        padding: 0 8px;
    }

    #services {
        padding: 50px 0;
    }

    .services-grid {
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }

    /* Responsive Two Column Services */
    .services-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-column {
        gap: 2.5rem;
    }

    .column-title {
        font-size: 1.6rem;
    }

    /* Responsive Target & Why sections */
    .target-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .target-card,
    .why-card {
        padding: 1.5rem;
    }

    #about {
        padding: 50px 0;
    }

    .about-text {
        max-width: 100%;
        padding: 0 8px;
    }

    .team-member {
        margin-bottom: 1.5rem;
    }

    #contact {
        padding: 50px 0;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        padding: 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.7rem;
    }

    .cta-button,
    .nav-links .cta-button {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 0 16px;
        margin-bottom: 0 !important;
    }

    .footer-logo img {
        height: 32px;
    }

    .social-links {
        gap: 0.7rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.95rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    #hero h1 {
        font-size: 1.3rem;
    }

    #hero p {
        font-size: 0.98rem;
        padding: 0 2px;
    }

    #services {
        padding: 30px 0;
    }

    .service-card {
        padding: 1rem 0.5rem;
        font-size: 0.98rem;
    }

    #about {
        padding: 30px 0;
    }

    .about-text {
        padding: 0 2px;
    }

    #contact {
        padding: 30px 0;
    }

    .contact-form,
    .contact-info {
        padding: 0 2px;
    }

    .cta-button,
    .nav-links .cta-button {
        font-size: 0.98rem;
        padding: 10px 0;
        text-align: center;
    }

    footer {
        padding: 1rem 0 0.5rem;
    }

    .footer-content {
        padding: 0 8px;
    }
}

/* Animációk */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delay */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Digitális HR-megoldásaink Section */
#solutions {
    padding: 80px 0;
    background-color: var(--secondary-color-1);
}

#solutions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 16px rgba(137, 85, 248, 0.10);
}

.solution-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Linkek formázásának eltávolítása */
a,
.nav-links a,
.social-icon {
    /* color: inherit !important; */
    text-decoration: none !important;
    background: none !important;
    box-shadow: none !important;
    transition: none !important;
}

a:hover,
.nav-links a:hover,
.social-icon:hover {
    color: inherit !important;
    text-decoration: none !important;
    background: none !important;
    box-shadow: none !important;
}

#cta-hero {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: none;
    transition: background-color 0.3s;
}

#cta-hero:hover {
    background-color: var(--secondary-color-3) !important;
    color: #fff !important;
}

.ticker {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

#about .about-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

#about .about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

#about .about-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

#about .about-text ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

#about .about-text ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

#about .about-text h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

#about .about-text em {
    font-style: italic;
    color: var(--primary-color);
}

.team-member {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .ticker {
        font-size: 1rem;
        padding: 12px;
        margin-bottom: 1.5rem;
    }

    #about .about-text {
        padding: 0 15px;
    }
}

/* Contact Form Styles */
#idopont_urlap2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

#idopont_urlap2 input[type="text"],
#idopont_urlap2 input[type="email"],
#idopont_urlap2 input[type="tel"],
#idopont_urlap2 textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

#idopont_urlap2 input[type="text"]:focus,
#idopont_urlap2 input[type="email"]:focus,
#idopont_urlap2 input[type="tel"]:focus,
#idopont_urlap2 textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.adatkezeles-sor,
.adatkezeles-sor-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.adatkezeles-sor label,
.adatkezeles-sor-2 label {
    font-size: 14px;
    color: var(--text-color);
}

.adatkezeles-sor a {
    color: var(--primary-color);
    text-decoration: underline !important;
}

#idopont_urlap2 .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#idopont_urlap2 .btn:hover {
    background-color: var(--secondary-color-3);
}

#idopont_urlap2 .btn img {
    width: 20px;
    height: 20px;
}

#idopont_urlap2 .btn .hidden {
    display: none;
}

/* Loading Icon Animation */
#loadingIcon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Submit Message Styles */
#submit-message {
    text-align: center;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

#submit-message .secondary-message {
    display: block;
    font-size: 0.9em;
    color: var(--text-color);
    margin-top: 5px;
}

.hidden {
    display: none !important;
}

.footer-gdpr-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-gdpr-link:hover {
    color: var(--secondary-color-3);
    text-decoration: underline;
}

.about-more-link {
    color: #8a69a7 !important;
    text-decoration: underline !important;
    font-weight: 500;
    margin-left: 8px;
    transition: color 0.2s;
}

.about-more-link:hover {
    color: var(--secondary-color-3);
    text-decoration: underline !important;
}

.contact-intro {
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 10px;
}

.contact-intro strong {
    font-size: 16px;
    font-weight: 600;
    color: #8a69a7;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
}

.developer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

@media (max-width: 900px) {
    .scroll-offset {
        scroll-margin-top: 100px;
    }
}

.scroll-offset {
    scroll-margin-top: 100px;
}

/* Nyelvválasztó modern stílus */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 2px;
    min-width: unset;
    font-size: 0;
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.lang-btn:hover,
.lang-btn:focus {
    background: none;
    border: none;
    outline: none;
}

.lang-btn .fa,
.lang-btn span {
    display: none !important;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(137, 85, 248, 0.08);
    min-width: 100px;
    z-index: 1001;
    padding: 0;
    margin: 0;
    list-style: none;
}

.lang-dropdown li {
    padding: 0;
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
}

.lang-dropdown li a:hover {
    background: #f3eaff;
    color: #8955f8;
}

.lang-switcher .flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 0;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Eltávolítom a pöttyöt, ha valami generálná */
.lang-switcher::before,
.lang-switcher::after,
.dropdown::before,
.dropdown::after {
    display: none !important;
    content: none !important;
}