/* Alap stílusok */

:root {

    --primary-red: #0088ff;

    --dark-red: #0088ff;

    --light-red: #0088ff;

    --primary-black: #030712;

    --secondary-black: #000;

    --dark-gray: #1a1a1a;

    --medium-gray: #2a2a2a;

    --text-light: #f0f0f0;

    --text-gray: #b0b0b0;

    --accent-gold: #D4AF37;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    background-color: var(--primary-black);

    color: var(--text-light);

    font-family: 'Exo 2', sans-serif;

    overflow-x: hidden;

    line-height: 1.6;

}



h1, h2, h3, h4, h5 {

    font-family: 'Orbitron', sans-serif;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}



.container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 20px;

}



/* Progress Bar */

.scroll-progress {

    position: fixed;

    top: 0;

    left: 0;

    width: 0%;

    height: 3px;

    background: var(--accent-gold);

    z-index: 1000;

    transition: width 0.1s ease;

}



/* Loader */

#loader {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: var(--primary-black);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    transition: opacity 0.8s ease-out, visibility 0.8s;

}



.loader-content {

    text-align: center;

}



.loader-logo {

    font-family: 'Orbitron', sans-serif;

    font-size: 2.5rem;

    margin-bottom: 30px;

    color: var(--text-light);

}



.loader-logo span {

    color: var(--primary-red);

}



.loader-progress {

    width: 300px;

    height: 4px;

    background-color: var(--dark-gray);

    border-radius: 2px;

    overflow: hidden;

    margin: 0 auto;

}



.loader-progress-bar {

    height: 100%;

    width: 0%;

    background: linear-gradient(90deg, var(--primary-red), var(--light-red));

    transition: width 0.5s ease;

}



.loader-text {

    margin-top: 15px;

    font-size: 0.9rem;

    color: var(--text-gray);

}



/* Top Bar */

.top-bar {

    background: linear-gradient(90deg, var(--primary-black), var(--dark-gray), var(--primary-black));

    padding: 10px 0;

    border-bottom: 1px solid rgba(139, 0, 0, 0.3);

    font-size: 0.85rem;

}



.top-bar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.top-bar-links {

    display: flex;

    gap: 25px;

}



.top-bar a {

    color: var(--text-gray);

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 6px;

    transition: color 0.3s;

}



.top-bar a:hover {

    color: var(--primary-red);

}



/* Navbar */

.navbar {

    background-color: rgba(10, 10, 10, 0.95);

    padding: 25px 0;

    position: sticky;

    top: 0;

    z-index: 100;

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(139, 0, 0, 0.2);

}



.navbar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

}



.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    z-index: 101;

}



.logo-text {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.8rem;

    font-weight: 900;

    color: var(--text-light);

}



.logo-text span {

    color: var(--primary-red);

}



/* Navigációs linkek */

.nav-links {

    display: flex;

    list-style: none;

    gap: 20px;

    align-items: center;

}



.nav-links a {

    color: var(--text-light);

    text-decoration: none;

    font-weight: 500;

    font-size: 1rem;

    transition: all 0.3s ease;

    position: relative;

    padding: 5px 0;

}



.nav-links a:hover {

    color: var(--primary-red);

}



.nav-links a::after {

    content: '';

    position: absolute;

    width: 0;

    height: 2px;

    bottom: 0;

    left: 0;

    background: linear-gradient(90deg, var(--primary-red), var(--light-red));

    transition: width 0.3s ease;

}



.nav-links a:hover::after {

    width: 100%;

}



/* Aktív link */

.nav-links a.active {

    color: var(--primary-red);

}



.nav-links a.active::after {

    width: 100%;

}



/* Navigációs gombok */

.nav-actions {

    display: flex;

    gap: 15px;

    align-items: center;

}



.nav-button {

    padding: 10px 20px;

    background: transparent;

    color: var(--text-light);

    border: 1px solid var(--primary-red);

    border-radius: 4px;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.3s ease;

    font-family: 'Exo 2', sans-serif;

    font-size: 0.9rem;

}



