/*
    Filename: styles.css
    Author: Farris Qureshi
    Course: ITWP 1050
    Assignment: Module 5 - Project 2 - Colorado Newsletter CSS Styling
*/

/* Global Variable */
:root {
    --blackColor: #000000;
}

/* Web Font */
@font-face {
    font-family: 'Title Font';
    src: url('../webfonts/AmaticSC-Bold.ttf');
    font-style: normal;
}

/* Body Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(102, 204, 255, .4);
}

/* Paragraph Styles */
p {
    text-indent: 1em;
    line-height: 1.5em;
    font-size: 1.5vw;
}

/* Heading Styles */

/* H1 - Title font with text shadow */
h1 {
    font-family: 'Title Font', Arial, Helvetica, sans-serif;
    font-size: 7vw;
    text-shadow: 1px 1px 4px #336699;
}

/* H2 - Background image, white text, padding, border, box shadow */
h2 {
    background: url('images/coloradomountains_bkgd.jpg') repeat center;
    color: white;
    text-shadow: 1px 1px 5px var(--blackColor);
    padding: 25px;
    border: 2px inset var(--blackColor);
    font-variant: small-caps;
    box-shadow: 5px 10px 20px #336699 inset;
    font-size: 3vw;
}

/* H3 - Normal font variant, padding, font size, bottom border */
h3 {
    font-variant: normal;
    padding: 5px;
    font-size: 2vw;
    border-bottom: 2px solid var(--blackColor);
}

/* H4 - Normal font variant, padding, font size */
h4 {
    font-variant: normal;
    padding: 5px;
    font-size: 1.75vw;
}

/* H5 - Italic, dark color, small font size */
h5 {
    font-style: italic;
    color: DarkSlateGray;
    font-size: 1vw;
}

/* Image Styles */
img {
    float: right;
    margin: 0px 15px 15px 15px;
    border: 1px solid var(--blackColor);
}

/* Classes */

/* State flag image class */
.stateflag {
    float: left;
    border: 1px inset white;
    margin: 5px 15px 10px 0px;
    box-shadow: 0px 3px 3px 1px var(--blackColor);
}

/* Highlight section class */
.highlightSection {
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 2px 1px SteelBlue;
}

/* Copyright class */
.copyright {
    font-size: 9px;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

/* Unordered List Styles */
ul li {
    line-height: 1.5em;
    font-size: 1.5vw;
}

/* Validation ID */
#validation {
    text-align: center;
    font-size: 11px;
}

/* Hyperlink Pseudo-Classes */

/* Base anchor style */
a {
    text-decoration: underline;
    color: var(--blackColor);
}

/* Unvisited link */
a:link {
    text-decoration: underline;
    color: var(--blackColor);
    font-weight: bold;
}

/* Visited link */
a:visited {
    text-decoration: underline;
    color: darkBlue;
}

/* Hover state */
a:hover {
    text-decoration: none;
    color: DarkRed;
    font-weight: bold;
}

/* Active state */
a:active {
    text-decoration: underline wavy DarkRed;
    font-weight: bold;
}