/*
Theme Name: Autoasia Premium
Theme URI: https://autoasia-logistic.ru
Author: Roman
Description: Custom theme
Version: 1.0
*/


body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #0b0c10;
  color: #fff;
}

/* Шапка */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #0073e6;
  letter-spacing: 0.5px;
}

/* Меню */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #0073e6;
}

/* Контакты */
.header-contacts a {
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

.header-contacts a:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.btn-wa { background: #25D366; }
.btn-tg { background: #0088cc; }
.btn-phone { background: #0073e6; }

/* Главный блок */
main {
  background:
    linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)),
    url('https://images.unsplash.com/photo-1502877338535-766e1452684a') center/cover no-repeat;
  color: #fff;
  padding: 160px 20px 80px;
  text-align: center;
  animation: fadeIn 1s ease forwards;
}

h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  color: #ddd;
}

/* Форма */
form {
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 60px auto;
  text-align: center;
  color: #222;
}

form h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

form p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #0073e6;
  box-shadow: 0 0 8px rgba(0,115,230,0.2);
  outline: none;
}

form button {
  background: #ff6600;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background: #e05500;
  transform: translateY(-2px);
}

/* Футер */
footer {
  background: #1f1f1f;
  color: #fff;
  border-top: 2px solid #0073e6;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Анимация */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
