/* ===== MB RACING PRO DESIGN ===== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: white;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 60px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(225,6,0,0.5);
  position: relative;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #e10600;
  letter-spacing: 2px;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #e10600;
}

/* HERO */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hero h1 {
  font-size: 72px;
  color: #e10600;
  text-shadow: 0 0 20px rgba(225,6,0,0.5);
}

.hero p {
  margin-top: 10px;
  color: #aaa;
  font-size: 18px;
}

.btn {
  margin-top: 25px;
  padding: 14px 30px;
  background: linear-gradient(45deg, #e10600, #8b0000);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(225,6,0,0.3);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(225,6,0,0.6);

}

/* SECTIONS */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #e10600;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  width: 260px;
  padding: 25px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(225,6,0,0.2);
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #e10600;
  box-shadow: 0 0 25px rgba(225,6,0,0.3);
}

.card h3 {
  color: #e10600;
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #666;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 60px;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 42px;
  }
}
/* ===== FORM FIX / PRO INPUT DESIGN ===== */

input, textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  margin-bottom: 18px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(225,6,0,0.3);
  border-radius: 8px;

  color: white;
  font-size: 14px;

  outline: none;
  transition: 0.3s;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

input:focus,
textarea:focus {
  border-color: #e10600;
  box-shadow: 0 0 12px rgba(225,6,0,0.4);
  background: rgba(255,255,255,0.08);
}

/* label szebbé tétele */
label {
  display: block;
  text-align: left;
  color: #ccc;
  font-size: 14px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  height: 90px;
  width: auto;

  filter: none;
  transition: 0.3s;
}

.header-logo:hover {
  filter: drop-shadow(0 0 18px rgba(225,6,0,0.8));
}

.header-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(225,6,0,0.9));
}
html {
  scroll-behavior: smooth;
}
nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #e10600;
}
#form-status {
  margin-top: 15px;
  color: #e10600;
  font-weight: 500;
}
.contact-tabs {
  margin-bottom: 20px;
}

.contact-tabs button {
  margin: 5px;
  padding: 10px 20px;
  background: #111;
  border: 1px solid #e10600;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.contact-tabs button:hover {
  background: #e10600;
}
.hero-btn {
  margin-top: 60px;
textarea {
  resize: none;
}
