/*
<!DOCTYPE html>
<!--
Daryl Ramon Wilburn
css.html
9/13/2023
*/

<br>

/* CSS Reset */

body,header,nav,main,footer,img,h1,h3, ul{
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	
}

h1 {

	text-align: center;
	font-size: 72px;
	margin-top: 100px;
}

/* Style rules for body and images */

body {

	background-color: #964B00;
	
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border: 1px solid #ccc;
}

.image-container {

    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 5px; 
}

.image-container img {

    width: 400px; 
    height: 300px; 
    margin-right: 10px;
}

/*Style rules for mobile viewport*/


/*Style rules to show mobile class and hide tab-desk class*/

.mobile {
	display: block;
}

.tab-desk {
	display: none;
}

.mobile h1 {
	font-family: 'Emblema', sans-serif;
}

.mobile h3 {
	font-family: 'Lora', serif;
}

/*Style rules for header area*/

h1 {
	padding: 2%;
	text-align: center;
}

h3 {
	padding: 2%;
	text-align: center;
}

	
/* Style rules for navigation area */

nav {
	background-color: #2a1f14;
}

.mobile-nav a{
	color: #fff;
	text-align: center;
	font-size: 2em;
	text-decoration: none;
	padding: 3%
	display: block;
}

.mobile-nav a.nav-icon{
	display: block;
	position: absolute;
	left: 0;
        top: 0;
        color: #f6eee4;
        padding: 2%;
}

.nav-icon div{
	height: 40px;
	width: 40px;
	color: #2a1f14;
}

/* Style rules for main content */

main {
	padding: 2%;	
	font-family: Geneva, Ariel, sans-serif;
	font-family: 'Lora', serif;
}

main p {
	font-size: 1.25em;
}

main h3 {
	padding-top: 2%;
}

main ul {
	list-type: square;
}

.link {
	color: #4d3319;
	font-weight: bold;
	font-style: italic;
	text-decoration: none;
}

.action {
	font-size: 1.75em;
	font-weight: bold;
	text-align: center;
}

.round {
	border-radius: 6px;
}

aside {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	text-shadow: 4px 4px 10px #c5a687;
}

figure {
	border: 4px solid #2a1f14;
	box-shadow: 6px 6px 10px #c5a687;
	max-width: 400px;
	margin: 2% auto;
}

figcaption {
	padding: 2%;
	border-top: 4px solid #2a1f14;
}

#info ul {
	margin-left: 10%;
}

#contact, #form h2 {
	text-align: center;
}

#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;
}

#questions p{
	cursor: pointer;
}

#answer{
	text-align: center;
	font-weight: bold;
	width: 80%;
	margin: 0 auto;
}

#answer h2{
	display: none;
}

.map {
	border: 5px solid #373684;
}


.mobile-nav a{
	color: #fff;
	text-align: center;
	font-size: 2em;
	text-decoration: none;
	padding: 3%;
	display: block;
}

.mobile-nav a.nav-icon{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	color: #f6eee4;
	padding: 2%;
}

.nav-icon div{
	height: 40px;
	width: 40px;
	color: 2a1f14;
}

/* Style rules for form elements */

fieldset, input, textarea  { 
    margin-bottom: 2%;
}

fieldset legend {
    font-weight: bold;
    font-size: 1.25em;
}

label {
    display: block;
    padding-top: 2%;
}

form #submit {
    margin: 0 auto;
    display: block;
    padding: 2%;
    background-color: #78593a;
    color: #f6eee4;
    font-size: 1.25em;
    border-radius: 10px;
}

/* Media Query for tablet viewport */

@media screen and (min-width: 620px) and print{

/* Tablet Viewport: Show tab-desk class, hide mobile class */

.tab-desk{
	display: block;
}

/* Style rules for navigation area */

nav {
  background-color: #333;
  text-align: right; /* Align the text to the right within the nav */
  padding: 10px;
}

.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav li {
  display: inline; /* Display list items horizontally */
  margin-right: 10px;
  font-size: 1.2em; /* Adjust the font size as needed */
}

.nav a {
  text-decoration: none;
  color: #fff;
}

.nav a:hover {
  text-decoration: underline;
}

}

/* Media Query for Desktop Viewport */

@media screen and (min-width: 1000px) and print {

  /* Desktop Viewport: Style rules for nav area */

  .nav li {
    font-size: 1.5em;
  }

  .nav li a {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .nav li a:hover {
    color: #2a1f14;
    background-color: #f6eee4;
  }

  /* Desktop Viewport: Style rules for main content */

  #info ul {
    margin-left: 5%;
  }
}

/* Styles rules for footer content */

footer {
  text-align: center;
  font-size: 0.75em;
  background-color: #2a1f14; /* Background color for the footer */
  color: #f6eee4;
  padding: 1% 0%;
}

footer p {
  margin: 0; /* Remove default margin for <p> */
}

/* Media query for large desktop viewports */

@media screen and (min-width: 1921px) {

  body {
    background: linear-gradient(to bottom, #964B00, #78593a);
  }

  #wrapper {
    width: 1920px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .main {
    background-color: f6eee4;
  }
}

/* Media query for print */

@media print {

  body {

    background-color: white;
    color: black;
  }
}