/* === ALAP === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Urbanist', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #121212;
  color: #e5e5e5;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(18, 18, 18, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInDown 1s ease forwards;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #00b894;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 500;
  transition: 0.3s;
}
nav a:hover { color: #00b894; transform: scale(1.05); }

/* === HERO === */
#hero {
  background: linear-gradient(to bottom right, rgba(0,184,148,0.25), rgba(0,0,0,0.7)), url('hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
  padding: 140px 20px;
  animation: fadeIn 2s ease;
}
.hero-content {
  animation: slideUp 1.2s ease;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ccc;
}
.btn {
  background: #00b894;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #00a37a;
  transform: translateY(-2px);
}

/* === TARTALOM BLOKKOK === */
.content {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  animation: fadeIn 1s ease;
}
.content h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00b894;
  position: relative;
}
.content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b894;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* === STATISZTIKÁK === */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}
.stat {
  background: #1f1f1f;
  border-radius: 15px;
  padding: 30px 45px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  animation: slideUp 1.2s ease;
  transition: 0.3s;
}
.stat:hover {
  transform: translateY(-5px);
  background: #262626;
}
.stat h3 {
  color: #00b894;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

/* === AUTÓ KÁRTYA === */
.car-card {
  background: #1f1f1f;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  max-width: 600px;
  margin: 40px auto;
  animation: fadeInUp 1.5s ease;
}
.car-card img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  filter: brightness(0.95);
  transition: 0.3s;
}
.car-card img:hover { transform: scale(1.03); }
.car-card h3 {
  margin-top: 20px;
  color: #00b894;
}

/* === INFO GRID === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.info-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  text-align: left;
  animation: fadeInUp 1s ease;
}
.info-card h3 { color: #00b894; margin-bottom: 15px; }

/* === VÁLLALÁSI FELTÉTELEK === */
.vallalas-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  animation: fadeInUp 1.5s ease;
}
.vallalas-box h3 { color: #00b894; margin-bottom: 15px; }
.vallalas-box p, .info-card li { color: #ccc; }

/* === LETÖLTÉSEK === */
.download-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.download-btn {
  border: 2px solid #00b894;
  color: #00b894;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.download-btn:hover {
  background: #00b894;
  color: white;
  transform: translateY(-2px);
}

/* === LISTÁK (ul, li) === */
ul {
  list-style: none;             /* eltünteti a diszkeket */
  padding-left: 0;
  margin: 10px 0;
}

li {
    list-style: none; 
}

ul li {
  margin: 6px 0;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ikon-szerű kis bullet a lista elejére */
ul li::before {
  content: "•";
  color: #00b894;
  font-weight: bold;
  margin-right: 5px;
}

/* ha emoji vagy ikon van a li elején, ne ismétlődjön bullet */
ul li:has(a[href]), ul li:has(📞), ul li:has(✉️), ul li:has(🌐) {
  list-style: none;
}
ul li:has(a[href])::before {
  content: "";
}

/* === LINK (a) === */
a {
  color: #00b894;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
a:hover {
  color: #00e0ac;
  text-shadow: 0 0 8px rgba(0,184,148,0.6);
}

/* külön szín a telefonszámokhoz és e-mailhez */
a[href^="tel:"] {
  color: #ff70a6; /* halvány rózsaszín - telefon */
}
a[href^="tel:"]:hover {
  color: #ff9ec1;
}
a[href^="mailto:"] {
  color: #00bfff; /* világoskék - email */
}
a[href^="mailto:"]:hover {
  color: #66d1ff;
}

/* === GOMB SZEKCIÓ === */
.btn {
  background: #00b894;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}
.btn:hover {
  background: #00a37a;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,184,148,0.4);
}


/* === LÁBLÉC === */
footer {
  background: #0d0d0d;
  color: #bbb;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  animation: fadeIn 1.5s ease;
}
footer a {
  color: #00b894;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.feltetel-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 15px;
  color: #ccc;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  line-height: 1.6;
}
.feltetel-box h3 {
  color: #00b894;
  margin-top: 25px;
  margin-bottom: 10px;
}
.feltetel-box ul {
  list-style: none;
  padding: 0;
}
.feltetel-box ul li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feltetel-box ul li::before {
  content: "•";
  color: #00b894;
  font-weight: bold;
}


/* === ANIMÁCIÓK === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
