/* style.css */

/* Global Styles */
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
}

/* Homepage Layout */
body.home {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

/* Logo */
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff3366;
  text-transform: uppercase;
  margin-bottom: 0.25em;
  display: inline-block;
}


/* Plain Home Link (policy pages) */
a.home-link {
  display: block;
  margin: 0.25em 0 0em;;
  color: #ff3366;
  text-decoration: none;
}
a.home-link:hover {
  text-decoration: underline;
}

/* Headings */
h1 {
  font-size: 3em;
  margin-bottom: 0.25em;
  color: #ff3366;
}

h3 {
  margin-bottom: 0.25em;
  color: #ff3366;
}

h3.white {
  margin-bottom: 0em;
  color: #fff;
}

/* Paragraphs */
p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 2em;
}

b.pink {
    color: #ff3366;
}

/* Link & Contact Styles */
.contact,
.policies {
  margin-top: 1.5em;
  font-size: 1em;
}

.contact a,
.policies a {
  color: #ff3366;
  text-decoration: none;
}

.policies a {
  color: #999;
}

/* Coming Soon Banner */
.coming-soon {
  font-size: 1em;
  color: #999;
}

/* Policy Pages Layout */
main.policies-content {
  max-width: 800px;
  margin: 2em auto;
  padding-left: 1rem; padding-right: 1rem;
  text-align: left;
  line-height: 1.6;
}

main.policies-content h1 {
  font-size: 2.5em;
  color: #ff3366;
  margin-bottom: 0.2em;
  text-align: left;
}

main.policies-content .last-updated {
  font-size: 0.9em;
  color: #999;
  text-align: left;
  margin-bottom: 1.5em;
}

main.policies-content h2 {
  font-size: 1.5em;
  color: #ff3366;
  margin-top: 1.5em;
}

/* Paragraphs and list default margins */
main.policies-content p,
main.policies-content ul {
  margin: 0.5em 0;
}

/* Disc list styling */
main.policies-content ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

/* Unified list sizing */
main.policies-content ul,
main.policies-content ol {
  font-size: 1.2em;
  line-height: 1.6;
}

/* Bullet markers scale */
main.policies-content li::marker {
  font-size: inherit;
}

/* Links in policy content */
main.policies-content a {
  color: #ff3366;
  text-decoration: none;
}

main.policies-content a:hover {
  text-decoration: underline;
}

/* Home: left-align Products & pricing and match paragraph size */
.home-products {
  text-align: left;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 1.5em;
}

.home-products ul {
  list-style: disc;
  margin-left: 1.5em;
}

.home-products li {
  font-size: 1.2em;   /* same as <p> */
  line-height: 1.6;
}

.home-products li::marker {
  font-size: inherit;
}

/* Launch offer styling */
.launch-note {
  font-size: 0.85em;   /* smaller text */
  color: #ff3366;         /* subtle grey on your dark bg */
  margin-left: 0.35em;
}

.old-price {
  font-size: 0.9em;    /* a bit smaller than normal text */
  color: #999;
  text-decoration: line-through; /* strike-through */
  margin-left: 0.25em;
}

.price-new { 
	color: #ff3366; 
}

/* Contact section on policy pages */
.contact-us {
  margin-top: 2em;
}

/* Footer Styles */
.footer {
  font-size: 0.9em;
  color: #666;
  margin: 2em auto;
  text-align: center;
}

@media (max-width: 600px) {
  main.policies-content {
    padding-left: 1rem; padding-right: 1rem;
  }
}

/* Fix mobile cropping on the homepage */
body.home {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 100svh;   /* use small viewport height on mobile */
  padding: 16px;
}

/* Phones: start content at the top */
@media (max-width: 600px) {
  body.home {
    justify-content: flex-start;
    align-items: stretch;
  }
}

/* Keep centered look on larger screens */
@media (min-width: 601px) {
  body.home {
    justify-content: center;
    align-items: center;
  }
}

/* Fallback if svh isn't supported */

@supports not (min-height: 100svh) {
  body.home { min-height: 100vh; }
}


/* Mobile: reduce bullet indent sitewide */
@media (max-width: 600px) {
  main.policies-content ul,
  .home-products ul {
    margin-left: 0;        /* remove extra margin */
    padding-left: 0.75em;  /* smaller indent (tweak as you like) */
    list-style-position: outside;
  }
}