/*
 Theme Name: Coming Soon
 Theme URI: https://example.com/
 Author: Shaun
 Description: Super simple one-page Coming Soon theme.
 Version: 1.0
*/

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Teachers", sans-serif;
}

.coming-soon-wrapper {
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.coming-soon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon-inner {
  position: relative;

  /* keep it responsive but never wider than 400px */
  max-width: 400px;
  width: 100%;

  /* make the box match the frame’s shape */
  aspect-ratio: 4 / 5; /* adjust to your frame image’s ratio */

  /* FRAME IMAGE */
  background-size: contain;           /* show the whole frame, no cropping */
  background-position: center center;
  background-repeat: no-repeat;

  /* padding: 1.5rem;   padding for text inside the frame */
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon-text {
  max-width: 260px;
  line-height: 1.5;
  margin-top: 80px;
}

.coming-soon-title {
  font-size: 18px;
  color: #f0f0f0;
  margin: 0;
}

.coming-soon-subtitle {
  font-size: 18px;
  color: #f0f0f0;
  margin-top: 0.75rem;
}

.coming-soon-link {
  font-size: 18px;
  color: #b89439;
  margin-top: 0.75rem;
}

.coming-soon-link a {
  font-size: 18px;
  color: #b89439;
  margin-top: 0.75rem;
  font-weight: 600;
}

.coming-soon-logo {
  width: 100%;
  max-width: 400px;
}

.coming-soon-footer {
  width: 100%;
  max-width: 600px;
}