.nav-button.primary {

    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));

}



.nav-button:hover {

    background: var(--primary-red);

    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);

    transform: translateY(-2px);

}



/* Hamburger menu */

.hamburger {

    display: none;

    cursor: pointer;

    background: none;

    border: none;

    padding: 5px;

    z-index: 101;

    transition: color 0.3s ease;

    flex-direction: column;

    gap: 4px;

}



.hamburger span {

    display: block;

    width: 25px;

    height: 3px;

    background: var(--text-light);

    transition: all 0.3s ease;

    border-radius: 2px;

}



.hamburger.active span:nth-child(1) {

    transform: rotate(45deg) translate(6px, 6px);

}



.hamburger.active span:nth-child(2) {

    opacity: 0;

}



.hamburger.active span:nth-child(3) {

    transform: rotate(-45deg) translate(6px, -6px);

}



.hamburger:hover span {

    background: var(--primary-red);

}



/* Mobile menu */

.mobile-menu {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    background: var(--primary-black);

    z-index: 99;

    padding: 100px 20px 20px;

    transform: translateX(-100%);

    transition: transform 0.3s ease;

}



.mobile-menu.active {

    transform: translateX(0);

}



.mobile-top-bar {

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--dark-gray);

}



.mobile-top-links {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.mobile-top-links a {

    color: var(--text-gray);

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 0;

    transition: color 0.3s;

}



.mobile-top-links a:hover {

    color: var(--primary-red);

}



.mobile-nav-links {

    list-style: none;

    margin-bottom: 30px;

}



.mobile-nav-links li {

    margin-bottom: 10px;

}



.mobile-nav-links a {

    color: var(--text-light);

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    border-radius: 8px;

    transition: all 0.3s;

    font-size: 1.1rem;

}



.mobile-nav-links a:hover,

.mobile-nav-links a.active {

    background: var(--dark-gray);

    color: var(--primary-red);

}



.mobile-nav-actions {

    display: flex;

    flex-direction: column;

    gap: 10px;

}



.mobile-nav-button {

    padding: 15px;

    border-radius: 8px;

    text-align: center;

    text-decoration: none;

    font-weight: 500;

    transition: all 0.3s;

}



.mobile-nav-button.outline {

    background: transparent;

    color: var(--text-light);

    border: 1px solid var(--primary-red);

}



.mobile-nav-button.primary {

    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));

    color: var(--text-light);

    border: none;

}



/* Hero szekció */

.hero {

    height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

  background:
    radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    url('asd.jpg');

    background-size: cover;

    background-position: center;

    position: relative;

    overflow: hidden;

}



.hero .container {

    position: relative;

    z-index: 2;

}



.hero-content {

    max-width: 900px;

    margin: 0 auto;

}



.hero-badge {

    display: inline-block;

    padding: 8px 20px;

    background: #031a2e;

    border: 1px solid #0f4f88;

    border-radius: 30px;

    font-size: 0.9rem;

    margin-bottom: 30px;

    color: var(--text-gray);

    text-transform: uppercase;

    letter-spacing: 1px;

}



.hero-stats {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 40px;

    margin-bottom: 40px;

}



.stat-item {

    text-align: center;

}



.stat-number {

    display: block;

    font-size: 25px;

    font-weight: 700;

    color: var(--primary-red);

    font-family: 'Orbitron', sans-serif;

}



.stat-label {

    font-size: 1rem;

    color: var(--text-gray);

}



.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 10px;

}



.cta-button {

    display: inline-block;

    padding: 14px 35px;

    border-radius: 30px;

    font-size: 1.1rem;

    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;

    transition: all 0.3s ease;

    border: none;

    cursor: pointer;

}



.cta-button {

    background: var(--primary-red);

    color: #fff;

    border: 2px solid var(--primary-red);

}



.cta-button:hover {

    background: transparent;

    color: var(--primary-red);

}



