@import url('https://fonts.googleapis.com/css2?family=Kings&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kurale&display=swap');
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff1eb, #ace0f9);
  color: #ff9a9e;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Sedgwick Ave", cursive;
  font-weight: 400;
  font-style: normal;
}
.container {
  font-family: "Sedgwick Ave", cursive;
  font-weight: 400;
  font-style: normal;

}


.site-header {
  background: linear-gradient(135deg, #000000, #ce0000);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: slideInDown 1s ease-out;
}
.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo img {
  height: 60px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.site-header .logo img:hover {
  transform: rotate(5deg);
}
.site-header h1 {
  font-size: 2.2em;
  color: #ffffff;
}
.site-nav {
  animation: fadeIn 1s ease-out;
}
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-nav ul li a:hover {
  color: #490066;
  transform: translateY(-3px);
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(255, 255, 255);
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  animation: fadeInUp 1s ease-out;
}
.cookies-section p {
  font-size: 0.95em;
  color: #333;
}
.cookies-button {
  background: linear-gradient(45deg, #000000, #ff0000);
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cookies-button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #e20202, #000000);
}

main {
  animation: fadeIn 1s ease-out;
}

.site-footer {
  background: linear-gradient(135deg, #000000, #ff0000);
  color: #fff;
  padding: 40px 20px;
  animation: slideInUp 1s ease-out;
}
.footer-socials {
  text-align: center;
  margin-bottom: 20px;
}
.footer-socials a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.footer-socials a img {
  max-width: 30px;
  max-height: 30px;
  transition: transform 0.3s ease;
}
.footer-socials a:hover img {
  transform: scale(1.1);
}
.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}
.footer-logo,
.footer-contact,
.footer-hours {
  text-align: center;
}
.footer-logo img {
  height: 50px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.footer-logo img:hover {
  transform: rotate(-5deg);
}
.footer-logo p {
  font-size: 1.1em;
  font-weight: 700;
}
.footer-contact h3,
.footer-hours h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
  color: #ffeb3b;
}
.footer-contact p,
.footer-hours p {
  font-size: 1em;
  margin-bottom: 5px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #ffeb3b;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9em;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0072ff;
  color: #fff;
  font-size: 2em;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.scroll-to-top:hover {
  background: #00c6ff;
  transform: scale(1.1);
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero-slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slideAnimation 15s infinite;
}
.hero-slide {
  width: 100%;
  flex-shrink: 0;
  background-image: url('assets/images/slider1.jpg');
  background-size: 100% auto;  /* Растягиваем только по ширине, высота автоматически подстроится */
  background-position: center center;  /* Центрируем изображение по горизонтали и вертикали */
  position: relative;
}
  

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeInOverlay 2s ease-in-out;
}
.hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.hero-logo:hover {
  transform: scale(1.1);
}
@keyframes slideAnimation {
  0% {
    transform: translateX(0%);
  }
  33.33% {
    transform: translateX(0%);
  }
  38% {
    transform: translateX(-100%);
  }
  71.33% {
    transform: translateX(-100%);
  }
  76% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero-logo {
    width: 80px;
  }
  .hero-overlay h2 {
    font-size: 1.8em;
  }
  .hero-overlay p {
    font-size: 1em;
  }
}

.about-us {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9, #e9ecef);
  animation: fadeIn 1.2s ease-out;
  text-align: center;
}
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 500px;
  text-align: left;
}
.about-text h2 {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}
.about-image {
  flex: 1 1 400px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: slideIn 1s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
  .about-text h2 {
    font-size: 2em;
  }
}

.services-list {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfbfb, #e2f0f9);
  animation: fadeIn 1s ease-out;
  text-align: center;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.services-container h2 {
  font-size: 2.8em;
  color: #f70a0a;
  margin-bottom: 30px;
}

.services-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  font-size: 1.8em;
  color: #ff0303;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}

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

@media (max-width: 768px) {
  .services-container h2 {
    font-size: 2.2em;
  }
  .service-item h3 {
    font-size: 1.6em;
  }
  .service-item p {
    font-size: 1em;
  }
}

.advantages {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e6f7ff, #f0fff0);
  animation: fadeIn 1.2s ease-out;
}
.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.advantages-container h2 {
  font-size: 2.8em;
  color: #f00000;
  margin-bottom: 40px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.advantage-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.advantage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.advantage-card:hover img {
  transform: scale(1.05);
}
.advantage-card h3 {
  font-size: 1.6em;
  margin: 15px;
  color: #ff0000;
}
.advantage-card p {
  font-family: "Kings", cursive;
  font-weight: 400;
  font-style: normal;
  color: #f30707bb;
  font-size: 20px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .advantages-container h2 {
    font-size: 2.2em;
  }
  .advantage-card img {
    height: 180px;
  }
  .advantage-card h3 {
    font-size: 1.4em;
  }
  .advantage-card p {
    font-size: 1em;
  }
}

.pricing {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfbfb, #e2f0f9);
  animation: fadeIn 1s ease-out;
  text-align: center;
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.pricing-container h2 {
  font-size: 2.8em;
  color: #ff0000;
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.pricing-card {
  background: linear-gradient(135deg, #ff0101, #000000fb);
  border-radius: 15px;
  padding: 30px 20px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.pricing-card h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  font-size: 1.1em;
}
.features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.features li:last-child {
  border-bottom: none;
}
.btn {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
  border: none;
  padding: 12px 25px;
  font-size: 1.1em;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #00c6ff, #0072ff);
}
.pricing-card.featured {
  background: linear-gradient(135deg, #000000, #e21717);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .pricing-container h2 {
    font-size: 2.2em;
  }
  .pricing-card h3 {
    font-size: 1.6em;
  }
  .pricing-card .price {
    font-size: 2em;
  }
  .features li {
    font-size: 1em;
  }
}

.company-info {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9, #f0f8ff);
  animation: fadeIn 1s ease-out;
}
.company-info .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.company-info h2 {
  font-size: 2.8em;
  color: #fa0000;
  margin-bottom: 40px;
}
.company-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.company-columns .column {
  flex: 1 1 400px;
  text-align: left;
}
.company-columns .column p {
  font-family: "Kings", cursive;
  font-weight: 400;
  font-style: normal;
  color: #130000;
  font-size:30px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .company-info h2 {
    font-size: 2.2em;
  }
  .company-columns {
    flex-direction: column;
    gap: 20px;
  }
}

.contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
  animation: fadeIn 1.2s ease-out;
  text-align: center;
}
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.contact-form-container h2 {
  font-size: 2.8em;
  color: #ff0000;
  margin-bottom: 10px;
}
.contact-form-container p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form-container input {
  padding: 15px;
  font-size: 1.1em;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  transition: border 0.3s ease;
}
.contact-form-container input:focus {
  border-color: #0072ff;
  outline: none;
}
.contact-form-container button {
  padding: 15px;
  font-size: 1.1em;
  background: linear-gradient(45deg, #000000, #ff0000);
  border: none;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-form-container button:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #005ecb, #00a4cc);
}
#successMessage {
  display: none;
  text-align: center;
  padding: 20px;
  font-size: 1.6em;
  line-height: 1.4;
  color: #0072ff;
  animation: fadeIn 1s ease-out;
  margin-top: 30px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
  .contact-form-container h2 {
    font-size: 2.2em;
  }
  .contact-form-container input,
  .contact-form-container button {
    font-size: 1em;
    padding: 12px;
  }
  #successMessage {
    font-size: 1.4em;
  }
}

.about-us-extended {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f9ff, #e6f2ff);
  animation: fadeIn 1s ease-out;
}
.about-us-extended .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.about-us-extended h2 {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 40px;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}
.text-block {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight:weight;
  font-style: normal;
}

.text-block p {
  margin-bottom: 20px;
}
.gallery {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .text-block {
    text-align: justify;
  }
}

.detailed-services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fffaf0, #f0fff0);
  animation: fadeIn 1.2s ease-out;
  text-align: center;
}
.detailed-services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.detailed-services-section h2 {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 40px;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.service-card h3 {
  font-size: 1.8em;
  color: #ff0000;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 15px;
}
.service-card ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}
.service-card ul li {
  font-size: 1em;
  margin-bottom: 8px;
  color: #555;
}
.service-card blockquote {
  font-size: 1em;
  font-style: italic;
  color: #888;
  border-left: 4px solid #0072ff;
  padding-left: 10px;
  margin: 20px 0 0;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .detailed-services-section h2 {
    font-size: 2.2em;
  }
  .service-card h3 {
    font-size: 1.6em;
  }
  .service-card p {
    font-size: 1em;
  }
}

.title_background {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ff6f61, #ff9a9e);
  text-align: center;
  animation: slideDown 1s ease-out;
}
.title_background .title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.text_background {
  padding: 40px 20px;
  background: #f9f9f9;
  animation: fadeIn 1.5s ease-out;
}
.text_background .text {
  font-size: 1.2em;
  line-height: 1.6;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 768px) {
  .title_background .title {
    font-size: 2em;
  }
  .text_background .text {
    font-size: 1em;
  }
}
