
@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600");

/*
    Skyward Dynamics - Modified
    Diamond icon removed, replaced with image-ready logo container.
*/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark,
audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Make sure to use HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ===================== */
/* Logo container */
/* ===================== */

.logo {
    display: block;
    width: 120px; /* Adjust size */
    height: 120px; /* Adjust size */
    border-radius: 50%; /* Circular shape */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Paste your image URL below */
    background-image: url("images/wings.png");
}

/* Remove any existing diamond or icon content */
.logo:before,
.logo .icon:before {
    content: none !important;
}

/* ===================== */
/* Typography & Layout */
/* ===================== */

body, input, select, textarea {
    color: #555;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
}

a {
    color: #3cadd4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #3cadd4;
    color: #fff;
    border-radius: 4px;
    border: 0;
    padding: 0.75em 1.5em;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
}

.button:hover {
    background-color: #1d9bc6;
}

.button:active {
    background-color: #1684a5;
}

/* Forms */
input, select, textarea {
    border: 1px solid #ccc;
    padding: 0.5em;
    border-radius: 4px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3cadd4;
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
    .logo {
        width: 80px;
        height: 80px;
    }
}
