@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

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

body {
  background: #121212;
  color: white;
}

.container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

header {
  background: #1e1e1e;
  padding: 15px 5%;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}
header nav ul li a:hover {
  color: #ff5733;
}

/* HERO */
#hero {
  position: relative;
  background: url("/assets/img/hero.webp") no-repeat center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  /* Затемняющая подложка */
}
#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
#hero .container h1 {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(255, 87, 51, 0.8);
  animation: fadeInUp 1.2s ease-in-out;
}
#hero .container p {
  font-size: 20px;
  margin: 20px 0;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(255, 87, 51, 0.7);
  animation: fadeInUp 1.5s ease-in-out;
}
#hero .container .btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff5733, #c44126);
  color: white;
  font-size: 18px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 87, 51, 0.5);
  transition: 0.3s ease-in-out;
  animation: fadeInUp 1.8s ease-in-out;
  border: 2px solid rgba(255, 87, 51, 0.8);
}
#hero .container .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 87, 51, 0.7);
  background: linear-gradient(135deg, #c44126, #ff5733);
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ABOUT */
#about {
  background: #121212;
  padding: 100px 0;
}
#about .about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  #about .about-content {
    flex-direction: column;
    text-align: center;
  }
}
#about .about-text {
  flex: 1;
  max-width: 600px;
}
#about .about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#about .about-text h2 i {
  color: #ff5733;
}
#about .about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ddd;
}
#about .about-text ul {
  list-style: none;
  margin-top: 20px;
}
#about .about-text ul li {
  font-size: 18px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: bold;
}
#about .about-text ul li i {
  color: #ff5733;
  font-size: 22px;
}
#about .about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
#about .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* FEATURES */
#features {
  background: #1e1e1e;
  padding: 100px 0;
  text-align: center;
}
#features h2 {
  font-size: 36px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#features h2 i {
  color: #ff5733;
}
#features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #features .features-grid {
    grid-template-columns: 1fr;
  }
}
#features .feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out;
}
#features .feature-item:hover {
  transform: translateY(-5px);
}
#features .feature-item i {
  font-size: 40px;
  color: #ff5733;
  margin-bottom: 15px;
}
#features .feature-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}
#features .feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

/* GALLERY */
#gallery {
  background: #1e1e1e;
  padding: 100px 0;
  text-align: center;
}
#gallery h2 {
  font-size: 36px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#gallery h2 i {
  color: #ff5733;
}
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
#gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
  transition: transform 0.3s ease-in-out;
}
#gallery .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 87, 51, 0.6);
}
#gallery .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}
#gallery .gallery-item img:hover {
  transform: scale(1.1);
}

/* REVIEWS */
#reviews {
  background: #1e1e1e;
  padding: 100px 0;
  text-align: center;
}
#reviews h2 {
  font-size: 36px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#reviews h2 i {
  color: #ff5733;
}
#reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #reviews .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #reviews .reviews-grid {
    grid-template-columns: 1fr;
  }
}
#reviews .review-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out;
}
#reviews .review-item:hover {
  transform: translateY(-5px);
}
#reviews .review-content {
  font-size: 18px;
  font-style: italic;
  color: #ddd;
  margin-bottom: 15px;
}
#reviews .review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  color: #fff;
}
#reviews .review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #ff5733;
}

/* FOOTER */
footer {
  background: #121212;
  padding: 20px 5%;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
footer .footer-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
footer .footer-link:hover {
  color: #ff5733;
}

#privacy {
  background: #121212;
  padding: 100px 5%;
  color: white;
}
#privacy .container {
  max-width: 800px;
  margin: 0 auto;
}
#privacy h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #ff5733;
}
#privacy h2 {
  font-size: 28px;
  margin-top: 30px;
  color: #ff5733;
}
#privacy p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}
#privacy ul {
  margin-top: 10px;
  padding-left: 20px;
}
#privacy ul li {
  font-size: 18px;
  margin-bottom: 10px;
  list-style-type: disc;
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1c1c28;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 1000;
  display: none;
}
.cookie-consent__text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: center;
}
.cookie-consent__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cookie-consent__actions .cookie-consent__btn {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #29b6f6;
  border-radius: 5px;
  background-color: transparent;
  color: #29b6f6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent__actions .cookie-consent__btn:hover {
  background-color: #29b6f6;
  color: #ffffff;
}
.cookie-consent__actions .accept {
  border-color: #00e676;
  color: #00e676;
}
.cookie-consent__actions .accept:hover {
  background-color: #00e676;
}
.cookie-consent__actions .decline {
  border-color: #f44336;
  color: #f44336;
}
.cookie-consent__actions .decline:hover {
  background-color: #f44336;
}/*# sourceMappingURL=style.css.map */