@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("../fonts/SignikaNegative-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: bold;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  display: flex;
  align-items: center;
  position: relative;
  background: #111;
  justify-content: space-around;
  padding: 30px 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.header__logo {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
}

.header__logo-item {
  width: 50px;
  height: 50px;
  z-index: 2;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  text-transform: uppercase;
  gap: 32px;
  font-size: 16px;
  flex-wrap: wrap;
}

.header__nav__item {
  color: #fff;
  position: relative;
  font-weight: bold;
  z-index: 2;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.header__nav__item:hover {
  color: #fff;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .header__nav__item {
    border-bottom: 1px solid #fff;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 45%;
  }
}

.contact-link {
  color: #fff;
  position: relative;
  font-weight: bold;
  z-index: 2;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  text-transform: lowercase;
}
.contact-link:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .contact-link {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
  }
}
@media (max-width: 480px) {
  .contact-link {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .contact-link {
    font-size: 12px;
  }
}

.header__toggle {
  display: none;
  position: absolute;
  top: 37px;
  right: 40px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}
.header__toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}
.header__toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.header__toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 1000px) {
  .header__toggle {
    display: flex;
  }
}
@media (max-width: 525px) {
  .header__toggle {
    right: 30px;
  }
}
@media (max-width: 437px) {
  .header__toggle {
    right: 15px;
  }
}
@media (max-width: 340px) {
  .header__toggle {
    right: 10px;
  }
}

@media (max-width: 1000px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
  .header__nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .header__nav.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: 80px;
    left: 0;
  }
}
@media (max-width: 480px) {
  .header__logo {
    font-size: 26px;
    text-align: center;
  }
  .header__nav {
    gap: 10px;
  }
  .header__logo-item {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 360px) {
  .header__logo {
    font-size: 20px;
    text-align: center;
  }
  .header__nav {
    gap: 8px;
    font-size: 14px;
  }
  .header__logo-item {
    width: 40px;
    height: 40px;
  }
}
.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid #f39c12;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center;
}
.footer__content .footer__contact,
.footer__content .footer__nav,
.footer__content .footer__navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
  min-width: 220px;
}
.footer__content h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.footer__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}
.footer__content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__content a:hover {
  color: #f39c12;
  transform: scale(1.05);
}
.footer__content .footer__contact a {
  display: block;
  margin-top: 10px;
}
.footer__content .footer__nav ul,
.footer__content .footer__navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__bottom {
  margin-top: 20px;
  font-size: 1rem;
  padding-top: 15px;
  border-top: 2px solid #f39c12;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer__contact,
  .footer .footer__nav,
  .footer .footer__navigation {
    text-align: center;
    margin-top: 20px;
  }
  .footer .footer__nav ul,
  .footer .footer__navigation ul {
    align-items: center;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9; /* Більш світлий фон */
  text-align: left;
  height: 800px;
  color: #333;
  overflow: hidden;
}
.hero .hero-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: 1600px;
  width: 100%;
  padding: 0 50px;
  z-index: 2;
  gap: 50px;
}
.hero .hero-content {
  flex: 1;
  z-index: 2;
}
.hero .hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  font-family: "BebasNeue", sans-serif;
  color: #2c3e50; /* Глибший темний колір для заголовку */
  margin-bottom: 20px;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}
