/*
Theme Name: Lost In Oman Mobile Fixed
Author: ChatGPT
Version: 1.1
*/

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.45)),
    url("assets/background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.coming {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  font-size: clamp(46px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: 7px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 6px 28px rgba(0,0,0,0.95);
  white-space: nowrap;
}

.about {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(86vw, 780px);
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 4px 16px rgba(0,0,0,0.95);
}

.orange {
  color: #f59b24;
  font-weight: 900;
}

/* PHONE FIX */
@media (max-width: 700px) {
  .hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
  }

  .coming {
    top: 30%;
    font-size: clamp(30px, 12vw, 48px);
    letter-spacing: 2px;
    white-space: normal;
    width: 92vw;
    line-height: 1.05;
  }

  .about {
    bottom: 8%;
    width: 84vw;
    font-size: 15px;
    line-height: 1.45;
  }
}

/* VERY NARROW PHONE FIX */
@media (max-width: 400px) {
  .coming {
    top: 28%;
    font-size: 36px;
  }

  .about {
    font-size: 14px;
    bottom: 7%;
  }
}
