:root {
  --accent-color: #F7AA48;
  --secondary-color: #9C96D8;
  --text-color: #ECEBF8;
  --background-color: #29292F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* exo-2-regular - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/exo-2-v26-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/fonts/exo-2-v26-cyrillic_cyrillic-ext_latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* exo-2-600 - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/exo-2-v26-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/fonts/exo-2-v26-cyrillic_cyrillic-ext_latin_latin-ext-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* open-sans-regular - cyrillic_cyrillic-ext_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/open-sans-v44-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/fonts/open-sans-v44-cyrillic_cyrillic-ext_latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


body {
  font-family: 'Open Sans', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.page-wrapper {
  position: relative;
  overflow: hidden; /* обрізає декоративні елементи поза межами футера */
  min-height: 100vh; /* займає висоту всього вікна */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  line-height: 120%;
}

a {
  color: var(--text-color);
  text-decoration: none;
  margin: 0;
  padding: 0;
}


/* HERO */
.hero {
  position: relative;
  height: 110vh;
  overflow: hidden;
  top: -10vh;
  padding-top: 10vh;
}

.hero-bg {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/bg.png");
  background-repeat: no-repeat;
  background-size: 110% auto; /* спершу ширина 110%, висота авто */
  background-position: center 25%;
  z-index: 0;
  
  /* градієнт прозорості зверху вниз */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 90%);
  mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 90%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;


  
}

.hero-center {
  z-index: 1; /* поверх псевдоелемента */
  text-align: center;
}



.top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 16px 80px;
  align-items: center;
}

.logo img{
  width: 28px;

}

.menu a {
  margin-left: 45px;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.2s;
  text-transform: uppercase;
  margin-top: 11px;
  font-size: 14px;
  
}

.menu a.this-page{
  color: var(--accent-color);
}

.menu a:hover, footer > a:hover {
  color: var(--accent-color);
  transition: 0.2s;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 5;
  color: var(--text-color); 
  transition: color 0.25s;
}

.hamburger:hover{
  color: var(--accent-color);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--accent-color);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  text-transform: uppercase;
  transition: display 0.5s;
}

.mobile-menu > #menu-links{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-menu a:hover{
  color: var(--background-color);

}

.mobile-menu > .socials {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 35px;
}



.hero-center {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.hero-center h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 215px;
  width: 100%;
  margin-top: -65px;
  padding-top: -20px;
}

.hero-center h1 > span{
  margin-right: 10px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 215px;
}

.no-wrap {
  white-space: nowrap;
}

.subtitle {
  margin-top: 5px;
  opacity: .8;
  font-size: 20px;
}

.subtitle,
p,
button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.play-btn{
  height: 112px;
  width: 112px;
  margin: 55px auto 0 auto;
  cursor: pointer;
  transition: 0.25s;
  z-index: 1;
  position: relative;
  border-radius: 50%;
}

.play-btn svg {
  filter: drop-shadow(0px 0px 25px rgba(216, 166, 104, 1));
  transition: 0.2s;
}


.play-btn svg:hover {
  transform: scale(1.1);
}


.wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  transform: translate(50%, -50%) scale(1);
  opacity: 0.7;
  animation: waveAnim 1.8s linear forwards;
  pointer-events: none;
}

.wave.wave--finish {
  animation-duration: 1.2s !important;
  transition: 0.5s;
}

@keyframes waveAnim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}


#hero-bottom {
  display: flex;
  position: absolute;
  bottom: 30px;
  left: 80px;          
  right: 80px;
  z-index: 1;
  justify-content: space-between;
  align-items: flex-end;
}

#hero-bottom > .radio-description {
  width: 414px;
}

#hero-bottom > .socials {
  display: flex;
  gap: 35px;
}

.social-icon svg {
  color: var(--text-color);          /* базовий колір іконки */
  transition: color 0.25s; /* плавна анімація */
  vertical-align: middle;

}

.social-icon:hover svg {
  color: var(--accent-color);          /* колір при наведенні */
}

.mobile-menu > .socials > .social-icon:hover svg {
  color: var(--background-color);          /* колір при наведенні */
}


/* Stations */
.stations {
  padding: 120px 80px 0 80px;
  position: relative;
  height: 100vh;
  min-height: 700px;
}

@media (min-height: 900px) {
  .stations {
    height: 900px;
  }
}

.stations h2 {
  font-size: 70px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.02em;
}

