/* --- ALAP BEÁLLÍTÁSOK ÉS VÁLTOZÓK --- */
:root {
    /* Színpaletta */
    --primary-blue: #122338;
    --accent-gold:  #C5A065;
    --bg-light:     #F8F9FA;
    --bg-white:     #FFFFFF;
    --text-dark:    #212529;
    --text-muted:   #6C757D;
    --text-light:   #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-muted);
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* --- NAVIGÁCIÓ (HEADER) --- */
.navbar {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

.lang-switch {
    color: white;
    font-size: 0.9rem;
}

.lang-switch .active-lang {
    color: var(--accent-gold);
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SZEKCIÓ (FŐOLDAL) --- */
.hero {
    position: relative;
    height: 80vh;
    background-image: url('https://images.unsplash.com/photo-1549892706-5f0458df864a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* --- PAGE HEADER (ALOLDALAK HERO) --- */
/* ÚJ ELEM AZ ABOUT OLDALHOZ */
.page-header {
    position: relative;
    height: 40vh; /* Kisebb magasság */
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); /* Vezetés/Út háttér */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18,35,56,0.9) 0%, rgba(18,35,56,0.6) 100%);
}

.hero-content, .page-header-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.hero-content { max-width: 600px; }
.page-header-content { max-width: 800px; }

.hero h1, .page-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
}

.page-header h1 { font-size: 2.8rem; } /* Kisebb cím az aloldalon */

.hero p, .page-header p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* GOMB STÍLUSOK */
.hero-buttons { display: flex; gap: 15px; }

.btn {
    padding: 12px 25px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    border: 2px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: #b08d55;
    border-color: #b08d55;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-blue);
}

/* --- RÓLUNK STORY SZEKCIÓ (ÚJ) --- */
.about-story {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.story-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--accent-gold);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.exp-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- STATISZTIKA SÁV (ÚJ) --- */
.stats-bar {
    background-color: var(--primary-blue);
    padding: 50px 0;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- ÉRTÉKEINK (Why Us - ÚJ) --- */
.core-values {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent-gold);
}

.value-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(197, 160, 101, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* --- CSAPAT (Team - ÚJ) --- */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.member-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--bg-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.drivers-note {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: var(--text-muted);
}

/* --- KÖZÖS ELEMEK (Flotta, Footer) A FŐOLDALRÓL --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

.fleet-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover { transform: translateY(-5px); }

.card-image { height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fleet-card:hover .card-image img { transform: scale(1.05); }

.card-body {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
.specs { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; color: var(--accent-gold); font-weight: 500; font-size: 0.9rem; }
.btn-gold-sm { display: inline-block; padding: 10px 20px; border: 1px solid var(--accent-gold); color: var(--accent-gold); text-transform: uppercase; font-size: 0.8rem; font-weight: 600; }
.btn-gold-sm:hover { background-color: var(--accent-gold); color: white; }

/* Főoldali Rólunk (ha még kell) */
.about { padding: 80px 0; background-color: var(--bg-white); }
.about-wrapper { display: flex; align-items: center; gap: 50px; }
.about-image img { width: 100%; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-text h2 { color: var(--accent-gold); font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.about-text h3 { font-size: 2rem; margin-bottom: 20px; line-height: 1.3; }
.partners { margin-top: 30px; display: flex; align-items: center; gap: 20px; color: #ccc; font-size: 2rem; }

/* FOOTER */
footer { background-color: var(--primary-blue); color: white; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col ul li a { color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--accent-gold); padding-left: 5px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; border-radius: 50%; color: white; }
.social-icons a:hover { background: var(--accent-gold); }
.copyright { text-align: center; padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* --- RESZPONZÍV (MOBIL) NÉZET --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1, .page-header h1 { font-size: 2.2rem; }
    .about-wrapper, .story-grid { grid-template-columns: 1fr; flex-direction: column; }
    .about-image, .story-image { order: -1; margin-bottom: 30px; }
    .exp-badge { right: 0; left: auto; bottom: -15px; }
}