*,
*::before,
*::after {
  box-sizing: border-box;
  /* margin: 0;
  padding: 0; */
}

:root {
  --dark-blue: #479bfc;
  --blue1: #c5e7fe;
  --blue2: #a1d8fe;
  --d-blue: #114798;
  --title-pink: #471334;
  --title-yelow: #ffcd12;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Dongle", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: var(--blue1);
  overflow-x: hidden;
  line-height: 120%;
  font-size: 24px;
  letter-spacing: 0%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;

  @media screen and (min-width: 1200px) {
    font-size: 32px;
  }
}

h1,
h2 {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h1 {
  font-size: 64px;

  @media screen and (min-width: 1200px) {
    font-size: 128px;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

.section {
  margin: 0;
  @media screen and (max-width: 1200px) {
    padding: 0 0;
  }
}

.container {
  max-width: 1440px;
  padding: 0 auto;
  margin: 0 auto;
  @media screen and (min-width: 1200px) {
    padding: 0 40px;
  }
}

/* ── header ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--dark-blue);
  color: #ffffff;
  font-size: 32px;
}
.header-container {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-link {
  text-decoration: none;
  color: #ffffff;
  transition:
    opacity 0.3s ease,
    text-shadow 0.3s ease;
}
.header-link:hover {
  color: var(--title-yelow);
  opacity: 0.8;
}
.logo {
  display: block;
  height: 44px;
  width: auto;
}
.header-menu {
  display: none;
  @media screen and (min-width: 1200px) {
    display: flex;
    gap: 40px;
  }
}
.header-burger {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  @media screen and (min-width: 1200px) {
    display: none;
  }
}
.header-burger:active {
  opacity: 0.6;
}
.header-burger img {
  width: 44px;
  height: 44px;
  display: block;
}
.header-mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  right: 20px;
  left: 20px;
  background: var(--dark-blue);
  border: 2px solid var(--d-blue);
  border-radius: 20px;
  padding: 30px;
  z-index: 1000;
}
.header-mobile-menu.active {
  display: block;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 32px;
  font-family: "Dongle", sans-serif;
}

@media screen and (max-width: 1199px) {
  .header .container {
    padding: 0 24px;
  }
}
/* ── HERO ───────────────────────────────────────────── */

.hero-section {
  background: linear-gradient(180deg, #c5e7fe 0%, #a1d8fe 100%);
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
  min-height: auto;
}
@media screen and (min-width: 1200px) {
  .hero-section {
    padding: 120px 0 60px;
    min-height: 100vh;
  }
}

.inner-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px 20px;
}

.inner-flex img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  height: auto;
  display: block;
}

@media screen and (min-width: 1024px) {
  .inner-flex {
    flex-direction: row;
    justify-content: space-between;
    padding: 60px auto;
    text-align: left;
  }

  .inner-flex img {
    max-width: 500px;
  }
}

.hero-container {
  background-color: #ac793f;
  padding-top: 20px;
}

@media screen and (max-width: 1023px) {
  .hero-flex {
    flex-direction: column;
    align-items: center;
  }

  .hero-flex .hero-text-top {
    order: 1;
  }
  .hero-flex img {
    order: 2;
  }
  .hero-flex .hero-info {
    order: 3;
    width: 100%;
  }

  .hero-left {
    display: contents;
  }
}

@media screen and (min-width: 1024px) {
  .hero-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-flex img {
    flex: 0 0 auto;
    max-width: 500px;
  }
}

@media screen and (min-width: 1024px) {
  .hero-container {
    padding-top: 80px;
  }
}

.hero-title {
  color: var(--title-yelow);
  -webkit-text-stroke: 3px var(--title-pink);
  font-size: 64px;
  font-weight: 400;
}

@media screen and (min-width: 1200px) {
  .hero-title {
    font-size: 128px;
    -webkit-text-stroke: 6px var(--title-pink);
  }
}

.info-line {
  font-size: 24px;
  padding-top: 0;
  margin-top: 0;
}

/* ── SECTION HEADINGS ───────────────────────────────── */
.section-heading {
  font-size: 40px;
  color: var(--title-yelow);
  -webkit-text-stroke: 3px var(--title-pink);
  line-height: 1;
  margin-bottom: 6px;
}
@media screen and (min-width: 1200px) {
  .section-heading {
    font-size: 56px;
  }
}

.section-sub {
  font-size: 48px;
  font-weight: 700;
  color: var(--d-blue);
  margin-bottom: 70px;
  margin-top: 0;
}

.step-content {
  font-size: 36px;
  color: var(--d-blue);
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 0.8;
  transform: translateY(10px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.step-header .section-heading {
  margin: 0;
  line-height: 0.8;
  display: inline-block;
}

.step-p {
  margin-top: 5px;
}

/* ── SOUND & FEEL ───────────────────────────────────── */
.sound-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: var(--dark-blue);
  padding: 40px 5%;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-tiles {
  flex: 1;
  max-width: 600px;
}

@media screen and (max-width: 1023px) {
  .footer-tiles {
    display: none; /* Картинка зникає на мобільних та планшетах */
  }
}

.footer-tiles img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-links a {
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

@media screen and (max-width: 1023px) {
  .footer-links a {
    font-size: 24px; /* Тепер воно точно зміниться */
  }
}

.footer-links a:hover {
  color: var(--title-yelow);
}

.footer-copy {
  font-size: 24px;
  color: #ffffff;
  text-align: right;
  margin-top: 20px !important;
  margin-block-end: 0;
}

/* ── Policy ─────────────────────────────────────────── */
.body-policy {
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px 20px;
  color: #471334;
  line-height: 1.6;
}

.policy-h1 {
  padding-top: 40px;
  font-size: 40px;
}
.policy-h2 {
  font-size: 36px;
  padding-top: 30px;
  font-weight: 400;
}
.h3-policy {
  font-weight: 700;
}

.list-policy {
  padding-left: 50px;
}

/* h4 {
  font-weight: 600;
}
.policy-h2-strong {
  font-size: 36px;
  padding-top: 30px;
  font-weight: 400;
} */

@media screen and (min-width: 1200px) {
  .body-policy {
    justify-content: space-between;
    padding: 60px 160px;
    text-align: left;
  }
  .policy-h1 {
    font-size: 56px;
    padding-top: 80px;
  }
  /* .policy-h2 {
    font-size: 48px;
    padding-top: 50px;
    line-height: 120%;
  }
  .policy-h2-strong {
    font-size: 48px;
    padding-top: 50px;
    line-height: 120%;
  } */
}
