.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
}
.logo {
  position: absolute;
  top: 20px;
  left: 40px;
 font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span,
.logo i {
  color: #faf604;
}
.logo i {
  transition: transform 0.4s ease;
}

.logo:hover i {
  transform: rotate(90deg);
}
.welcome{
    font-size: 50px;
    font-weight: 100px;
    justify-content: center;
    align-items: center;
}
.subtitle, .welcome{
margin: 5px;
}
button{
    margin-top: 30px;
}
.subtitle{
    font-size: 30px;
    text-align: center;
    text-transform: inherit;
}
.hero button{
  align-self: flex-start;
}
button{
     display: inline-block;
  position: relative;           
  z-index: 10;                  
  background-color: #fbff00;
  color: rgb(0, 0, 0);
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.servis h2 {
    text-align:center;
    font-size: 25px;
    font-weight: 500;
    color: #f7f7f7;
}
.gallery section {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  justify-content: center;
}
.card{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.card{
border: 3px solid #d1d1d1;              
  border-radius: 10px;                    
  padding: 6px;                           
  background: linear-gradient(145deg, #f7f7f7, #e0e0e0); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.35); 
  transition: 0.3s ease;
}
.card:hover{
    border-color: #ffcc00;                  
  box-shadow: 0 0 12px #ffcc00;           
  transform: scale(1.03); 
}
.ction h3{
 font-weight: 200;
 font-size: 28px;
 color: rgb(255, 255, 255);
}
.ction p{
    font-weight: 400;
    font-size: 20px;
    color: rgb(255, 255, 255);
}
.mechanic h3{
    font-weight: 300;
    font-size: 30px;
    color: #ffffff;
}
  .mechanic li{
font-weight: 100;
font-size: 18px;
color: #ffffff;
  }
  .rabota h3{
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    color: #d1d1d1;
  }
  .rabota ul{
     display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  justify-content: center;
  justify-content: center;
  }
  .rabota img{
border: 3px solid #000000;              /* светло‑серая рамка */
  border-radius: 10px;                    /* мягкие углы */
  padding: 6px;                           /* пространство внутри рамки */
  background: linear-gradient(145deg, #fffcfc, #706f6f); /* металлический эффект */
  box-shadow: 0 4px 12px rgb(248, 248, 248); /* объёмная тень */
  transition: 0.3s ease;
  }
  /* БАЗА */
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #000;
  background:
    radial-gradient(1200px 600px at 20% -10%, #444, transparent 60%),
    radial-gradient(1000px 500px at 80% 110%, #3a3a3a, transparent 60%),
    linear-gradient(to bottom, #2b2b2b, #1f1f1f);
  position: relative;
  overflow-x: hidden;
}

/* ГЛАВНЫЙ ПЛАВАЮЩИЙ БЛИК */
body::before {
  content: "";
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(
      500px 500px at 30% 40%,
      rgba(255, 200, 0, 0.35),
      transparent 70%
    );
  pointer-events: none;
  mix-blend-mode: screen;
  animation: lightMove 22s ease-in-out infinite;
}

/* ВТОРОЙ МЯГКИЙ БЛИК (ГЛУБИНА) */
body::after {
  content: "";
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(
      700px 700px at 70% 60%,
      rgba(255, 180, 0, 0.18),
      transparent 75%
    );
  pointer-events: none;
  mix-blend-mode: screen;
  animation: lightMove2 30s ease-in-out infinite;
}

/* АНИМАЦИИ */
@keyframes lightMove {
  0%   { transform: translate(0, 0); }
  30%  { transform: translate(15vw, 10vh); }
  60%  { transform: translate(-10vw, 20vh); }
  100% { transform: translate(0, 0); }
}

@keyframes lightMove2 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-20vw, -10vh); }
  100% { transform: translate(0, 0); }
}
.time{
  color: #d1d1d1;
}
ul li a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

ul li a:hover {
  color: #ffffff; /* цвет при наведении */
}


