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

/* VARIABLES */
:root {
  --green-dark: #0f2a1f;
  --green-mid: #1b3d2e;
  --bronze: #8c6a3f;
  --text-light: #e8e6e3;
  --text-muted: #a8a39a;
}

/* BASE */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0f2a1f;
  background-image: linear-gradient(rgba(15,42,31,0.75), rgba(15,42,31,0.95)), url("https://cam-frazier.github.io/flora-sound/assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

/* LAYOUT */
.coming-soon {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

/* subtle organic gradient */
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(140, 106, 63, 0.15), transparent 60%);
  pointer-events: none;
}

.coming-soon__inner {
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

/* LOGO IMAGE */
.logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* LOGO */
.logo h1 {
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.logo span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 6px;
  opacity: 0.85;
}

/* CONTENT */
.content {
  margin-top: 48px;
}

.content h2 {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* BUTTON */
.cta {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--bronze);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--bronze);
  color: var(--green-dark);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .logo h1 {
    font-size: 2.2rem;
  }

  .content h2 {
    font-size: 1.2rem;
  }
}
