/* ---------- FONTY ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Black.woff2") format("woff2"),
       url("assets/fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url("assets/fonts/Montserrat-Regular.woff2") format("woff2"),
       url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ---------- BACKGROUND ---------- */
html,body {
  background-image: url(assets/000024.JPG);
  background-color: rgba(0, 0, 0, 0.75);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: darken;
  min-height: 100vh;
  overflow: hidden;
}

/* ---------- PC VERZIA ---------- */
.title {
  text-align: center;
  color: white;
  font-size: 140px;
  margin-top: 17%;
  text-shadow: 5px 5px rgba(0, 0, 0, 0.25);
}

header {
  position: fixed;
  width: 100%;
  padding: 20px 40px;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px;
}

.navbar {
  width: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon {
  scale: 200%;
  color: white;
  transition: 200ms;
  text-decoration: none;
}

.icon:hover {
  transform: scale(115%);
}

/* ---------- SOCIAL SECTION SKRYTÁ NA PC ---------- */
.social-section {
  display: none;
}

/* ---------- CONTACT TEXT ---------- */
.contact-text {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 17px;
  color: white;
  margin-top: 150px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}

/* e-mail má vlastný font a štýl */
.contact-text a {
  font-family: "Montserrat", sans-serif;  /* tu je bold verzia */
  font-weight: 900;                        /* hrubší rez pre kontrast */
  font-size: 18px;                         /* mierne väčší text */
  color: #ffff;                          /* tyrkysová pre moderný efekt */
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-text a:hover {
  color: #ffffffd2;                          /* pri hover biely efekt */
}


/* ---------- MOBILNÁ VERZIA ---------- */
@media (max-width: 768px) {
  html, body {
    overflow: hidden;
    height: 100vh;
    width: 100%;
  }

  body {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }

  .logo {
    height: 65px;
    margin: 0 auto;
  }

  .navbar {
    display: none;
  }

  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100vh;
    justify-content: center;
    position: relative;
  }

  /* ---------- COMING SOON ---------- */
  .title {
    font-size: clamp(48px, 9vw, 64px);
    color: white;
    text-shadow: 5px 5px rgba(0, 0, 0, 0.25);
    margin-bottom: 0; 
  }

  /* ---------- SOCIALS NIŽŠIE ---------- */
  .social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 160px; /* ⇦ meníš podľa potreby – väčšie číslo = nižšie */
  }

  .social-text {
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 17px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 55px;
  }

  .social-icons .icon {
    scale: 220%;
    color: white;
    transition: 200ms;
  }

  .social-icons .icon:hover {
    transform: scale(120%);
  }

  /* ---------- CONTACT TEXT NA SPODKU ---------- */
  .contact-text {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 17px;
    margin-top: 0;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }


}
