/* Защо да избереш нас */
.why-us {
  padding: 60px 30px;
  text-align: center;
  background-color: #fff2f2;
}
.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.reason {
  background: #ffeaea;
  padding: 20px;
  border-radius: 15px;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
}

/* Видове карикатури */
.types-preview {
  padding: 60px 30px;
  text-align: center;
}
.types {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.type {
  width: 250px;
}
.type img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.type h3 {
  margin-top: 10px;
  color: #b30000;
}

/* Отзиви */
.reviews {
  padding: 60px 30px;
  background-color: #fff0f5;
  text-align: center;
}
.review-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.review {
  background: #ffe6ec;
  padding: 15px;
  border-radius: 12px;
  font-style: italic;
}

/* ЧЗВ */
.faq-preview {
  padding: 60px 30px;
  background: #fefefe;
}
.faq-preview ul {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.faq-preview li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: #ffcccb;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}
.footer a {
  color: #800000;
  font-weight: bold;
}
/* Скрол анимации */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
section.fade-in {
  opacity: 1;
  transform: translateY(0);
}
/* Заглавна секция */
.page-header {
  padding: 60px 30px;
  background-color: #fff5f5;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  color: #cc0000;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1.2rem;
  color: #555;
}

/* Секция с видове карикатури */
.cartoon-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}
.cartoon-type {
  background: #fff1f1;
  padding: 20px;
  border-radius: 15px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cartoon-type img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cartoon-type h2 {
  margin-top: 15px;
  color: #b30000;
}
.cartoon-type p {
  font-size: 1rem;
  color: #333;
}
.cartoon-type:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.order-page {
  padding: 60px 30px;
  background-color: #fff5f5;
  max-width: 800px;
  margin: auto;
}

.order-page h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #b30000;
  margin-bottom: 30px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-form label {
  font-weight: bold;
  color: #333;
}

.order-form input,
.order-form textarea,
.order-form select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.order-form input[type="file"] {
  border: none;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-page {
  padding: 60px 30px;
  text-align: center;
  background-color: #fff9f9;
}

.pricing-page h1 {
  font-size: 2.5rem;
  color: #b30000;
  margin-bottom: 15px;
}

.pricing-info {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: #fff0f0;
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card h2 {
  color: #cc0000;
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 1rem;
  margin: 5px 0;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e60000;
}
.gallery-section {
  padding: 60px 30px;
  background-color: #fff6f6;
  text-align: center;
}

.gallery-section h1 {
  font-size: 2.4rem;
  color: #b30000;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
.about-section {
  padding: 60px 30px;
  background-color: #fffaf5;
  text-align: center;
}

.about-section h1 {
  font-size: 2.5rem;
  color: #cc0000;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 400px;
  text-align: left;
}

.about-text h2 {
  color: #990000;
  margin-top: 20px;
}

.about-text ul {
  list-style-type: square;
  padding-left: 20px;
}

.about-text p,
.about-text li {
  font-size: 1rem;
  color: #333;
}

.about-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact-section, .checkout-section {
  padding: 60px 30px;
  background-color: #fef9f2;
  text-align: center;
}

.contact-form,
.checkout-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.checkout-form input,
.contact-form textarea,
.checkout-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button,
.checkout-form button {
  padding: 12px;
  font-size: 1.1rem;
  background-color: #cc0000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover,
.checkout-form button:hover {
  background-color: #a80000;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdf6f0;
  color: #333;
  line-height: 1.6;
}

/* Header */
.main-header {
  background: linear-gradient(to right, #ff8a00, #e52e71);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.main-header .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.main-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-header nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.main-header nav ul li a:hover,
.main-header nav ul li a.active {
  background: rgba(255,255,255,0.2);
}

/* Sections */
section {
  padding: 60px 30px;
  text-align: center;
}

section h1 {
  font-size: 2.5rem;
  color: #e52e71;
  margin-bottom: 20px;
}

section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Forms */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea,
form select {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #e52e71;
}

form button {
  background: #e52e71;
  color: white;
  font-size: 1.1rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #cc1c62;
}

/* Footer */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 0.95rem;
}

.footer a {
  color: #ff8a00;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Buttons general */
.btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1rem;
  background: #ff8a00;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e67300;
}

/* Responsive */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-header nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  section h1 {
    font-size: 2rem;
  }

  form {
    padding: 0 15px;
  }
}

