@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #f5f5f5;
  background-color: #1a1a1a;
  line-height: 1.6;
}
body.no-scroll {
  overflow: hidden;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: #b8860b;
  margin-bottom: 15px;
}

h1 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 48px;
  }
}

p {
  font-size: 16px;
  color: #f5f5f5;
}
@media (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

.container {
  max-width: 320px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  background-color: #333333;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
}
.header__logo-img {
  width: 100px;
}
.header__nav {
  display: none;
}
.header__nav--open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  animation: fadeIn 0.3s ease-in-out forwards;
}
@media (min-width: 768px) {
  .header__nav--open {
    display: block;
    position: static;
    background-color: transparent;
    flex-direction: row;
    animation: none;
  }
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .header__menu {
    display: flex;
  }
}
.header__nav--open .header__menu {
  flex-direction: column;
  text-align: center;
}
.header__menu-item {
  position: relative;
  margin-left: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .header__menu-item {
    margin-left: 25px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .header__menu-item:hover .header__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header__menu-link {
  text-decoration: none;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.header__menu-link--active {
  color: #ffd700;
}
.header__menu-link:hover {
  color: #ffd700;
}
.header__nav--open .header__menu-link {
  font-size: 24px;
  padding: 10px 0;
  display: block;
}
@media (min-width: 768px) {
  .header__menu-link {
    font-size: 18px;
  }
}
.header__dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #1a1a1a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
}
.header__nav--open .header__dropdown {
  position: static;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  margin-top: 10px;
  width: auto;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown-item {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .header__dropdown-item {
    margin: 0;
  }
}
.header__dropdown-item:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (min-width: 768px) {
  .header__dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  }
}
.header__dropdown-link {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__dropdown-link:hover {
  background-color: #b8860b;
  color: #ffffff;
}
.header__nav--open .header__dropdown-link {
  font-size: 20px;
  padding: 8px 0;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger--active .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger--active .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
}
@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}
@media (min-width: 1440px) {
  .hero {
    height: 700px;
  }
}
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  display: none;
}
.hero__slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__slider-item .container {
  position: relative;
  z-index: 1;
}
.hero__slider-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero__slider-title {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  .hero__slider-title {
    font-size: 64px;
  }
}
.hero__slider-link {
  display: inline-block;
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.hero__slider-link:hover {
  background-color: #b8860b;
  color: #ffffff;
}

.btn, .contact__form-button {
  display: inline-block;
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.btn:hover, .contact__form-button:hover {
  background-color: #b8860b;
  color: #ffffff;
}
@media (min-width: 768px) {
  .btn, .contact__form-button {
    padding: 12px 25px;
    font-size: 18px;
  }
}

.about {
  padding: 60px 0;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .about {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 100px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.about__info {
  flex: 1;
}
.about__head {
  margin-bottom: 20px;
}
.about__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about__head-title {
  font-size: 28px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .about__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .about__head-title {
    font-size: 48px;
  }
}
.about__description .about__text {
  margin-bottom: 15px;
  color: #f5f5f5;
}
.about__img {
  flex: 1;
  text-align: center;
}
.about__img-photo {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.services {
  padding: 60px 0;
  background-color: #333333;
}
@media (min-width: 768px) {
  .services {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .services {
    padding: 100px 0;
  }
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .services__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1440px) {
  .services__list {
    flex-wrap: nowrap;
  }
}
.services__list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .services__list-item {
    flex-basis: calc(50% - 15px);
  }
}
@media (min-width: 1440px) {
  .services__list-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.services__item-icon {
  font-size: 40px;
  color: #ffd700;
  flex-shrink: 0;
}
@media (min-width: 1440px) {
  .services__item-icon {
    margin-bottom: 20px;
  }
}
.services__item-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}
.services__item-text {
  font-size: 16px;
  color: #f5f5f5;
}

.experience {
  padding: 60px 0;
  background-color: #1a1a1a;
  text-align: center;
}
@media (min-width: 768px) {
  .experience {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .experience {
    padding: 100px 0;
  }
}
.experience__title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .experience__title {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .experience__title {
    font-size: 54px;
  }
}
.experience__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .experience__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .experience__list {
    justify-content: space-around;
    flex-wrap: nowrap;
  }
}
.experience__list-item {
  background-color: #333333;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .experience__list-item {
    flex-basis: calc(50% - 20px);
  }
}
@media (min-width: 1440px) {
  .experience__list-item {
    flex: 1;
  }
}
.experience__item-number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .experience__item-number {
    font-size: 60px;
  }
}
.experience__item-text {
  font-size: 18px;
  color: #f5f5f5;
  text-transform: uppercase;
  font-weight: 500;
}

.offer {
  padding: 60px 0;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .offer {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .offer {
    padding: 100px 0;
  }
}
.offer__head {
  text-align: center;
  margin-bottom: 50px;
}
.offer__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.offer__head-title {
  font-size: 28px;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .offer__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .offer__head-title {
    font-size: 48px;
  }
}
.offer__head-text {
  font-size: 16px;
  color: #f5f5f5;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .offer__head-text {
    font-size: 18px;
  }
}
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.offer__list-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #333333;
}
@media (min-width: 768px) {
  .offer__list-item {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .offer__list-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.offer__item-content {
  padding: 30px;
  flex: 1;
}
@media (min-width: 768px) {
  .offer__item-content {
    padding: 40px;
  }
}
.offer__item-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #ffd700;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .offer__item-title {
    font-size: 32px;
  }
}
.offer__item-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
}
.offer__item-description {
  margin-bottom: 20px;
  flex-grow: 1;
}
.offer__item-description .offer__item-text {
  font-size: 15px;
  color: #f5f5f5;
  line-height: 1.6;
  margin-bottom: 10px;
}
.offer__item-description .offer__item-text:last-child {
  margin-bottom: 0;
}
.offer__item-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offer__item-block {
  margin-bottom: 0;
}
.offer__item-block-title {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .offer__item-block-title {
    font-size: 20px;
  }
}
.offer__item-list-items {
  padding: 0;
  margin: 0;
}
.offer__item-list-items-item {
  font-size: 15px;
  color: #f5f5f5;
  margin-bottom: 5px;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
.offer__item-list-items-item:last-child {
  margin-bottom: 0;
}
.offer__item-list-items-item::before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: inherit;
}
.offer__item-img {
  flex: 1;
  min-height: 250px;
}
@media (min-width: 768px) {
  .offer__item-img {
    min-height: auto;
    max-width: 50%;
  }
}
.offer__item-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.agency {
  padding: 60px 0;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .agency {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .agency {
    padding: 100px 0;
  }
}
.agency__title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .agency__title {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .agency__title {
    font-size: 54px;
  }
}
.agency__description {
  margin-bottom: 30px;
}
.agency__description .agency__text {
  font-size: 16px;
  color: #f5f5f5;
  margin-bottom: 15px;
}
.agency__description .agency__text:last-child {
  margin-bottom: 0;
}
.agency__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .agency__content {
    flex-direction: column;
  }
}
.agency__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .agency__wrapper {
    flex-direction: row;
  }
}
.agency__left, .agency__right {
  flex: 1;
}
.agency__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .agency__subtitle {
    font-size: 28px;
  }
}
.agency__block {
  margin-top: 40px;
}