.cta-button.outline {

    background: transparent;

    color: var(--primary-red);

    border: 2px solid var(--primary-red);

}



.cta-button.outline:hover {

    background: var(--primary-red);

    color: #fff;

}



/* Section stílusok */

section {

    padding: 120px 0;

}



.section-header {

    text-align: center;

    margin-bottom: 80px;

}



.section-title {

    font-size: 3rem;

    margin-bottom: 20px;

    position: relative;

    display: inline-block;

}



.section-title::after {

    content: '';

    position: absolute;

    width: 80px;

    height: 4px;

    background: linear-gradient(90deg, var(--primary-red), transparent);

    bottom: -15px;

    left: 50%;

    transform: translateX(-50%);

}



.section-description {

    max-width: 700px;

    margin: 0 auto;

    color: var(--text-gray);

    font-size: 1.1rem;

}



/* Animációk */

.slide-in-left {

    opacity: 0;

    transform: translateX(-100px);

    transition: opacity 0.8s, transform 0.8s;

}



.slide-in-right {

    opacity: 0;

    transform: translateX(100px);

    transition: opacity 0.8s, transform 0.8s;

}



.slide-in-bottom {

    opacity: 0;

    transform: translateY(50px);

    transition: opacity 0.8s, transform 0.8s;

}



.slide-in-top {

    opacity: 0;

    transform: translateY(-50px);

    transition: opacity 0.8s, transform 0.8s;

}



.visible {

    opacity: 1;

    transform: translate(0, 0);

}



/* Rólunk szekció */

.about {

    background-color: var(--secondary-black);

    position: relative;

}



.about::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at 30% 70%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);

    pointer-events: none;

}



.about-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}



.about-text h3 {

    font-size: 2rem;

    margin-bottom: 25px;

    color: var(--text-light);

}



.about-text p {

    margin-bottom: 20px;

    color: var(--text-gray);

    line-height: 1.7;

}



.about-features {

    margin-top: 30px;

}



.feature-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 15px;

}



.feature-icon {

    width: 24px;

    height: 24px;

    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--text-light);

    font-size: 0.8rem;

}



.about-image {

    position: relative;

}



.about-image img {

    width: 80%;

    border-radius: 10px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);

}



/* Szolgáltatások szekció */

.services {

    background-color: var(--primary-black);

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 30px;

}



.service-card {

    background: linear-gradient(145deg, var(--secondary-black), var(--dark-gray));

    padding: 40px 30px;

    border-radius: 10px;

    text-align: center;

    transition: all 0.4s;

    border: 1px solid rgba(139, 0, 0, 0.1);

    position: relative;

    overflow: hidden;

}



.service-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, var(--primary-red), var(--light-red));

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s;

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

    border-color: rgba(139, 0, 0, 0.3);

}



.service-card:hover::before {

    transform: scaleX(1);

}



.service-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 2rem;

    color: var(--text-light);

}



.service-card h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

}



.service-card p {

    color: var(--text-gray);

    line-height: 1.7;

}



/* FAQ szekció */

.faq {

    background-color: var(--secondary-black);

}



.faq-container {

    max-width: 900px;

    margin: 0 auto;

}



.faq-item {

    background: linear-gradient(145deg, var(--primary-black), var(--dark-gray));

    border-radius: 8px;

    margin-bottom: 20px;

    overflow: hidden;

    border: 1px solid rgba(139, 0, 0, 0.1);

}



.faq-question {

    padding: 20px 25px;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: background-color 0.3s;

}



.faq-question:hover {

    background-color: rgba(139, 0, 0, 0.1);

}



.faq-question h3 {

    font-size: 1.2rem;

    margin: 0;

    color: var(--text-light);

}



.faq-icon {

    color: var(--primary-red);

    transition: transform 0.3s;

}



.faq-answer {

    padding: 0 25px;

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s, padding 0.3s;

}



