/* FARHLD Coming Soon Page - Fixed Desktop/Mobile Layout */
/* This file is valid LESS and also works as plain CSS. */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700');

/* Reset and base */
html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Montserrat", Arial, sans-serif;
  background: #15120f;
  color: #ffffff;
}

/* Fullscreen background video */
#background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  display: block;
  background: url('bg.png') no-repeat center center;
  background-size: cover;
  transform: none;
  filter: none;
}

/* Dark elegant overlay above video */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    rgba(0, 0, 0, 0.28);
}

/* Main content over video */
.main {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: transparent;
}

#content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 42px 28px;
}

/* Optional logo image */
.logo {
  text-align: center;
  margin-bottom: 24px;
}

.logo img {
  width: min(320px, 72vw);
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Title */
.title {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
}

.title span {
  display: inline-block;
}

/* Main text */
p {
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 1.05rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

p:last-child {
  margin-top: 32px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

p a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: opacity 0.22s ease, border-color 0.22s ease;
}

p a:hover,
p a:focus {
  opacity: 0.82;
  border-color: #ffffff;
  outline: none;
}

p span {
  color: rgba(255, 255, 255, 0.72);
}

/* Mail login button */
.mail-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 14px 36px;
  min-width: 170px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #211c17;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mail-login-btn:hover,
.mail-login-btn:focus {
  transform: translateY(-2px);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  outline: none;
}

.mail-login-note {
  margin-top: 18px;
  opacity: 0.82;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

/* Keep old countdown hidden if any old markup remains */
section,
.countdown,
#countdown {
  display: none !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body {
    overflow: hidden;
  }

  .main {
    padding: 20px;
  }

  #content {
    padding: 28px 16px;
  }

  .title {
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }

  p {
    letter-spacing: 0.13em;
    line-height: 1.65;
  }

  .mail-login-btn {
    margin-top: 26px;
    padding: 13px 30px;
    min-width: 160px;
  }
}

@media (max-width: 420px) {
  .title {
    font-size: 2.65rem;
    letter-spacing: 0.08em;
  }

  p {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  p:last-child {
    margin-top: 26px;
  }
}