.hero .hero-content h1 .highlight {
  position: relative;
  transition: color 0.4s ease, transform 0.3s ease;
  font-size: 1.7rem;
}
.hero .hero-content h1 .highlight:hover {
  color: #f39c12; /* Яскравий акцент для підсвічування */
  transform: translateY(-5px);
}
.hero .hero-content h1:hover {
  color: #f39c12; /* Теплий відтінок для заголовку */
  transform: translateY(-5px);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.hero .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #444; /* Темніший текст */
  line-height: 1.6;
}
.hero .hero-content .cta-button {
  display: inline-block;
  padding: 18px 32px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #2c3e50, #f39c12); /* Новий градієнт */
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  background-size: 200% 200%;
  background-position: left center;
}
.hero .hero-content .cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(46, 60, 80, 0.6);
  background-position: right center;
}
.hero .hero-content .cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.6s ease;
  z-index: -1;
}
.hero .hero-content .cta-button:hover::before {
  transform: scale(1.5);
  opacity: 0.3;
}
.hero .hero-content .cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.hero .hero-image {
  flex: 1;
  z-index: 2;
  overflow: hidden; /* Щоб не було зайвих елементів за межами зображення */
}
.hero .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20% 50% 30% 70%/40% 60% 50% 50%; /* Ассиметричні, цікаві краї */
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-radius 0.6s ease;
}
.hero .hero-image img:hover {
  border-radius: 20% 50% 40% 70%/50% 70% 60% 40%; /* Зміна форми при наведенні */
}
@media (max-width: 1200px) {
  .hero {
    height: auto;
  }
  .hero .hero-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding: 40px 20px;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content p {
    font-size: 1.1rem;
  }
  .hero .hero-content .cta-button {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  .hero .hero-image {
    width: 100%;
  }
  .hero .hero-image img {
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero .hero-content p {
    font-size: 1rem;
  }
  .hero .hero-content .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 20px;
  background: #f1f1f1; /* Свіжіший фон для контрасту */
}
@media (max-width: 768px) {
  .about-us {
    padding: 60px 20px;
  }
}
.about-us .about-us-content {
  display: flex;
  align-items: center;
  max-width: 1600px;
  width: 100%;
  padding: 0 40px;
  gap: 40px;
  z-index: 2;
  flex-direction: row-reverse;
  transition: all 0.4s ease;
}
@media (max-width: 1200px) {
  .about-us .about-us-content {
    flex-direction: column;
  }
}
.about-us .about-us-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .about-us-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .about-us-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.about-us .about-us-text {
  flex: 1;
  color: #333;
}
.about-us .about-us-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c3e50;
  text-transform: uppercase;
  font-family: "BebasNeue";
  line-height: 1.2;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: color 0.4s ease, transform 0.3s ease;
}
.about-us .about-us-text h2:hover {
  color: #f39c12;
  transform: translateY(-5px);
}
@media (max-width: 1200px) {
  .about-us .about-us-text h2 {
    font-size: 2rem;
    padding: 0;
  }
}
.about-us .about-us-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  transition: color 0.4s ease;
}
.about-us .about-us-text p:hover {
  color: #f39c12;
}
@media (max-width: 768px) {
  .about-us .about-us-text p {
    font-size: 1rem;
    padding-left: 10px;
  }
}
.about-us .about-us-text .about-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.about-us .about-us-text .about-features .feature-card {
  flex: 1 1 30%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.2), rgba(243, 156, 18, 0.2));
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  position: relative;
}
.about-us .about-us-text .about-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.about-us .about-us-text .about-features .feature-card i {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}
.about-us .about-us-text .about-features .feature-card i:hover {
  color: #f39c12;
}
.about-us .about-us-text .about-features .feature-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-align: left;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.about-us .about-us-text .about-features .feature-card h3:hover {
  color: #f39c12;
}
.about-us .about-us-text .about-features .feature-card p {
  margin-bottom: 0;
  font-size: 1rem;
  text-align: left;
  color: #777;
}
@media (max-width: 768px) {
  .about-us .about-us-text .about-features .feature-card p {
    font-size: 1rem;
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .about-us .about-us-content {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
  .about-us .about-us-image img {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-us .about-us-text {
    padding: 0;
  }
  .about-us .about-us-text .about-features {
    flex-direction: column;
    align-items: center;
  }
}

.casino-event {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .casino-event {
    padding: 6s0px 20px;
  }
}
.casino-event__title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #111;
}
@media (max-width: 768px) {
  .casino-event__title {
    font-size: 2rem;
  }
}
.casino-event__carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.casino-event__cards-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  transition: transform 0.6s ease;
}
@media (max-width: 1000px) {
  .casino-event__cards-wrapper {
    flex-wrap: nowrap;
    gap: 0;
    width: 400%;
  }
}
.casino-event .casino-card {
  flex: 0 0 23%;
  max-width: 23%;
  background: #1b1b1b;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.casino-event .casino-card img {
  width: 100%;
  height: 240px;
  border-radius: 0 0 16px 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.casino-event .casino-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #f39c12;
}
.casino-event .casino-card p {
  font-size: 1rem;
  padding: 20px;
  color: #ccc;
}
@media (max-width: 1000px) {
  .casino-event .casino-card {
    flex: 0 0 100%;
    max-width: 25%;
  }
}
.casino-event__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.casino-event__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  transition: background 0.3s ease;
}
.casino-event__dots .dot.active {
  background: #f39c12;
}
@media (max-width: 1000px) {
  .casino-event__dots {
    display: flex;
  }
}

