/*
Theme Name: TOTEM Capital Landing
Description: Minimal landing page theme featuring the TOTEM Capital logo with dark navy background
Version: 1.0
Author: Your Name
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Updated background to exact color #090f21 to match logo background */
  background-color: #090f21;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-container {
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Added mobile-friendly image loading properties */
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 768px) {
  .logo {
    max-width: 280px;
    /* Increased minimum size for better mobile visibility */
    min-width: 200px;
  }

  .landing-container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 240px;
    /* Ensured minimum readable size on small screens */
    min-width: 180px;
  }
}
