/* =========================================
   GLOBAL VARIABLES
========================================= */
:root {
  --bg: #051229;
  --fg: #ffffff;
  --muted: #9ca3af;

  --font-main: Inter, system-ui, sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
}

/* =========================================
   RESET
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
   BODY
========================================= */
body {
  font-family: var(--font-main);
  background: var(--bg);
  /*background: var(--bg) url('/images/tree.png') no-repeat center top;*/
  background-size: cover;
  color: var(--fg);
  min-height: 90vh;

  display: flex;
  flex-direction: column;
}

/* =========================================
   CONTENT
========================================= */
.content {
  flex: 1;
  max-width: 900px;
  margin: auto;
  padding: clamp(10px, 3vw, 30px);
  text-align: center;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}
.content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  
  /* ensures the tall image never becomes too huge */
  max-height: 70vh; 
  object-fit: contain;
}

/* =========================================
   FOOTER
========================================= */
footer {
  text-align: center;
  padding: 15px 0;
  font-size: clamp(10px, 1vw, 10px);
  color: var(--muted);
}

/* =========================================
   LOGO AREA
========================================= */
.logo-wrap {
  text-align: center;
  padding: 30px 20px;
}

.logo-wrap img {
  height: clamp(45px, 8vw, 75px);
  width: auto;
}

/* =========================================
   SEADS TITLE (if used)
========================================= */
.montserrat-thin-blue-zodiac-100px {
  color: #9ca3af;
  font-family: var(--font-montserrat);
  font-size: clamp(40px, 8vw, 60px);
  font-weight: 100;
  padding-top: 100px;
  letter-spacing: 30px;
}


/* =========================================
   UNDER1TREE SECTION
========================================= */

/* Container */
.under1tree-container {
  margin-top: clamp(40px, 8vw, 50px);
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: clamp(24px, 6vw, 56px);
  font-weight: 100;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

/* Color for text */
.under1tree-container span,
.under1tree-container b,
.under1tree-container strong {
  color: #9ca3af;
}

/* Logo (unchanged) */
.under1tree-logo {
  height: clamp(35px, 6vw, 60px);
  margin: 0 12px;
  width: auto;
}

/* =========================================
   RESPONSIVE MEDIA BREAKPOINTS
========================================= */

/* TABLETS (portrait & landscape) */
@media (max-width: 992px) {
  .content {
    max-width: 700px;
  }
}

/* MOBILE LANDSCAPE + SMALL TABLETS */
@media (max-width: 768px) {
  .logo-wrap img {
    height: clamp(40px, 10vw, 60px);
  }
  .montserrat-thin-blue-zodiac-100px{
      font-size:50px;
      letter-spacing:10px;
  }
  .under1tree-container {
    font-size: 38px;
    letter-spacing: 0.2em;
  }
}

/* SMALL MOBILE (iPhone SE, older Android) */
@media (max-width: 480px) {

  .content {
    padding: 10px;
    font-size: 0.95rem;
  }

  .under1tree-container {
    font-size: 16px;
    letter-spacing: 0.2em;
  }

  .under1tree-logo {
    height: 40px;
  }
  .montserrat-thin-blue-zodiac-100px{
      font-size:20px;
      letter-spacing:10px;
  }
}

/* ULTRA-WIDE SCREENS (2K / 4K) */
@media (min-width: 1600px) {
  .content {
    max-width: 1200px;
    font-size: 1.2rem;
  }

  .logo-wrap img {
    height: 90px;
  }
}
