/*
Theme Name: Maxacamp Coming Soon
Theme URI: https://glitchwood.com
Author: GlitchWood
Author URI: https://glitchwood.com
Description: Coming soon landing page for Maxacamp.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maxacamp-coming-soon
*/

/* Google Sans - white text, variable weight */
.google-sans {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Google Sans", sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

/* Full viewport background with image */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: url("http://maxacamp.com/wp-content/uploads/2019/04/2.1-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Light black overlay, opacity 0.2 */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: -1;
}

/* Centered content container - 100vh */
.coming-soon-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.coming-soon-wrapper .logo {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.coming-soon-wrapper h1 {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
