/* Alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* marad a főoldal alapszíne */
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004080;
    padding: 0.5rem 1rem;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.navbar {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    transition: background 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #0066cc;
    border-radius: 4px;
}

.navbar .support {
    background-color: #ff9900;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.navbar .support:hover {
    background-color: #e68a00;
}

/* Nyelvválasztó */
.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch a {
    font-size: 1.2rem;
}

/* Hamburger menü mobilra */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main */
.container {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

/* Hero szekció */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #e6f0ff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Donate box */
.donate {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.donate-box {
    background-color: #fff3e6;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.donate-box h2 {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e68a00;
}

/* Services */
.services {
    margin-bottom: 2rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.card h3 {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #004080;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.footer .links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        gap: 0;
        background-color: #004080;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }
    
    .navbar.active {
        display: flex;
    }
    
    .navbar a {
        padding: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .hamburger {
        display: block;
    }
}

/* Árlista oldal */
.pricing h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #004080;
    font-size: 2rem;
}

.price-section {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.price-section h2 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.price-section p {
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.price-section p em {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .price-section {
        padding: 1rem;
    }
}

/* Szolgáltatások oldal */
.services-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-content h2 {
    color: #004080;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-content h3 {
    color: #0066cc;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.services-content h4 {
    color: #0073e6;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.services-content p {
    margin-bottom: 1rem;
}

.services-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.services-content ul li {
    margin-bottom: 0.5rem;
}

.services-content .highlight {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-content {
        padding: 1rem;
    }
}
/* Állások oldal */
.jobs-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.jobs-content h2 {
    color: #004080;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.jobs-content2 h2 {
    color: #004080;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.jobs-content2 p {
    margin-bottom: 1rem;
    text-align: center;
}

.jobs-content p {
    margin-bottom: 1rem;
}

.job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.job-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.job-card h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.job-card button {
    margin-top: auto;
    padding: 0.5rem 1rem;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.job-card button:hover {
    background-color: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
    .job-list {
        flex-direction: column;
        align-items: center;
    }

    .job-card {
        width: 90%;
    }
}

/* Nemzetközi szállítás oldal */
.intl-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.intl-content h2 {
    color: #004080;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.intl-content h3 {
    color: #0066cc;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.intl-content p {
    margin-bottom: 1rem;
}

/* Info box */
.intl-content .info-box {
    background-color: #e6f0ff;
    border-left: 4px solid #0073e6;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 6px;
}

.intl-content .info-box h4 {
    margin-bottom: 0.5rem;
    color: #005bb5;
}

.intl-content .info-box p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .intl-content {
        padding: 1.5rem;
    }
}
/* Kapcsolat oldal */
.contact-page {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-page h2 {
    color: #004080;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-page h4 {
    color: #0066cc;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-page p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Kapcsolati űrlap */
.contact-page form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-page .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-page .form-control {
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.contact-page .btn-primary {
    background-color: #0073e6;
    border-color: #0073e6;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.contact-page .btn-primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
}

/* ReCaptcha */
.contact-page .g-recaptcha {
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 1rem;
    }
}
/* Támogatás oldal stílusai */
.tamogatas-page {
    font-family: Arial, sans-serif;
}

.tamogatas-page .form-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.tamogatas-page .amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.tamogatas-page .amount-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}

.tamogatas-page .amount-button.active {
    background-color: darkred;
    border: 2px solid white;
}

.tamogatas-page #custom-amount {
    margin-top: 10px;
    display: none;
}

.tamogatas-page #custom-amount input {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.tamogatas-page #selected-amount-text {
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
}

.tamogatas-page #submit-button {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
    width: 100%;
}

/* Egyedi Tamogatas oldal stílusok */

/* --- Tamogatás Form Grafika --- */
.tam-form {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.tam-form:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.tam-fields {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #fdfdfd;
}

.tam-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.tam-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s all;
}

.tam-field input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.2);
    outline: none;
}

.tam-btn-group .tam-btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s all;
}

.tam-btn-group .tam-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.tam-amount-box {
    background-color: #e7f1ff;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
}

.tam-consent {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.tam-consent input {
    margin-right: 10px;
}

.tam-submit-btn {
    background-color: #007bff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 50px;
    transition: 0.3s all;
}

.tam-submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.tam-legal-box {
    font-size: 0.8rem;
    color: #555;
    margin-top: 25px;
    line-height: 1.4;
}

.tam-legal-box td {
    padding: 5px 10px;
}
/* --- Támogatóink szekció --- */
.tamogatoink-container {
    background-color: #f9f9f9;
    padding: 50px 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.tamogatoink-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 40px;
}

.tamogatoink-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tamogatoink-logos a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tamogatoink-logos a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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