/* ==========================================================
   ULTIMATE SPORTSMEN FRAMEWORK v2.0
   Master Stylesheet
   https://ultimatesportsmen.com
   ========================================================== */

/* ===============================
   ROOT COLORS
   =============================== */

:root{
    --us-gold:#FFD700;
    --us-dark:#333;
    --us-background:#666;
    --us-light:#DDD;
    --us-white:#FFF;
    --us-link:#FFD700;
    --us-link-hover:#FFF;
    --content-width:1174px;
    --reading-width:950px;
}

/* ===============================
   RESET
   =============================== */

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--us-background);
    color:var(--us-light);
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.8;
}

/* ===============================
   LINKS
   =============================== */

a{
    color:var(--us-link);
    text-decoration:none;
}

a:hover{
    color:var(--us-link-hover);
    text-decoration:underline;
}

/* ===============================
   PAGE WRAPPER
   =============================== */

.container{
    width:100%;
    max-width:var(--content-width);
    margin:auto;
}

/* ===============================
   HEADER
   =============================== */

header{
    width:100%;
    max-width:var(--content-width);
    margin:auto;
    text-align:center;
}

header img,
.banner img {
    display: block;
    width: 100%;
    max-width: 1174px;
    height: auto;
    margin: 0 auto;
}

/* ===============================
   DROPDOWN MENU
   =============================== */

.dropdown{
    position:relative;
    display:inline-block;
    margin:20px auto;
    z-index:9999;
}

.dropbtn{
    background:#444;
    color:var(--us-gold);
    border:none;
    border-radius:8px;
    padding:14px 28px;
    cursor:pointer;
    font-size:17px;
    font-weight:bold;
}

.dropbtn:hover{
    background:#555;
    color:#FFF;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#333;
    border-radius:8px;
    box-shadow:0 10px 20px rgba(0,0,0,.6);
    overflow:hidden;
}

.dropdown-content.show{
    display:block;
}

.dropdown-content a{
    display:block;
    padding:14px 18px;
    color:var(--us-gold);
    border-bottom:1px solid #555;
}

.dropdown-content a:last-child{
    border-bottom:none;
}

.dropdown-content a:hover{
    background:#666;
    color:#FFF;
}

/* ===============================
   CONTENT
   =============================== */

.content{
    width:1174px;
    max-width:100%;
    margin:30px auto;
    padding:0 15px;
    box-sizing:border-box;
}

/* ===============================
   READING COLUMN
   =============================== */

.reading-column{
    max-width:var(--reading-width);
    margin:auto;
}

/* ===============================
   HEADINGS
   =============================== */

.content h1,
.content h2,
.content h3{
    text-align:center;
    color:#FFD700;
    font-family:Georgia, serif;
}

/* ===============================
   PARAGRAPHS
   =============================== */

.content p{
    width:100%;
    margin:0 0 1.25em;
    text-align:justify;
    text-justify:inter-word;
    line-height:1.8;
    font-size:1.08rem;
}

/* ===============================
   IMAGES
   =============================== */

img{
    max-width:100%;
    height:auto;
}

.center-image{
    display:block;
    margin:25px auto;
}

/* ===============================
   CAPTIONS
   =============================== */

.caption{
    text-align:center;
    font-style:italic;
    margin-top:10px;
}

/* ===============================
   RELATED STORIES
   =============================== */

.related{
    margin:50px auto;
    max-width:var(--reading-width);
}

.related h2{
    margin-bottom:20px;
}

/* ===============================
   FOOTER
   =============================== */

footer{
    max-width:var(--content-width);
    margin:50px auto;
    text-align:center;
    padding:30px 20px;
    border-top:1px solid #777;
}

.footer-links{
    margin-top:20px;
}

.footer-links a{
    display:inline-block;
    margin:6px 12px;
}

/* ===============================
   FORMS
   =============================== */

input,
textarea,
select{
    width:100%;
    padding:12px;
    border:1px solid #999;
    border-radius:6px;
    font-size:16px;
}

button{
    background:#444;
    color:#FFD700;
    border:none;
    border-radius:6px;
    padding:12px 22px;
    cursor:pointer;
}

button:hover{
    background:#555;
    color:#FFF;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width:900px){

    .reading-column{
        max-width:100%;
    }

    .dropdown{
        display:block;
        text-align:center;
    }

    .dropdown-content{
        left:50%;
        transform:translateX(-50%);
        width:90%;
    }

}

/* ===== Framework additions ===== */
nav.dropdown{width:100%;text-align:center;margin:20px auto;}
.dropdown{display:inline-block;}
.banner{width:1174px;max-width:100%;margin:0 auto;padding:0;}
.banner img{display:block;width:100%;height:auto;margin:0 auto;}
.content p{hyphens:auto;overflow-wrap:break-word;}
.content ul,.content ol{margin:20px 40px;}
.content li{margin-bottom:8px;}
blockquote{border-left:4px solid #FFD700;padding-left:20px;margin:20px 0;font-style:italic;}
table{width:100%;border-collapse:collapse;margin:20px 0;}
th,td{border:1px solid #777;padding:10px;}
hr{border:0;border-top:1px solid #777;margin:40px 0;}
.text-center{text-align:center;}
.mt-20{margin-top:20px;}
.mt-40{margin-top:40px;}
.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
