/*
    Drew Fleming
    style.css
    09/22/2025
*/

/* CSS Reset */
body, header, nav, main, footer, h1, h3, h5, table, tr, td ,th, fieldset, form {
    margin: 0;
    border: 0;
    padding: 0;
}

body {
    background-color: #f5f1ee;
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #8a4810;
  color: #f5f1ee;
}

.fa-instagram {
  background: #8a4810;
  color: #f5f1ee;
}

/* Twitter */
.fa-twitter {
  background: #8a4810;
  color: #f5f1ee;
}

.tablet-desktop {
    display: none;
}

nav {
    display: block;
    background-color: #ffb6ad;
}

.mobile-nav a.menu-icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

nav a {
    color: #562d0f;
    list-style-type: none;
    text-decoration: none;
    font-size: 1.55em;
}

nav a:hover {
        color:#f5f1ee;
        text-decoration: underline;
    }

nav ul {
    text-align: center;
    list-style-type: none;
}

nav li {
    color:#562d0f;
    font-size: 1.5em;
    padding: 3.5%;
    display: block;
    border-top: 2px solid #ffb6ad;
}

#burger {
    background-color: #ffb6ad;
    color: #562d0f;
}

main {
  color: #321809;
  text-align: left;
  font-family: "Myriad Variable Concept, DIN Alternative Bold, Helvetica"; 
  margin: 5.5px;
}

main a {
  text-decoration: none;
  color: #8a4810;
}

main li {
  list-style-type: none;
}

map {
  display: block;
  margin: 20%;
  padding: 20%;
}

/* style rules for form */

form {
  margin-top: 2%;
  background-color: #f5f1ee;
  padding: 2%;
}

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

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

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

form #submit {
  margin: 0 auto;
  border: none;
  display: block;
  padding: 2%;
  background-color: #f5f1ee;
  font-size: 1em;
  border-radius: 10px;
}

/* Menu for the food */
.tab {
  overflow: hidden;
  border: 1px solid #f5f1ee;
  background-color: #8a4810;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #FFD382;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ffb6ad;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #321809;
  border-top: none;
}

footer {
  display: block;
  border-top: 1.5px solid #321809;
}

footer p {
    font-size: 0.75em;
    text-align: center;
    color: #8a4810;
    padding: 0 1em;
}

footer p a {
    color: #8a4810;
    text-decoration: none;
}


/* Media Query for tablet */
@media screen and (min-width: 630px) {
    .mobile-nav {
        display: none;
    }

    .tablet-desktop {
    display: block;
    }

    nav li {
        display: inline-block;
        text-align: center;
        text-decoration: none;
    }

    nav a:hover {
        color:#f5f1ee;
        text-decoration: underline;
    }

    main img {
      width: 500px;
      height:500px;
      display: block;
      border-style: solid;
      border-color:#321809;
    }

    

    table {
      text-align: center;
      border: 1px solid #321809;
      border-collapse: collapse;
      margin: 0 auto;
      width: 100%;
    }

    th {
      font-size: 2em;
    }

    th, td {
      border: 1px solid #562d0f;
      padding: 2%;
    }

    .map {
      width: 400px;
      height: 450px;
    }

    .footer-nav {
      list-style-type: none;
    }

    /* Image gallery Carousel */
    * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #f5f1ee;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f5f1ee;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f5f1ee;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #562d0f;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #321809;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Menu style stuff */

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #f5f1ee;
  background-color: #8a4810;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #FFD382;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ffb6ad;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #321809;
  border-top: none;
}

  
}
