/* reset */

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, font, 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 

html {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

section, article, header, footer, nav, aside, group {
    display: block;
}

/* end reset */

/* main */
/* use this section for styles that will stay the same across all screen sizes */ 

html, body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: url('../images/whitestripes.jpg') center center fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

#content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

/* force the image to stretch the size of the browser window */
#indexphoto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
}

h1 {
    font-family: 'Audiowide', cursive;
    color: #210124;
    text-transform: uppercase;
    background-color: transparent;
    position: absolute;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.contact-info {
    position: fixed;
    background-color: rgba(232, 241, 242, 0.95);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(33, 1, 36, 0.2);
    z-index: 2;
}

.contact-info p {
    margin: 8px 0;
    color: #210124;
    line-height: 1.4;
}

.contact-label {
    font-weight: bold;
    color: #2C423F;
}

/* Desktop styles (1280px and up) */
@media screen and (min-width: 1280px) {
    body {
        background-position: center center;
        background-size: cover;
    }
    
    h1 {
        font-size: 3em;
        letter-spacing: 0.4em;
        left: 2%;
        top: 232px;
        transform: none;
    }

    span.subhead {
        font-size: 0.7em;
    }
    
    .contact-info {
        top: 232px;
        right: 5%;
        left: auto;
        max-width: 400px;
    }
}

/* Tablet styles (768px to 1279px) */
@media screen and (min-width: 768px) and (max-width: 1279px) {
    body {
        background-position: center 40%;
        background-size: 120% auto;
    }
    
    h1 {
        font-size: 2.2em;
        letter-spacing: 0.3em;
        left: 5%;
        right: 5%;
        top: 40%;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        transform: translateY(-50%);
    }
    
    span.subhead {
        font-size: 0.7em;
        display: block;
        margin-top: 8px;
    }
    
    .contact-info {
        bottom: 30px;
        left: 5%;
        right: 5%;
        max-width: 80%;
        margin: 0 auto;
        padding: 20px;
    }
}

/* Mobile styles (320px to 767px) */
@media screen and (min-width: 320px) and (max-width: 767px) {
    body {
        background-position: center 30%;
        background-size: 150% auto;
    }
    
    h1 {
        font-size: 1.8em;
        letter-spacing: 0.2em;
        bottom: 20px;
        left: 5%;
        right: 5%;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        transform: none;
    }

    span.subhead {
        font-size: 0.6em;
        letter-spacing: 0.3em;
        display: block;
        margin-top: 5px;
    }

    .contact-info {
        bottom: 20px;
        left: 5%;
        right: 5%;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Navigation offset for mobile/tablet */
@media screen and (max-width: 1024px) {
    #content {
        padding-top: 48px;
    }
    
    #indexphoto {
        top: 48px;
        height: calc(100% - 48px);
    }
}
    
    