/* Támogatók Page Specific Styles */
.tamogatok-main {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
}

.tamogatok-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.tamogatok-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #6c757d;
    margin: 0;
}

/* Content Section */
.tamogatok-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tamogatok-image-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tamogatok-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tamogatok-image:hover {
    transform: scale(1.02);
}

.tamogatok-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 160px;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tamogatok-main {
        margin-top: 120px;
        min-height: calc(100vh - 120px);
    }

    .tamogatok-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tamogatok-info {
        position: static;
        order: 2;
    }

    .tamogatok-image-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .tamogatok-main {
        margin-top: 100px;
        min-height: calc(100vh - 100px);
        padding: 1rem 0;
    }

    .tamogatok-container {
        padding: 0 1rem;
    }

    .tamogatok-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .tamogatok-content {
        gap: 1.5rem;
    }

    .tamogatok-image-container,
    .tamogatok-info {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .info-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tamogatok-main {
        margin-top: 100px;
        min-height: calc(100vh - 100px);
    }

    .tamogatok-container {
        padding: 0 0.5rem;
    }

    .tamogatok-header {
        padding: 1.5rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .tamogatok-image-container,
    .tamogatok-info {
        padding: 1rem;
    }

    .info-title {
        font-size: 1.3rem;
    }

    .info-text {
        font-size: 0.95rem;
    }
}

/* Animation for page load */
.tamogatok-header,
.tamogatok-image-container,
.tamogatok-info {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for content */
.tamogatok-image-container {
    animation-delay: 0.2s;
}

.tamogatok-info {
    animation-delay: 0.4s;
}