.faq-answer p {

    padding-bottom: 20px;

    color: var(--text-gray);

    line-height: 1.6;

}



.faq-item.active .faq-answer {

    max-height: 500px;

    padding: 0 25px 20px;

}



.faq-item.active .faq-icon {

    transform: rotate(45deg);

}



/* Vezetőség szekció */

.team {

    padding: 100px 0;

    background-color: var(--primary-black);

    overflow: hidden;

    position: relative;

}



.team-carousel {

    overflow: hidden;

    width: 100%;

    position: relative;

    opacity: 0;

    transform: translateY(50px);

    transition: all 1.2s ease;

}



.team-carousel.visible {

    opacity: 1;

    transform: translateY(0);

}



.team-track {

    display: flex;

    gap: 20px;

    animation: scrollLeft 45s linear infinite;

}



.team-track.paused {

    animation-play-state: paused;

}



.team-member {

    min-width: 280px;

    flex-shrink: 0;

    background: linear-gradient(145deg, var(--secondary-black), var(--dark-gray));

    border-radius: 10px;

    text-align: center;

    padding: 20px;

    transition: all 0.4s;

    border: 1px solid rgba(139, 0, 0, 0.1);

}



.team-member:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

    border-color: rgba(139, 0, 0, 0.3);

}



.member-name {

    color: var(--text-light);

    font-size: 1.4rem;

    margin-bottom: 5px;

}



.member-role {

    color: var(--primary-red);

    font-weight: 500;

}



@keyframes scrollLeft {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-50%);

    }

}



/* Videósegédlet szekció */

.video-guides {

    background-color: var(--primary-black);

}



.video-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));

    gap: 20px;

}



.video-item {

    background: linear-gradient(145deg, var(--secondary-black), var(--dark-gray));

    border-radius: 10px;

    overflow: hidden;

    transition: all 0.4s;

    border: 1px solid rgba(0, 136, 255, 0.1);

    cursor: pointer;

}



.video-item:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

    border-color: rgba(0, 136, 255, 0.3);

}



.video-thumbnail {

    position: relative;

    height: 200px;

    overflow: hidden;

}



.video-thumbnail img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s;

}



.video-item:hover .video-thumbnail img {

    transform: scale(1.1);

}



.video-play {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 60px;

    height: 60px;

    background: rgba(0, 136, 255, 0.8);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 1.5rem;

    opacity: 0;

    transition: all 0.3s;

    cursor: pointer;

    z-index: 2;

}



.video-item:hover .video-play {

    opacity: 1;

    transform: translate(-50%, -50%) scale(1.1);

}



.video-info {

    padding: 20px;

}



.video-info h3 {

    font-size: 1.3rem;

    margin-bottom: 10px;

    color: var(--text-light);

}



.video-info p {

    color: var(--text-gray);

    font-size: 0.9rem;

    margin-bottom: 15px;

    line-height: 1.6;

}



/* Modal stílusok */

.modal {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.9);

    z-index: 1000;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: opacity 0.3s ease;

}



.modal.active {

    display: flex;

    opacity: 1;

    animation: modalFadeIn 0.3s ease forwards;

}



.modal-content {

    position: relative;

    width: 80%;

    max-width: 900px;

    background: var(--primary-black);

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 0 30px rgba(0, 136, 255, 0.3);

    transform: scale(0.7);

    opacity: 0;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}



.modal.active .modal-content {

    transform: scale(1);

    opacity: 1;

    animation: modalContentSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;

}



.modal-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 20px;

    background: var(--dark-gray);

    border-bottom: 1px solid rgba(0, 136, 255, 0.3);

}



.modal-title {

    font-size: 1.2rem;

    color: var(--text-light);

}



.close-modal {

    background: none;

    border: none;

    color: var(--text-light);

    font-size: 1.5rem;

    cursor: pointer;

    transition: color 0.3s;

    padding: 5px;

}



.close-modal:hover {

    color: var(--primary-red);

    transform: scale(1.1);

}



