/* Reset és alapstílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TAME színek */
:root {
    --primary-orange: #FF6600;
    --secondary-orange: #FF8533;
    --dark-gray: #333333;
    --light-gray: #666666;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
}

/* Main tartalom */
main {
    margin-top: 100px; /* Kompenzálja a fix fejléc magasságát */
}

/* Header és navigáció */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 102, 0, 0.03) 2px,
            rgba(255, 102, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(255, 102, 0, 0.02) 2px,
            rgba(255, 102, 0, 0.02) 4px
        );
    pointer-events: none;
    z-index: -1;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.nav-logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    white-space: nowrap;
    flex-direction: row !important;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 65px;
    height: 65px;
    object-fit: contain;
    max-width: 65px;
    max-height: 65px;
    flex-shrink: 0;
}

.nav-logo h2 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 !important;
    line-height: 1;
    display: inline-block !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Aktív menüpont jelölése ugyanazzal a vonallal */
.nav-link.active {
    color: var(--primary-orange);
}
.nav-link.active::after {
    width: 100%;
}

.nav-donate {
    margin-left: 2rem;
}

.btn-donate {
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-donate:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    color: var(--dark-gray);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Átlós, ismétlődő TAME vízjel 10px betűmérettel */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><defs><style>text{font-family:Inter, Arial, sans-serif;font-size:10px;font-weight:700;fill:%23ff6600;opacity:0.06}</style></defs><g transform='rotate(-45 120 120)'><text x='0' y='20'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text><text x='0' y='50'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text><text x='0' y='80'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text><text x='0' y='110'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text><text x='0' y='140'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text><text x='0' y='170'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text><text x='0' y='200'>TAME TAME TAME TAME TAME TAME TAME TAME TAME</text></g></svg>");
    background-size: 240px 240px;
    background-repeat: repeat;
    background-position: 0 0;
    animation: watermarkPan 18s linear infinite alternate;
    pointer-events: none;
    z-index: 0;
}



.hero-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.hero-inner {
    width: 80vw;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: center;
}

.hero-content {
    background: var(--primary-orange);
    color: white;
    padding: 4rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
    min-height: 520px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.hero-brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-orange);
}

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.hero-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    max-width: 650px;
    height: 520px;
    border-radius: 20px 0 0 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Latest News Section */
