/*
Theme Name: FastSupport Guide
Theme URI: https://dmillertech.com
Author: DMiller Tech
Author URI: https://dmillertech.com
Description: A clean, simple theme for displaying technical installation guides with large, readable text.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fastsupport
Tags: simple, accessible, tutorial, guide

This theme, like WordPress, is licensed under the GPL.
*/

html {
  font-size: 22px;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f9;
  color: #333;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

h1 {
  font-size: 2.2em;
  text-align: center;
  margin: 0.7em 0 0.3em 0;
  color: #204980;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 1.4em;
  color: #204980;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
  font-weight: bold;
}

.step {
  margin: 1em 4vw;
  border-left: 8px solid #71a6d2;
  padding-left: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  background: #fff;
  box-shadow: 0 2px 6px #eee;
  border-radius: 10px;
}

.important {
  color: #c0392b;
  font-weight: bold;
  background: #ffe0e0;
  padding: 0.25em 0.7em;
  border-radius: 6px;
  display: inline-block;
  font-size: 1.1em;
}

.download-link {
  font-size: 1.24em;
  color: #1976d2;
  text-decoration: underline;
  font-weight: bold;
}

p, ul, ol {
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 0.7em;
}

.screenshot {
  display: block;
  margin: 12px auto;
  border: 3px solid #bbb;
  border-radius: 13px;
  max-width: 85%;
  height: auto;
  box-shadow: 0 2px 8px #e0e0e0;
}

/* Header/logo placement */
.site-header {
  position: relative;
  min-height: 10px; /* keep minimal height */
}
.site-branding {
  position: absolute;
  right: 12px;
  top: 12px;
}
.site-logo, .custom-logo {
  max-height: 60px;
  height: auto;
  width: auto;
}

@media (max-width: 600px) {
  html {
    font-size: 19px;
  }
  .step {
    margin: 1em 2vw;
    padding-left: 0.5em;
  }
  h1 {
    font-size: 1.4em;
  }
  h2 {
    font-size: 1.13em;
  }
  .download-link {
    font-size: 1.13em;
  }
}