.stations h2 span {
  color: var(--accent-color);
}

.stations > .stations-text > p {
  width: 202px;
  margin-top: 46px;
}

.phones img {
  width: 712px;
  z-index: -10;
  position: absolute;
  
  left: 50%;
  transform: translate(-50%, -48%);
}

.stations > .download {
  position: absolute;
  right: 80px;
  top: min(613px, calc(100% - 206px)); 
  width: 305px;
}

.stations > .download > p {
  margin-bottom: 30px;
}

/* Buttons */

.stations > .download > .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 15px;
}

button {
  cursor: pointer;
  transition: 0.25s;
  width: 145px;
  padding: 15px 20px;
  border-radius: 17px;
  background-color: rgba(0,0,0,0);
  border-style: solid;
  border-color: var(--secondary-color);
  color: var(--text-color);
}

button:hover {
  transform: scale(1.05);
  background: var(--accent-color);
  color: var(--background-color);
  border-color: rgba(0, 0, 0, 0);
}

button.active {
  background: var(--accent-color);
  color: var(--background-color);
  border-color: rgba(0, 0, 0, 0);
  margin: 0;
}

button.active:hover {
  transform: scale(1.05);
}

/* Business */
.business {
  padding: 52px 103px;
  
  border-radius: 40px;
  margin: 100px 80px 0 80px;
  height: 519px;
  position: relative;
}

.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  overflow: hidden;
  border-radius: 40px;

  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.19), 0 0 20px rgba(0, 0, 0, 0.1);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);

}



.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;

  backdrop-filter: blur(7px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(38, 38, 38, 0.25);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;

  overflow: hidden;
  border-radius: 40px;

  box-shadow: inset 2px 2px 1px 0 rgba(55, 55, 55, 0.5),
    inset -1px -1px 1px 1px rgba(155, 155, 155, 0.5);
}

.business > .description {
  width: 509px;
  position: absolute;
  z-index: 100;
}

.business > .description > h2 {
  font-size: 70px;
  line-height: 80%;
  margin-bottom: 30px;
  font-weight: 400;
  z-index: 100;
}

.business > .description > p {
  line-height: 120%;
  z-index: 100;
}

.business > a > button {
  cursor: pointer;
  transition: 0.25s;
  width: 325px;
  height: 73px;
  align-content: center;
  padding: 15px 20px;
  border-radius: 17px;
  background: var(--accent-color);
  border: none;
  color: var(--background-color);
  font-weight: 400;
  position: absolute;
  bottom: 52px;
  z-index: 100;
}

.business > .contacts {
  position: absolute;
  bottom: 52px;
  right: 103px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 100;
}

.contacts a.accent {
  color: var(--accent-color);
}

.business > .contacts > p,a:hover{
  color: var(--accent-color);
}

.business > .socials {
  display: flex;
  gap: 35px;
  position: absolute;
  top: 53px;
  right: 103px;
  z-index: 100;
}

/* Footer */
footer {
  padding: 50px 183px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

footer a {
  text-transform: uppercase;
}


#decoration-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

#decoration-circle-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

#decoration-circle-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#decoration-circle-4 {
  position: absolute;
  top: 500px;
  left: 0;
  z-index: -1;
}

#decoration-circle-5 {
  position: absolute;
  top: 1050px;
  left: 0;
  z-index: -1;
}

#decoration-circle-6 {
  position: absolute;
  top: 900px;
  right: 0;
  z-index: -1;
}

#decoration-circle-7 {
  position: absolute;
  top: 1637px;
  right: 0;
  z-index: -1;
}

#decoration-circle-8 {
  position: absolute;
  top: 1600px;
  left: 0;
  z-index: -1;
}

#decoration-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -10;
}



/*MOBILE*/

@media (max-width: 1200px) {
  
p {
  font-size: 14px;
}

.hero {
  height: 100vh;
}

.hero-bg {
  background-size: auto 100%;                /* заповнюємо всю висоту/ширину */
  background-position-x: 70%; /* зміщаємо вправо */
    background-position-y: center;  
}

.top-bar {
  padding: 16px 40px;
}

.mobile-menu > .socials svg {
width: 20px;
}

.menu {
  display: none; /* десктопне меню ховаємо */
}

.hamburger {
  display: block;
}

#close-button {
  display: none;
  right: 30px;
  top: 16px;
  width: 33px;
  cursor: pointer;
  position: absolute;
  transition: color 0.25s;
}