.video-container {

    position: relative;

    padding-bottom: 56.25%;

    height: 0;

    overflow: hidden;

}



.video-container iframe {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    border: none;

}



@keyframes modalFadeIn {

    from { opacity: 0; }

    to { opacity: 1; }

}



@keyframes modalContentSlideIn {

    from {

        transform: scale(0.7) translateY(-50px);

        opacity: 0;

    }

    to {

        transform: scale(1) translateY(0);

        opacity: 1;

    }

}



.modal.fade-out {

    opacity: 0;

    transition: opacity 0.2s ease;

}



.modal.fade-out .modal-content {

    transform: scale(0.7);

    opacity: 0;

    transition: all 0.3s ease;

}



/* Munkák szekció */

.jobs {

    background-color: var(--secondary-black);

}



.jobs-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

}



.job-category {

    background: linear-gradient(145deg, var(--primary-black), var(--dark-gray));

    border-radius: 10px;

    padding: 30px;

    border: 1px solid rgba(0, 136, 255, 0.1);

}



.job-category h3 {

    font-size: 1.8rem;

    margin-bottom: 25px;

    color: var(--text-light);

    text-align: center;

    position: relative;

    padding-bottom: 15px;

}



.job-category h3::after {

    content: '';

    position: absolute;

    width: 50px;

    height: 3px;

    background: linear-gradient(90deg, var(--primary-red), transparent);

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

}



.job-category.alap h3::after {

    background: linear-gradient(90deg, #00cc00, transparent);

}



.job-category.hobbi h3::after {

    background: linear-gradient(90deg, #ff9900, transparent);

}



.job-list {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.job-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    background: rgba(42, 42, 42, 0.5);

    border-radius: 8px;

    transition: all 0.3s;

    border-left: 3px solid var(--primary-red);

}



.job-category.alap .job-item {

    border-left-color: #00cc00;

}



.job-category.hobbi .job-item {

    border-left-color: #ff9900;

}



.job-item:hover {

    transform: translateX(5px);

    background: rgba(42, 42, 42, 0.8);

}



.job-icon {

    width: 40px;

    height: 40px;

    background: var(--dark-gray);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--primary-red);

    font-size: 1.2rem;

}



.job-category.alap .job-icon {

    color: #00cc00;

}



.job-category.hobbi .job-icon {

    color: #ff9900;

}



.job-details h4 {

    font-size: 1.1rem;

    margin-bottom: 5px;

    color: var(--text-light);

}



.job-details p {

    color: var(--text-gray);

    font-size: 0.9rem;

}



/* Csatlakozás szekció */

.join {

    background-color: var(--secondary-black);

    position: relative;

}



.join::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at 70% 30%, rgba(0, 136, 255, 0.1) 0%, transparent 50%);

    pointer-events: none;

}



.join-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}



.join-steps {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.join-step {

    display: flex;

    gap: 20px;

    align-items: flex-start;

}



.step-number {

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-family: 'Orbitron', sans-serif;

    font-weight: 700;

    font-size: 1.2rem;

    flex-shrink: 0;

}



.step-content h3 {

    font-size: 1.4rem;

    margin-bottom: 10px;

    color: var(--text-light);

}



.step-content p {

    color: var(--text-gray);

    line-height: 1.7;

}



.join-actions {

    background: linear-gradient(145deg, var(--primary-black), var(--dark-gray));

    padding: 40px;

    border-radius: 10px;

    border: 1px solid rgba(0, 136, 255, 0.2);

    text-align: center;

}



.join-actions h3 {

    font-size: 1.8rem;

    margin-bottom: 20px;

    color: var(--text-light);

}



.join-actions p {

    color: var(--text-gray);

    margin-bottom: 30px;

}



.join-button {

    display: inline-block;

    padding: 15px 35px;

    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));

    color: var(--text-light);

    text-decoration: none;

    font-weight: 600;

    border-radius: 4px;

    transition: all 0.3s;

    border: none;

    cursor: pointer;

    text-transform: uppercase;

    letter-spacing: 1px;

    box-shadow: 0 5px 15px rgba(0, 136, 255, 0.3);

    font-size: 1.1rem;

}



