/*
Author: Jeremy Sanchez 
Date: October 12, 2025
File Name: styles.css
*/

/* CSS Reset */
/* Remove default margin and padding from common elements. */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}


/* Style rules for body and images */
body {
    background-color: #54c6ff;
}

img {
    max-width: 100%;
    display: block;
}

/* Style rules for mobile viewport */

/* Style rules to show mobile class and hide tab-desk class */
.tab-desk {
    display: none;
}

.mobile {
    display: block;
}

/* Style rules for header area */
.mobile h1 {
    padding: 2%;
    text-align: center;
    font-family: 'Emblema One', cursive;
}


.mobile h3 {
    padding: 2%;
    text-align: center;
    font-family: 'Lora', serif;
}


/* Style rules for navigation area */
nav {
    background-color: #2a1f14;
}

nav ul {
    list-style-type: none;
}

nav li {
    display: block;
    border-top: 0.5px solid #54c6ff;
}

nav li a {
    display: block;
    color: #54c6ff;
    padding: 0.5em 1em;
    text-decoration: none;
}

/* Style rules for main content */
main {
  padding: 2%;
  font-family: 'Lora', serif;
}

main p {
  font-size: 1.25em;
}

main ul {
  list-style-type: square;
}

.link {
  color: #4d3319;
  text-decoration: none;
  font-weight: bold;
  font-style: italic;
}

.action {
  font-size: 1.75em;
  font-weight: bold;
  text-align: center;
}

.round {
    border-radius: 6px;
}

.post {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-image, .about-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Style rule for the aside element */
aside {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 4px 4px 10px #c5a687; 
}


#info ul {
    margin-left: 10%;
}

#contact {
  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;
}

/* Media Query for Table Viewport */
@media screen and (min-width: 620px) {
    /* Table Viewport: Show tab-desk class, hide mobile class */
    .tab-desk {
        display: block;
    }
    .mobile {
        display: none;
    }
    
    /* Table Viewport: Style rules for nav area */
    nav li {
        border-top: none;
        display: inline-block;
        font-size: 1.25em;
    }
    nav li a {
        padding: 0.5em;
    }

}

/* Style rules for footer content */
footer {
  text-align: center;
  font-size: 0.90em;
  background-color: #54c6ff;
  color: #54c6ff;
  padding: 1% 0;
}

footer a {
  color: #54c6ff;
  text-decoration: none;
}

/* Media Query for Desktop Viewport */
@media screen and (min-width: 1000px) {
    /* Desktop Viewport: Style rules for nav area */
    nav li {
        font-size: 1.5em;
    }
    nav li a {
        padding: 0.5em 1.5em;
    }
    nav li a:hover {
        color: #2a1f14;
        background-color: #54c6ff;
        opacity: 0.5;
    }
    
    /* Desktop Viewport: Style rules for main content */
    #info ul {
        margin-left: 5%;
    }
    
}

/* Media Query for Large Desktop Viewport */
@media screen and (min-width: 1921px) {
    body {
        background: linear-gradient(#54c6ff, #78593a);
    }
    #wrapper {
        width: 1920px;
        margin: 0 auto;
    }
    main {
        background-color: #54c6ff;
    }
} 

