body {
  background-image: url("../img/bg_mobile.webp");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* BackGround */
@media (min-width: 768px) {
  body {
    background-image: url("../img/bg.webp");
    background-size: 105%;
    background-position: left top;
    animation: backgroundZoomMove 30s ease-in-out infinite alternate;
    margin: 0;
  }
}

@keyframes backgroundZoomMove {
  0% {
    background-size: 105%;
    background-position: left top;
  }
  50% {
    background-size: 120%;
    background-position: right center;
  }
  100% {
    background-size: 105%;
    background-position: left top;
  }
}
/* BackGround_End */

.full-screen {
  position: relative;
  width: 100%;
  height: 98vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .full-screen {
    width: 100%;
    height: 100vh;
  }
}

/* Logo */
.logo {
  position: absolute;
  top: 20px;
  left: 5%;
  z-index: 10;
  width: 50%;
  height: auto;
}

@media (min-width: 768px) {
  .logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 20%;
    height: auto;
  }
}
/* Logo_End */

/* Content-block */
.content {
  padding-left: 1px;
  padding-right: 10px;
  width: 100%;
  background: none;
  color: white;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .content {
    padding-left: 40px;
    padding-right: 40px;
    height: 98vh;
  }
}

@media (min-width: 768px) {
  .content {
    width: 50%;
    background: rgba(16, 5, 69, 0.7);
    padding-left: 6%;
    padding-right: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
  }
}

@media (min-width: 1200px) {
  .content {
    width: 50%;
    background: rgba(16, 5, 69, 0.7);
    padding-left: 12%;
    padding-right: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
  }
}
/* Content-block_End */

.text-block {
    margin-top: 200px;
    margin-left: 5px;
    padding-left: 5px;
}

@media (min-width: 768px) {
  .text-block {
    margin-top: 20vh;
    padding-left: 40px;
  }
}

h1, h2 {
  color: white;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  h1, h2 {
    font-size: clamp(12px, 1vw, 18px);
  }
}

.heading-1 {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .heading-1 {
    margin-bottom: 12vh;
  }
}

/* social-button */
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  position: relative;
  margin-top: 40px;
  padding-left: 40px; 
}

@media (min-width: 768px) {
  .social-list li {
    margin-top: 5vh;
    padding-left: 60px; 
  }
}

.social-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/heart_unactive.png");
  background-size: contain;
  background-repeat: no-repeat;
}


.social-list a {
  color: white;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 9px;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 0;
  transition: color 0.3s;
  display: inline-block;
}

@media (min-width: 768px) {
  .social-list a {
    font-size: clamp(12px, 1vw, 18px);
    letter-spacing: 12px;
  }
}
/* social-button_End */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  justify-content: center;
  align-items: center;
}


.modal-content {
  padding: 2px;
  width: 88%;
  max-height: 94vh;
  overflow-y: auto;
  overflow-x: visible; 
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: orange transparent;
}

@media (min-width: 768px) {
  .modal-content {
    width: 50%;
  }
}


.modal-close {
  position: absolute;
  top: calc(4% - 20px); 
  right: calc(25% - 50px); 
  width: 30px;
  height: 30px;
  padding: 4px;
  background-image: url("../img/close.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 110;
}

.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-gallery img {
  width: 100%;
  border-radius: 0; 
}

.modal-button {
  width: 88%;
  height: 36px;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 400;
  color: white;
  font-size: 18px;
  font-family: Gilroy, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 0, 84);
  padding: 17px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: rgb(145, 8, 64);
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: orange;
  border-radius: 3px;
}

/* CTA - button */

.cta-button {
  border-radius: 40px;
  font-size: inherit;
  margin-left: 5px;
  margin-bottom: 20px;
  margin-top: 120px;
  padding: 10px 20px;
  color: inherit;
  background-color: rgb(255, 0, 84);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  cursor: pointer;
  font-weight: 400;
  border: none;
}

@media (min-width: 768px) {
  .cta-button {
    margin-bottom: 20px;
    margin-top: 12vh;
    padding: 17px 40px;
  }
}

.cta-primary {
  letter-spacing: 6px;
  font-weight: 400;
  color: white;
  font-size: 14px;
  font-family: Gilroy, -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (min-width: 768px) {
  .cta-primary {
    letter-spacing: 6px;
    font-size: clamp(14px, 1vw, 20px);;
  }
}

@media (min-width: 1200px) {
  .cta-primary {
    letter-spacing: 12px;
    font-size: clamp(14px, 1vw, 20px);;
  }
}

.cta-secondary {
  letter-spacing: 2px;
  font-weight: 400;
  color: white;
  font-size: 13px;
  font-family: Gilroy, -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (min-width: 768px) {
  .cta-secondary {
    font-size: clamp(12px, 1vw, 18px);
    letter-spacing: 1px;
  }
}

@media (min-width: 1200px) {
  .cta-secondary {
    font-size: clamp(12px, 1vw, 18px);
    letter-spacing: 2px;
  }
}

.cta-button:hover {
  background-color: rgb(220, 0, 70);
  transition: background-color 0.3s;
}

/* CTA - button_End */