/* Fonts & Colors */
:root {
  --black: #0a0a0a;
  --yellow: #ffd500;
  --green: #00b050;
  --white: #fff;
  --gray: #ccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 50px;
  transition: all 3s ease-out;

}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  margin-bottom: 20px;
}

.hero-buttons .btn,
.hero-buttons .btn-outline {
  margin-right: 15px;
}

.hero-image img {
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Sections */
section {
  padding: 60px 50px;
  text-align: center;
}
article > section{
  text-align: left;
}
h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--yellow);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(255, 213, 0, 0.4);
}

.card .price {
  display: block;
  margin: 15px 0;
  font-size: 1.5rem;
  color: var(--green);
}

/* Footer */
.footer {
  background: #111;
  text-align: center;
  padding: 20px;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image img {
    margin-top: 20px;
    max-width: 90%;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

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


/* feedBackForm */
#feedbackForm input,
  #feedbackForm textarea {
      background-color: var(--green); /* светло-голубой фон */
      color: #000000;           /* черный текст */
      border: 1px solid black;   /* рамка */
      padding: 10px;
      border-radius: 5px;
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 10px;
      font-size: 16px;
  }

  #feedbackForm button {
      background-color: var(--green); /* зеленая кнопка */
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
  }

  #feedbackForm button:hover {
      background-color: #45a049; /* немного темнее при наведении */
  }