.contact {
  padding: 60px 0;
  background-color: #333333;
}
@media (min-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 100px 0;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact__left {
  flex: 1;
  padding-right: 20px;
}
.contact__head {
  margin-bottom: 30px;
}
.contact__head-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact__head-title {
  font-size: 28px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .contact__head-title {
    font-size: 48px;
  }
}
.contact__address {
  font-style: normal;
}
.contact__address-text {
  font-size: 16px;
  color: #f5f5f5;
  margin-bottom: 10px;
  line-height: 1.8;
}
.contact__address-text strong {
  color: #ffffff;
}
.contact__address-icon {
  color: #ffd700;
  margin-right: 10px;
}
.contact__address-link {
  color: #daa520;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact__address-link:hover {
  color: #ffd700;
}
.contact__right {
  flex: 1.2;
}
.contact__form {
  display: flex;
  flex-direction: column;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .contact__form {
    padding: 40px;
  }
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
  }
}
.contact__form-field {
  flex: 1;
}
.contact__form-label {
  display: block;
  font-size: 14px;
  color: #ffd700;
  margin-bottom: 8px;
}
.contact__form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #333333;
  border-radius: 5px;
  background-color: #333333;
  color: #ffffff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.contact__form-input:focus {
  outline: none;
  border-color: #ffd700;
}
.contact__form-input::-moz-placeholder {
  color: white;
}
.contact__form-input::placeholder {
  color: white;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-button {
  width: 100%;
  margin-top: 20px;
}
.contact__form-status {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #daa520;
}

.gallery {
  padding: 30px 0;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .gallery {
    padding: 50px 0;
  }
}
@media (min-width: 1440px) {
  .gallery {
    padding: 70px 0;
  }
}
.gallery .container {
  padding: 0;
}
@media (min-width: 768px) {
  .gallery .container {
    padding: 0 15px;
  }
}
.gallery__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .gallery__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .gallery__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
.gallery__list-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
.gallery__item-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery__list-item:hover .gallery__item-img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .gallery__item-img {
    height: 300px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}
.lightbox.open {
  display: flex;
}
.lightbox__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 8px;
}
.lightbox__close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.lightbox__close:hover, .lightbox__close:focus {
  color: #ffd700;
  text-decoration: none;
  cursor: pointer;
}
.lightbox__prev, .lightbox__next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.lightbox__prev:hover, .lightbox__next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.lightbox__prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.lightbox__next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.legal {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #f5f5f5;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .legal {
    padding: 100px 0;
  }
}
.legal__title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #ffd700;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 42px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .legal__title {
    font-size: 56px;
    margin-bottom: 50px;
  }
}
.legal__intro {
  font-size: 16px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .legal__intro {
    font-size: 18px;
  }
}
.legal__section {
  margin-bottom: 40px;
}
.legal__section:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .legal__section {
    margin-bottom: 50px;
  }
}
.legal__section-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 28px;
  }
}
.legal__section-text {
  font-size: 16px;
  margin-bottom: 15px;
}
.legal__section-text:last-child {
  margin-bottom: 0;
}
.legal__list {
  padding-left: 25px;
  margin-bottom: 20px;
}
.legal__list-item {
  list-style: disc;
  font-size: 16px;
  margin-bottom: 10px;
  color: #f5f5f5;
}
.legal__list-item:last-child {
  margin-bottom: 0;
}
.legal__list-item-title {
  color: #ffd700;
  font-weight: 600;
}
.legal__link {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal__link:hover {
  color: #ccac00;
  text-decoration: underline;
}
.legal__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.legal__contact-list-item {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f5f5f5;
}
.legal__contact-list-item:last-child {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner__text {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    margin: 0;
    text-align: left;
    padding-right: 20px;
  }
}
.cookie-banner__link {
  color: #ffd700;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  text-decoration: none;
}
.cookie-banner__actions {
  flex-shrink: 0;
}
.cookie-banner__button {
  background-color: #ffd700;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cookie-banner__button:hover {
  background-color: #ccac00;
}

.footer {
  background-color: #333333;
  padding: 40px 0 20px;
  color: #f5f5f5;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .footer__wrapper {
    flex-wrap: nowrap;
  }
}
.footer__block {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .footer__block {
    flex-basis: calc(50% - 10px);
  }
}
@media (min-width: 1440px) {
  .footer__block {
    flex: 1;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo-img {
  width: 100px;
}
.footer__text {
  font-size: 14px;
  line-height: 1.6;
  color: #f5f5f5;
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__title {
    font-size: 24px;
  }
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-item:last-child {
  margin-bottom: 0;
}
.footer__menu-link {
  text-decoration: none;
  color: #f5f5f5;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #ffd700;
}
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contacts-item {
  margin-bottom: 10px;
  font-size: 14px;
  color: #f5f5f5;
}
.footer__contacts-item:last-child {
  margin-bottom: 0;
}
.footer__contacts-icon {
  color: #ffd700;
  margin-right: 10px;
}
.footer__copy {
  text-align: center;
  font-size: 12px;
  color: #f5f5f5;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__copy {
    font-size: 14px;
    padding-top: 30px;
  }
}