.join-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.5);

}



/* Lábléc */

footer {

    background-color: var(--secondary-black);

    padding: 60px 0 30px;

    border-top: 1px solid rgba(139, 0, 0, 0.2);

}



.footer-content {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 40px;

}



.footer-logo {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.8rem;

    font-weight: 900;

    margin-bottom: 15px;

}



.footer-logo span {

    color: var(--primary-red);

}



.footer-about p {

    color: var(--text-gray);

    margin-bottom: 20px;

}



.footer-heading {

    font-size: 1.2rem;

    margin-bottom: 20px;

    color: var(--text-light);

    position: relative;

    padding-bottom: 10px;

}



.footer-heading::after {

    content: '';

    position: absolute;

    width: 30px;

    height: 2px;

    background-color: var(--primary-red);

    bottom: 0;

    left: 0;

}



.footer-links {

    list-style: none;

}



.footer-links li {

    margin-bottom: 10px;

}



.footer-links a {

    color: var(--text-gray);

    text-decoration: none;

    transition: color 0.3s;

}



.footer-links a:hover {

    color: var(--primary-red);

}



.copyright {

    text-align: center;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    color: var(--text-gray);

    font-size: 0.9rem;

}



/* Reszponzív design */

@media (max-width: 1200px) {

    .hero h1 {

        font-size: 3.5rem;

    }

    

    .section-title {

        font-size: 2.5rem;

    }

}



@media (max-width: 992px) {

    .nav-links,

    .nav-actions,

    .top-bar {

        display: none;

    }



    .hamburger {

        display: flex;

    }



    .mobile-menu {

        display: block;

    }



    .about-content,

    .contact-content,

    .join-content,

    .jobs-container {

        grid-template-columns: 1fr;

    }



    .about-image {

        order: -1;

    }



    .footer-content {

        grid-template-columns: 1fr 1fr;

    }



    .hero h1 {

        font-size: 3rem;

    }

}



@media (max-width: 768px) {

    .hero h1 {

        font-size: 2.5rem;

    }



    .hero p {

        font-size: 1.1rem;

    }



    .hero-stats {

        flex-wrap: wrap;

        gap: 20px;

    }



    .cta-buttons {

        flex-direction: column;

        align-items: center;

        gap: 15px;

    }



    .cta-button {

        width: 80%;

        max-width: 300px;

    }



    .section-title {

        font-size: 2rem;

    }



    .services-grid,

    .team-grid,

    .video-grid {

        grid-template-columns: 1fr;

    }



    .footer-content {

        grid-template-columns: 1fr;

    }



    .modal-content {

        width: 95%;

        margin: 20px;

    }



    section {

        padding: 80px 0;

    }



    .team-member {

        min-width: 240px;

        padding: 20px;

    }

}



@media (max-width: 576px) {

    .top-bar-content {

        flex-direction: column;

        gap: 10px;

    }



    .hero h1 {

        font-size: 2.2rem;

    }



    .hero p {

        font-size: 1rem;

    }



    .hero-stats {

        gap: 15px;

    }



    .stat-item {

        flex: 1;

        min-width: 100px;

    }



    .stat-number {

        font-size: 1.8rem;

    }



    .stat-label {

        font-size: 0.8rem;

    }



    .hero-badge {

        font-size: 0.8rem;

        padding: 6px 15px;

    }



    .service-card,

    .contact-form {

        padding: 30px 20px;

    }



    .section-title {

        font-size: 1.8rem;

    }



    .join-step {

        flex-direction: column;

        text-align: center;

    }



    .step-number {

        align-self: center;

    }



    .video-play {

        width: 50px;

        height: 50px;

        font-size: 1.2rem;

    }



    .team-member {

        min-width: 200px;

        padding: 15px;

    }

}