/*
    Student Name: Demani Merritt
    File Name: styles.css
    Date: 03/18/2026
*/

/* CSS Reset */
body, header, nav, main, footer, img, video, h1, h2, h3, ul, li, p, section, article, aside, figure, figcaption, a {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Style rules for body and images */
body {
    background-color: #f6eee4;
}

img, video {
    max-width: 100%;
    display: block;
}

/* Style rule for box sizing applies to all elements */
* {
    box-sizing: border-box;
}

/* Hide tablet-desktop class */
.tablet-desktop {
    display: none;
}

/* Style rules for mobile viewport */

/* Style rule for header */
header {
    top: 0;
    background-color: #2a1f14;
    height: 190px;
}

header img {
    margin: 0 auto;
}

/* Style rules for navigation area */
.mobile-nav a {
    color: #fff;
    font-family: Verdana, Arial, sans-serif;
    text-align: center;
    font-size: 2em;
    text-decoration: none;
    padding: 3%;
    display: block;
}

.mobile-nav a.menu-icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

nav {
    background-color: #2a1f14;
}

#menu-links {
    display: none;
}

#menu-links a {
    display: block;
    text-align: center;
    font-size: 1.5em;
    color: #f6eee4;
    text-decoration: none;
    padding: 0.5em 0;
}

/* Style rules for main content */
main {
    padding: 2%;
    font-family: Verdana, Arial, sans-serif;
    overflow: auto;
    font-size: 1.25em;
}

main p {
    font-size: 1.25em;
    margin-bottom: 1em;
}

main h2 {
    padding-top: 2%;
    margin-bottom: 1em;
}

main h3 {
    padding-top: 2%;
    margin-bottom: 1em;
}

main ul {
    margin-left: 10%;
    margin-bottom: 1em;
}

main li {
    margin-bottom: 0.5em;
}

.link {
    color: #4d3319;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}

#info ul {
    margin-left: 10%;
}

#contact, #form h2 {
    text-align: center;
}

.tel-link {
    background-color: #2a1f14;
    padding: 2%;
    width: 80%;
    margin: 0 auto;
}

.tel-link a {
    color: #f6eee4;
    text-decoration: none;
    font-weight: bold;
}

.round {
    border-radius: 8px;
}

#hero {
    display: none;
}

/* Style rules for footer content */
footer {
    text-align: center;
    font-size: 0.85em;
    background-color: #2a1f14;
    color: #f6eee4;
    padding: 1% 0;
}

footer a {
    color: #f3e6d8;
    text-decoration: none;
}

/* Media Query for Tablet Viewport */
@media screen and (min-width: 620px), print {

    /* Tablet Viewport: Show tablet-desktop class, hide mobile-nav class */
    .tablet-desktop {
        display: block;
    }

    .mobile-nav {
        display: none;
    }

    /* Tablet Viewport: Style rules for header */
    header {
        position: static;
        padding-bottom: 2%;
    }

    /* Tablet Viewport: Style rules for nav area */
    nav {
        padding: 1%;
        margin-bottom: 1%;
    }

    nav ul {
        list-style-type: none;
        text-align: center;
    }

    nav li {
        display: inline-block;
        font-size: 1.5em;
        font-family: Verdana, Arial, sans-serif;
        font-weight: bold;
    }

    nav li a {
        display: block;
        color: #f6eee4;
        padding: 0.5em 2em;
        text-decoration: none;
    }

    /* Tablet Viewport: Style rule for main content */
    main ul {
        margin: 0 0 4% 10%;
    }

    /* Tablet Viewport: Style rules for footer area */
    footer {
        overflow: auto;
        font-size: 0.75em;
    }
}

/* Media Query for Desktop Viewport */
@media screen and (min-width: 1000px), print {

    /* Desktop Viewport: Style rules for header */
    header {
        width: 25%;
        float: left;
        padding-bottom: 0;
    }

    /* Desktop Viewport: Style rules for nav area */
    nav {
        width: 75%;
        float: right;
        margin-top: 4em;
    }

    nav ul {
        text-align: right;
    }

    nav li {
        border: none;
    }

    nav li a {
        padding: 0.5em 1em;
    }

    nav li a:hover {
        color: #2a1f14;
        background-color: #f6eee4;
    }

    /* Desktop Viewport: Style rules for main content */
    main {
        clear: left;
    }

    #info ul {
        margin-left: 5%;
    }

    /* Desktop Viewport: Style rules for hero image */
    #hero {
        display: block;
    }
}

/* Media Query for Large Desktop Viewports */
@media screen and (min-width: 1921px) {

    #container {
        width: 1920px;
        margin: 0 auto;
    }
}

/* Media Query for Print */
@media print {

    body {
        background-color: #fff;
        color: #000;
    }
}