/* auxiliary styles for safebetbaseball.com */

/* Variables for reuse */
:root {
    --primary-font: sofia sans;
    --secondary-font: sofia sans extra condensed;
    --primary-color: #ffffff;
    --highlight-color: #d4624d;
}

body {
    font-family: var(--primary-font);
    color: var(--primary-color);
    background: url("../images/bg@1x.jpg") no-repeat fixed center top;
	background-repeat: repeat-y;
    min-width: 720px;
	max-width: 1600px;
	margin: 0 auto;
}

h1, h2, h3 {
    font-family: var(--secondary-font);
}

h1 {
    line-height: .9em;
}

.subnav ul, .header ul, .secondlinks ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.subnav ul {
    padding-top: 15px;
    height: 75px;
}

.header ul {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.header ul li, .secondlinks ul li {
    margin: 0;
    float: left;
    padding-left: 20px;
}

.header ul li.nopad, .secondlinks ul li.nopad {
    padding-left: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.storelinks {
    display: inline-block;
    float: right;
}

.storelinks img {
    height: 25px;
}

.header {
    margin-top: 25px;
    margin-bottom: 100px;
}

.header h3 {
    color: var(--highlight-color);
    font-size: 1.3em;
}

.logo {
    float: left;
    display: inline-block;
}

.logo img {
    height: 75px;
}

.headline {
    margin-bottom: 50px;
}

.headline h1 {
    font-size: 5em;
}

.subheader {
    margin-bottom: 50px;
}

.subheader h2 {
    font-size: 3em;
}

.secondlinks img {
    height: 75px;
}

.secondlinks h2 {
	font-size: 3em;
}

.callouts {
	max-width:1200px;
}

.callouts p {
    line-height: 1.25em;
	
}

.screens {
    max-width:1200px;
}

.footer {
    margin: 25px 0 150px;
    font-size: 1.5em;
}

.footer p {
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 1.25em;
}

.legal {
    padding: 25px;
    background-color: #ffffff;
    opacity: 0.7;
    color: #000000;
    border-radius: 25px;
}

/* Apply custom padding for all screen sizes */
.custom-padding {
    padding-top: 150px; /* or your desired value */
	
}

/* Remove the custom padding for screens smaller than md */
@media (max-width: 767.98px) { 
    .custom-padding {
        padding-top: 0;
    }
}