.latest-news {
    padding: 6rem 0;
    background: var(--light-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-more {
    text-align: right;
    margin-top: 0;
}

.news-more .btn {
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-more .btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.news-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-readmore-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background 0.25s ease, transform 0.2s ease;
    z-index: 2;
    /* finom térhatás */
    box-shadow: 0 -8px 18px -12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.news-readmore-bar:hover {
    background: var(--secondary-orange);
}

.news-image {
    width: 100%;
    height: 200px;
    background: var(--primary-orange);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.news-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 200px; /* a borítókép fix magassága */
    height: 36px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.144) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.news-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-bottom: 60px; /* hely az alsó fix sávnak */
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-meta {
    margin-bottom: 15px;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.empty-icon {
    font-size: 4rem;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.news-empty h3 {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.news-empty p {
    color: var(--medium-gray);
    margin: 0;
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-orange);
}

.latest-news .news-more {
    text-align: right;
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.stat-text {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Call to Action Section */
.cta {
    padding: 6rem 0;
    background: var(--primary-orange);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    text-align: center;
}

/* Supporters Section */
.supporters {
    padding: 6rem 0;
    background: var(--light-bg);
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.supporter-logo {
    height: 100px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 2rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.supporter-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.supporter-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 0 10px;
    text-align: center;
}

.supporter-card { text-decoration: none; display: block; }
.supporters-page .supporters-grid-large {
    max-width: 1000px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Fade effect a támogatók rács cseréjénél */
#supporters-grid {
    transition: opacity 0.25s ease;
}

#supporters-grid.is-fading {
    opacity: 0;
}

/* Kártyánkénti fade animáció */
.supporter-item { opacity: 1; transition: opacity 0.35s ease, transform 0.35s ease; transform: translateY(0); }
.supporter-item.fade-out { opacity: 0; transform: translateY(8px); }
.supporter-item.fade-in { opacity: 0; transform: translateY(8px); }
.supporter-item.fade-in.visible { opacity: 1; transform: translateY(0); }

.supporters-more {
    margin-top: 2rem;
    text-align: center;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: var(--primary-orange);
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-text ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-text ul li:last-child {
    border-bottom: none;
}

.about-text ul li strong {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text ul li {
        font-size: 0.95rem;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.newsletter p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.newsletter-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.newsletter-message {
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* Designer credit */
.footer-designer {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-designer span { color: #9ca3af; font-size: 1rem; }
.designer-logo {
    height: 32px;
    display: inline-block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: filter 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}
.footer-designer a:hover .designer-logo {
    opacity: 1;
    transform: none;
    filter: none; /* eredeti színek vissza */
}

/* Footer social ikonok */
.social-links a.facebook i {
    font-size: 3.2rem;
}

/* Toast értesítések */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 1000;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.toast-success {
    background: #22c55e;
}

.toast-error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Reszponzív dizájn */
@media (max-width: 768px) {
    main {
        margin-top: 80px; /* Kisebb margin mobil eszközökön */
    }
    
    .logo-image {
        width: 57px;
        height: 57px;
        max-width: 57px;
        max-height: 57px;
        flex-shrink: 0;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-donate {
        margin-left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-inner {
        width: 90vw;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        padding: 2.5rem;
        border-radius: 20px;
        min-height: 380px !important;
        align-self: stretch;
    }
    


    .hero-title {
        font-size: 2rem;
    }

    .hero-video {
        width: 100%;
        max-width: 500px;
        height: 380px;
        border-radius: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .supporters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 49px;
        height: 49px;
        max-width: 49px;
        max-height: 49px;
        flex-shrink: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .supporters-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes watermarkPan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 240px 0;
    }
}

.hero-content,
.news-card,
.stat-card,
.cta,
.newsletter {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Kapcsolat oldal stílusok */
.contact-section {
    padding: 110px 0 80px 0;
    background: #f8f9fa;
}

.contact-section .section-header {
    margin-top: 0;
    padding-top: 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    min-width: 50px;
}

.contact-details h3 {
    margin: 0 0 10px 0;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    color: var(--light-gray);
    line-height: 1.6;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}



.help-text {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 5px;
}

.error-message,
.success-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.error-message {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.success-message {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Ember ellenőrzés stílusok */
.human-verification-label {
    display: block;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    margin: 12px 0;
}

.human-verification-label:hover {
    border-color: #ff4444;
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
}

.human-verification-label input[type="checkbox"] {
    display: none;
}

.verification-text {
    font-size: 14px;
    font-weight: 700;
    color: #ff4444;
    display: block;
    transition: all 0.3s ease;
}

.human-verification-label:hover .verification-text {
    color: #ff6666;
}

.human-verification-label input[type="checkbox"]:checked + .verification-text {
    color: #22c55e;
}

.human-verification-label input[type="checkbox"]:checked {
    border-color: #22c55e;
    background: #f0fdf4;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.human-verification-label input[type="checkbox"]:checked + .verification-text::before {
    content: "✓ ";
    margin-right: 10px;
}

/* Piros pulzáló keret, amíg nincs megerősítve */
@keyframes redPulse {
    0% { border-color: #ff4444; box-shadow: 0 0 0 0 rgba(255,68,68,0.28); }
    50% { border-color: rgba(255,68,68,0.45); box-shadow: 0 0 0 8px rgba(255,68,68,0.08); }
    100% { border-color: #ff4444; box-shadow: 0 0 0 0 rgba(255,68,68,0.28); }
}

.human-verification-label.pulsing {
    animation: redPulse 1.4s ease-in-out infinite;
    border-color: #ff4444;
}

.human-verification-label.verified {
    animation: none;
    border-color: #22c55e;
}

/* Rólunk oldal stílusok */
.about-page {
    padding: 110px 0 80px 0;
    background: var(--light-bg);
}

.about-page .section-header {
    margin-top: 0;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-page .section-header-content {
    flex: 1;
    text-align: left;
}

.about-page .section-header-actions {
    flex-shrink: 0;
}

.about-page .section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.about-page .section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

.about-page .about-content {
    max-width: 800px;
    margin: 60px auto 0;
}

.about-page .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-page .about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 2.5rem 0 1rem 0;
}

.about-page .about-text p {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-page .about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-page .about-text ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.about-page .about-text ul li:last-child {
    border-bottom: none;
}

.about-page .about-text ul li strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Tagok grid stílusa */
.members-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.member-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.member-photo {
    width: 336px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.member-details {
    flex: 1;
    text-align: left;
}

.member-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.member-position {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-dates {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.member-since,
.member-until {
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-since i,
.member-until i {
    color: var(--primary-orange);
    width: 16px;
}

.member-activities,
.member-bio {
    margin-top: 0.5rem;
}

.member-activities h4,
.member-bio h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-activities h4 i,
.member-bio h4 i {
    color: var(--primary-orange);
}

.member-activities p,
.member-bio p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.member-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px;
    border: 1px solid var(--primary-orange);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-1px);
}

.no-members {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-gray);
}

.no-members i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-members h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.no-members p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-page .section-header h1 {
        font-size: 2.5rem;
    }
    
    .about-page .about-text h2 {
        font-size: 2rem;
    }
    
    .about-page .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-page .about-text p {
        font-size: 1rem;
    }
    
    .about-page .about-text ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-section {
        padding: 110px 0 60px 0;
    }
}

/* Adatvédelmi oldal stílusok */
.privacy-content h1 {
    margin-bottom: 2em;
}

.privacy-content h2 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.privacy-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.privacy-content p {
    margin-bottom: 1.2em;
}

.privacy-content ul, .privacy-content ol {
    margin-bottom: 1.5em;
}

.privacy-content li {
    margin-bottom: 0.5em;
}

.privacy-content table {
    margin-bottom: 1.5em;
}

/* Cikk oldal navigációs stílusok */
.cikk-navigation {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--primary-orange);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
}

.back-to-home:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}