﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: black;
  padding: 20px 0;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-link {
  color: #aa0000;
  font-family: "Nosifer", cursive;
  font-size: 1rem;
  text-shadow: 0 0 1px black, 0 0 1px #aa0000;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-link:hover {
  text-decoration: underline;
  color: #ff3333;
  text-shadow: 0 0 2px black, 0 0 3px #ff3333;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-family: "Nosifer", cursive;
  font-size: 2rem;
  color: #aa0000;
  text-shadow: 1px 1px 2px black, 0 0 2px #aa0000;
  margin: 0;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__left img {
  width: 90px;
  height: 90px;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__right img {
  width: 90px;
  height: 90px;
}

.section {
  padding: 20px 0;
  background: linear-gradient(145deg, #120000, #2b0000);
}

.section__wrap {
  display: flex;
  justify-content: space-evenly;
  gap: 33.3px;
}

.section__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  background: linear-gradient(180deg, #0f0f0f, #050505);
  border-radius: 18px;
  overflow: hidden;
  margin: 16px;
  color: #fff;
  font-family: sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section__item__top {
  padding: 16px;
  text-align: left;
  width: 100%;
  display: block;
}

.section__item p {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #bbbbbb;
  letter-spacing: 0.5px;
  text-align: center;
}

.section__item__top h2 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 8px 0;
  color: #e0e0e0;
  text-shadow: 0 0 3px #000, 0 0 6px #333333;
  text-align: center;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.section__item:hover h2 {
  color: #ffffff;
  text-shadow: 0 0 4px #000, 0 0 8px #555555;
}

.section__item__top h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: grey;
  margin: 6px auto 10px auto;
  border-radius: 1px;
}

.section__item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.section__item__bottom__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section__item__bottom__left p {
  font-size: 0.85rem;
  margin: 0;
  color: #bbbbbb;
  line-height: 1.4;
}

.section__item__bottom__right {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link__red,
.link__yellow,
.link__pink {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 4px 6px;
  transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.link__red {
  color: #ff4444;
  text-shadow: 0 0 2px #330000, 0 0 4px #660000;
}

.link__red:hover {
  color: #ff8888;
  text-shadow: 0 0 3px #440000, 0 0 6px #880000;
  box-shadow: 0 0 6px #880000, 0 0 12px #ff3333;
}

.link__yellow {
  color: #ffd700;
  text-shadow: 0 0 2px #666600, 0 0 4px #aaaa33;
}

.link__yellow:hover {
  color: #ffffaa;
  text-shadow: 0 0 3px #888800, 0 0 6px #ffff66;
  box-shadow: 0 0 5px #ffff66, 0 0 10px #aaaa33;
}

.link__pink {
  color: #ff3399;
  text-shadow: 0 0 2px #660033, 0 0 4px #cc6699;
}

.link__pink:hover {
  color: #ff66cc;
  text-shadow: 0 0 3px #880055, 0 0 6px #ff99cc;
  box-shadow: 0 0 5px #ff3399, 0 0 10px #ff66cc;
}

.like__button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
}

.like__button:hover {
  transform: scale(1.3) rotate(-10deg);
  filter: drop-shadow(0 0 8px #ff4444);
  color: #ff6666;
}

.like__button:active {
  animation: like-pop 0.3s ease forwards;
}

@keyframes like-pop {
  0% {
    transform: scale(1.3) rotate(0deg);
    color: #ff6666;
  }

  50% {
    transform: scale(1.5) rotate(15deg);
    color: #ff8888;
  }

  100% {
    transform: scale(1.3) rotate(0deg);
    color: #ff6666;
  }
}

.section__item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

.section__item:hover img {
  filter: brightness(1.1) drop-shadow(0 0 8px #ffffff);
}

.section__item__top img {
  width: 100%;
  height: 350px;
  display: block;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-bottom: 12px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.services {
  padding-top: 15px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #0f0f0f, #050505);
}

.services__title {
  padding-bottom: 20px;
}

.services__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14.88px;
}

.services__item {
  background: linear-gradient(145deg, #120000, #2b0000);
  border: 1px solid #4a0000;
  border-radius: 10px;
  padding-top: 8px;
  width: calc(100% / 3 - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffdddd;
  text-decoration: none;
}

.services__item img {
  width: 69px;
  filter: drop-shadow(0 0 10px #ff1a1a);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.services__item img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px #ff4444);
}

.services__item:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
  box-shadow: 0px 4px 18px 10px rgba(255, 0, 0, 0.4);
  border-color: #ff1a1a;
}

.services__title h2 {
  color: #ff2222;
  text-shadow: 0 0 2px black, 0 0 3px #ff2222;
  text-align: center;
}

.services__item h2 {
  color: #ff5555;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin: 15px 0 10px;
  text-shadow: 0 0 2px #200000, 0 0 4px #800000;
}

.services p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #bbbbbb;
  text-align: center;
}

.services__item span {
  display: inline-block;
  margin: 12px 0 18px;
  padding: 10px 22px;

  background: linear-gradient(145deg, #0b0000, #1a0000);
  border: 2px solid #ff0000;
  border-radius: 8px;

  color: #ff4d4d;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  box-shadow: 0 0 5px #ff0000, 0 0 10px #ff1a1a, 0 0 18px #ff3333;

  cursor: pointer;
  transition: all 0.25s ease;
}

.services__item span:hover {
  transform: scale(1.08);
  background: linear-gradient(145deg, #1a0000, #330000);
  box-shadow: 0 0 10px #ff0000, 0 0 20px #ff1a1a, 0 0 35px #ff4d4d;
}

footer {
  background: black;
  text-align: center;
  padding: 20px 0;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  color: white;
}

.footer__links {
  display: flex;
  gap: 15px;
}

.footer__links a img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s, filter 0.3s;
}

.footer__links a:hover img {
  transform: scale(1.5);
  filter: brightness(1.3);
}

.footer__wrap img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.footer__wrap {
  align-items: center;
}

.contact-info {
  background: #050505;
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.contact-info h3 {
  font-family: "Nosifer", cursive;
  color: #ff3333;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #ff0000;
}

.contact-info p {
  color: #bbbbbb;
  margin-bottom: 10px;
}

.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: #ff4444;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.socials a:hover {
  color: #ff7777;
  text-shadow: 0 0 8px red;
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(145deg, #120000, #2b0000);
}

.contact-form {
  background: linear-gradient(180deg, #0f0f0f, #050505);
  border: 1px solid #550000;
  padding: 40px;
  border-radius: 12px;
  width: 350px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: white;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: #aa0000;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff2222;
  box-shadow: 0 0 10px #ff0000;
  transform: scale(1.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #ff2222;
  box-shadow: 0 0 8px #ff0000;
}

.contact-hero {
  background: linear-gradient(145deg, #120000, #2b0000);
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.contact-hero h2 {
  font-family: "Nosifer", cursive;
  font-size: 2.3rem;
  color: #ff3333;
  margin-bottom: 15px;
  text-shadow: 0 0 8px #ff0000;
}

.contact-hero p {
  max-width: 600px;
  margin: auto;
  color: #bbbbbb;
}