/* Author: Axel Esparza
   Date: 09/25/2024
   File: styles.css 
/* CSS Reset */
body, header, nav, main, footer, img, h1, h3 {
    margin: 0;
    padding: 0;
    border: 0;
}

/* General Styles */
:root {
    --background-color: #f6eee4;
    --nav-bg-color: #2a1f14;
    --text-color: #ffffff;
    --footer-text-color: #f6eee4;
    --font-lora: 'Lora', serif;
    --font-emblema: 'Emblema One', cursive;
}

body {
    background-color: var(--background-color);
    font-family: var(--font-lora);
}

img {
    max-width: 100%;
    height: auto;
}

/* Mobile and Desktop Styles */
.mobile {
    display: block;
}

.tab-desk {
    display: none;
}

@media only screen and (min-width: 768px) {
    .mobile {
        display: none;
    }
    .tab-desk {
        display: block;
    }
}

/* Header Styles */
.mobile h1, .mobile h3 {
    padding: 2%;
    text-align: center;
    font-family: var(--font-emblema);
}

/* Main Content Styles */
main {
    padding: 2%;
}

/* Main Content Typography */
main p {
    font-size: 1.25em;
}

main h3 {
    padding-top: 2%;
}

main ul {
    list-style-type: square;
    margin-left: 10%;
}

/* Navigation Styles */
nav {
    background-color: var(--nav-bg-color);
}

nav ul {
    list-style-type: none;
    margin: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    font-size: 1.5em;
    font-family: Geneva, Arial, sans-serif;
    font-weight: bold;
}

nav li a {
    display: block;
    color: var(--text-color);
    padding: 0.5em 2em;
    text-decoration: none;
}

/* Action and Contact Styles */
.action {
    font-size: 1.75em;
    font-weight: bold;
    text-align: center;
    color: var(--text-color);
}

#contact {
    text-align: center;
}

/* Footer Styles */
footer {
    text-align: center;
    font-size: 0.85em;
    background-color: var(--nav-bg-color);
    color: var(--footer-text-color);
    padding: 1% 0;
}

footer a {
    color: #f3e6d8;
    text-decoration: none;
}

/* Utility Classes */
.round {
    border-radius: 6px;
}

.tel-link {
    background-color: var(--nav-bg-color);
    padding: 2%;
    width: 80%;
    margin: 0 auto;
}

.tel-link a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-weight: bold;
}

.link {
    color: #4d3319;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}