#close-button:hover {
  color: var(--background-color);
}

.logo img{
  width: 27px;
}

#hero-bottom {
  left: 40px;          
  right: 40px;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 30px;
  bottom: 50px;
}

#hero-bottom > .socials {
  display: none;
}

#hero-bottom > .radio-description {
  width: 100%;
}

.hero-center{
  position: absolute;
  width: 100%;
  padding: 0 40px;
  height: auto;
}

.hero-center h1 {
  font-size: clamp(30px, 14vw, 215px); /* мінімум 50px, максимум 215px, в середині - 15% від ширини viewport */
  margin-top: 0;
}

.hero-center h1 > span{
  display: inline-block;
  font-size: clamp(30px, 14vw, 215px); /* мінімум 50px, максимум 215px, в середині - 15% від ширини viewport */
  margin-right: clamp(2px, 1vw, 10px); 
}

.play-btn svg:hover {
  transform: none;
}


/* Stations */
.stations {
  padding: 0 40px 0 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.stations h2 {
  font-size: clamp(26px, 15vw, 42px);
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.02em;
}

.phones img {
  width: 120%;
  padding: 0 40px;
  z-index: 0;
  position: relative;
  margin-top: -40px;
  left: 50%;
  transform: translate(-50%, 0%);
}


.stations > .download {
  position: relative;
  right: auto;
  top: auto; 
  width: 100%;
}

.stations > .download > p {
  margin-bottom: 30px;
}



/* Buttons */

.stations > .download > .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 15px;
  width: auto;
}

.stations > .download > .buttons > a > button{
  font-size: 14px;
}

button {
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
  padding: 15px 20px;
  border-radius: 17px;
  background-color: rgba(0,0,0,0);
  border-style: solid;
  border-color: var(--secondary-color);
  color: var(--text-color);
}


.business {
  margin: 100px 10px 0 10px;
  position: relative;
  padding-right: 40px;
  padding-left: 40px;
  display: block;
  height: auto;
}

.business > .description {
  width: auto;
  position: relative;
  z-index: 100;
  margin-right: 20px;
}

.business > .description > h2 {
  font-size: clamp(26px, 15vw, 42px);
  line-height: 90%;
  margin-bottom: 30px;
  font-weight: 400;
  z-index: 100;
}

.business > .description > p {
  line-height: 120%;
  z-index: 100;
}

.business > a > button {
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
  height: 73px;
  align-content: center;
  padding: 15px 20px;
  border-radius: 17px;
  background: var(--accent-color);
  border: none;
  color: var(--background-color);
  font-weight: 400;
  position: relative;
  bottom: auto;
  z-index: 100;
  margin: 50px 0 100px 0;
}

.business > .contacts {
  position: relative;
  bottom: auto;
  right: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 100;
  margin: 0 0 30px 0;
}

.business > .contacts > p {
  font-size: 12px;
}

.contacts a.accent {
  color: var(--accent-color);
}

.business > .contacts > p,a:hover{
  color: var(--accent-color);
}

.business > .socials {
  display: flex;
  gap: 35px;
  position: relative;
  top: 0;
  right: auto;
  left: 0;
  z-index: 100;
  
}

.business > .socials svg{
  width: 17px;
}

.business > a > button {
  font-size: 14px;
}

footer {
  padding: 50px 50px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  font-size: 12px;
  gap: 20px;
}


#decoration-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 50%;
}

#decoration-circle-2 {
  position: absolute;
  top: -250px;
  right: -50px;
  z-index: 0;
  width: 50%;
}

#decoration-circle-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 50%;
}

#decoration-circle-4 {
  position: absolute;
  top: 500px;
  left: 0;
  z-index: -1;
  width: 50%;
}

#decoration-circle-5 {
  position: absolute;
  top: 1050px;
  left: 0;
  z-index: -1;
  width: 50%;
}

#decoration-circle-6 {
  position: absolute;
  top: 570px;
  right: -200px;
  z-index: -1;
  width: 100%;
}

#decoration-circle-7 {
  position: absolute;
  top: 1537px;
  right: -100px;
  z-index: -1;
  width: 100%;
}

#decoration-circle-8 {
  position: absolute;
  top: 1900px;
  left: 0;
  z-index: -1;
  width: 100%;
}

#decoration-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -10;

}

}
