/*
Theme Name: SSI Custom Theme
Theme URI: https://shastrascience.com/
Author: Shastra Science Institute
Author URI: https://shastrascience.com/
Description: Custom responsive WordPress theme for Shastra Science Institute.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ssi-theme
*/

/* =========================
   Base Reset
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================
   WordPress Required Classes
========================= */

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   Theme Base
========================= */

.ssi-site {
    min-height: 100vh;
}

.ssi-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.ssi-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.ssi-placeholder h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.15;
}

.ssi-placeholder p {
    margin: 0;
    color: #666666;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
    .ssi-container {
        width: min(100% - 30px, 1200px);
    }

    .ssi-placeholder h1 {
        font-size: 32px;
    }
}