.casinoevents__games {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}
.casinoevents__games-title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #111;
}
@media (max-width: 768px) {
  .casinoevents__games-title {
    font-size: 2rem;
  }
}
.casinoevents__games-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.casinoevents__games-cards-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  transition: transform 0.6s ease;
}
@media (max-width: 1000px) {
  .casinoevents__games-cards-wrapper {
    flex-wrap: nowrap;
    gap: 0;
    width: 400%;
  }
}
.casinoevents__games .casino-card {
  flex: 0 0 23%;
  max-width: 23%;
  background: #1b1b1b;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.casinoevents__games .casino-card img {
  width: 100%;
  height: 240px;
  border-radius: 0 0 16px 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.casinoevents__games .casino-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #f39c12;
}
.casinoevents__games .casino-card p {
  font-size: 1rem;
  padding: 20px;
  color: #ccc;
}
@media (max-width: 1000px) {
  .casinoevents__games .casino-card {
    flex: 0 0 100%;
    max-width: 25%;
  }
}
.casinoevents__games-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.casinoevents__games-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  transition: background 0.3s ease;
}
.casinoevents__games-dots .dot.active {
  background: #f39c12;
}
@media (max-width: 1000px) {
  .casinoevents__games-dots {
    display: flex;
  }
}

.privacy-policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px;
  background: #fff;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1284px) {
  .privacy-policy {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 5px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 5px;
    width: auto;
  }
}
.privacy-policy__title {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1.5rem;
  font-family: "BebasNeue";
  font-weight: bold;
  text-align: left;
  width: 100%;
}
.privacy-policy__intro {
  font-size: 1.125rem;
  color: #444;
  max-width: 100%;
  margin-bottom: 2rem;
  text-align: left;
}
.privacy-policy__subheading {
  font-size: 1.5rem;
  color: #e26d5c;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  border-left: 4px solid #e26d5c;
  padding-left: 12px;
  width: 100%;
  text-align: left;
}
.privacy-policy__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 100%;
  margin-bottom: 1rem;
  align-self: flex-start;
  text-align: left;
}
.privacy-policy__strong {
  font-weight: bold;
  color: #000;
}
.privacy-policy ul {
  padding-left: 5px;
  margin-bottom: 2rem;
  max-width: 800px;
  width: 100%;
  align-self: flex-start;
  text-align: left;
}
.privacy-policy ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.5rem;
}
.privacy-policy ul li::marker {
  color: #e26d5c;
}
.privacy-policy a {
  color: #e26d5c;
  text-decoration: underline;
}
.privacy-policy a:hover {
  text-decoration: none;
  color: #e26d5c;
}

.contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 40px 20px;
  }
}
.contact-form form {
  width: 80%;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
  font-size: 14px;
}
.contact-form__field input,
.contact-form__field textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(56, 74, 94, 0.15); /* Замінили колір */
  transition: border-color 0.3s;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #e67e22; /* Замінили на помаранчевий */
  outline: none;
}
.contact-form__field textarea {
  resize: none;
}
.contact-form__field.full {
  grid-column: span 3;
}
@media (max-width: 1200px) {
  .contact-form__field.full {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .contact-form__field.full {
    grid-column: span 1;
  }
}
.contact-form__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #2c3e50, #f39c12); /* Новий градієнт */
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  background-size: 200% 200%;
  background-position: left center;
}
.contact-form__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(46, 60, 80, 0.6);
  background-position: right center;
}
.contact-form__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.6s ease;
  z-index: -1;
}
.contact-form__btn:hover::before {
  transform: scale(1.5);
  opacity: 0.3;
}
.contact-form__btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contact-form__btn {
    width: 100%;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup__content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(226, 109, 92, 0.3);
  animation: fadeIn 0.4s ease;
}
.popup__title {
  font-size: 24px;
  color: #f39c12;
  margin-bottom: 10px;
}
.popup__text {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.popup__close {
  display: inline-block;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #f39c12, #ff7b6b);
  border-radius: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(226, 109, 92, 0.25);
}
.popup__close:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(226, 109, 92, 0.5);
}
.popup__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.6s ease;
  opacity: 0.4;
  z-index: -1;
}
.popup__close:hover::before {
  transform: scale(1.4);
  opacity: 0.2;
}
.popup__close:active {
  transform: scale(0.98);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.examples-section {
  background-color: #fafafa;
  padding: 100px 40px;
  color: #333;
}
@media (max-width: 768px) {
  .examples-section {
    padding: 80px 20px;
  }
}
.examples-section .examples-text {
  max-width: 1600px;
  margin: 0 auto 50px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .examples-section .examples-text {
    text-align: left;
  }
}
.examples-section .examples-text .examples-title {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "BebasNeue", sans-serif;
  margin-bottom: 20px;
  color: #333;
  transition: color 0.4s ease, transform 0.3s ease, text-shadow 0.3s ease;
}
.examples-section .examples-text .examples-title:hover {
  color: #f39c12;
  transform: translateY(-4px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .examples-section .examples-text .examples-title {
    font-size: 2.4rem;
  }
}
.examples-section .examples-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  font-weight: 400;
}
@media (max-width: 768px) {
  .examples-section .examples-text p {
    font-size: 1rem;
    padding: 0 10px;
  }
}
.examples-section .examples-gallery {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.examples-section .examples-gallery .examples-image {
  width: 35%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transform: scale(1);
}
.examples-section .examples-gallery .examples-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .examples-section .examples-gallery .examples-image {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .examples-section .examples-gallery .examples-image {
    width: 90%;
    transform: rotate(1deg);
  }
}
@media (max-width: 1200px) {
  .examples-section .examples-gallery {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .examples-section .examples-text {
    padding: 0;
  }
  .examples-section .examples-text .examples-title {
    font-size: 2rem;
  }
  .examples-section .examples-text p {
    font-size: 1rem;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background: #333;
  color: #fff;
  max-width: 340px;
  width: 100%;
  padding: 20px;
  z-index: 9999;
  border-radius: 12px;
  display: none;
}
.cookie-popup__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.cookie-popup__text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.cookie-popup__buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cookie-popup .cookie-btn {
  display: inline-block;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #f39c12, #ff7b6b);
  border-radius: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(88, 129, 87, 0.25);
}
.cookie-popup .cookie-btn:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(88, 129, 87, 0.5);
}
.cookie-popup .cookie-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.6s ease;
  opacity: 0.4;
  z-index: -1;
}
.cookie-popup .cookie-btn:hover::before {
  transform: scale(1.4);
  opacity: 0.2;
}
.cookie-popup .cookie-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=main.css.map */