/* YPEREA Coming Soon Page - CSS Content */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');

/* Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

html {
	background: black;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Full-page background image */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://yperea.com/wp-content/uploads/2025/05/yperea-gradient.png');
  background-position: center;
  background-repeat: repeat-x;
  background-size: 100% 100%;
  background-size: contain;
  z-index: -1;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Logo & Header */
.logo-container {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 100px;
  font-weight: 100;
  letter-spacing: 6px;
  color: white;
  margin-right: 10px;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3);
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 10px;
  font-weight: 300;
  text-transform: uppercase;
}

/* Main Content */
.coming-soon {
  font-size: 2.8rem;
  margin: 15vh 0;
  font-weight: 400;
  text-transform: lowercase;
  color: white;
  transition: opacity 0.5s ease;
}

.contact-info {

  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Subscription Form */
.subscription-form {
  margin-top: 30px;
  width: 100%;
  max-width: 400px;
}

.subscription-form input[type="email"] {
  padding: 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

.subscription-form button,
.subscription-form input[type="submit"] {
  padding: 10px 20px;
  background-color: #1a3263;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.subscription-form button:hover,
.subscription-form input[type="submit"]:hover {
  background-color: #2a4b8f;
}

/* Text Block Image */
.text-block {
  width: 440px;
  margin: 0 20px;
  max-width: 90%;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo-text {
    font-size: 65px;
  }

  .logo-img {
    height: 50px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .coming-soon {
    font-size: 2.5rem;
    margin: 10vh 0;
  }

  .contact-info {
    font-size: 0.9rem;
  }

} 

.buttons {
  margin-top: 40px;
}
