/* color palette
color: rgb(00,67,47)
color: lightgrey
color: grey
color: darkred */

* {
    font-family: 'Georgia';
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: "width" 100;
    margin: 5px;
}

/* navigation bar styling */
.topnav {
    /* image from: https://en.wikipedia.org/wiki/Duquesne_Incline */
    background-image: url('../static/DuquesneInclineHomePage.png');
    background-size: 100% auto;
    height: 35vw;
    overflow: hidden;
    display: flex;
    position: relative;
    justify-content: flex-start;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 40px 20px;
    text-decoration: none;
    font-size: 17px;
}

.topnav .icon {
    color: white;
    position: absolute;
    right: 0;
    top: 0;
}

.topnav li {
    text-decoration: none;
    display: block;
}

#logo {
    margin-top: -30px;
    margin-left: -10px;
}

#wordlogo {
    text-decoration: none;
    color: white;
    font-size: 50px;
    margin-left: 0px;
    margin-top: -10px;
    padding-right: 100px;
}

.topnav #navy {
    text-decoration: none;
    padding: 40px;
    color: white;
    text-align: right;
    margin-left: auto;
    font-size: 20px;
}

.topnav #navy:hover {
    color: darkred;
}

/* hamburger navigation styling */
#hamnav {
    display: block;
    right: 0;
}

#hamnav .icon {
    cursor: pointer;
    color: white;
    font-size: 35px;
    padding-right: 60px;
}

#hamnavlinks {
    display: none;
    margin-left: auto;
    background-color: rgba(0, 67, 47, 0.772);
    overflow: hidden;
    flex-direction: column;
}

#hamnav li a {
    text-decoration: none;
    color: white;
    display: block;
    text-align: left;
}

#hamnav li a:hover {
    background-color: rgba(110, 110, 110, 0.668);
}

body {
    background-color:lightgray;
}

/* fotter styling */
footer {
    background-color:rgb(00,67,47);
    color: white;
    text-align: center;
    padding: 5px;
}

a.footy {
    color:rgb(136, 136, 136);
    padding: 10px;
}

a.footy:hover {
    color: darkred;
}

#copyYear {
    padding: 5px;
}

.main {
    text-align: center;
    padding: 5px;
}

.giftShopTitle {
    background-image: url('../static/gift shop pic.jpg');
    background-size: 100% auto;
    height: 35vw;
}

#historybio {
    display: none;
}

.faq {
    background: lightgray;
}

.faqcontent {
    display: none;
    background: white;
    padding: 15px;
}

.readMore {
    background-color: rgb(61, 61, 61);
    border: none;
    padding: 10px;
}

.readLess {
    background-color: rgb(61, 61, 61);
    border: none;
    padding: 10px;
}

.readMore a {
    text-decoration: none;
    color: white;
}

.readLess a {
    text-decoration: none;
    color: white;
}

form * {
    display: block;
    margin: auto;
    text-align: center;
    padding: 15px;
}

#error {
    color: darkred;
}

#mailingform input[type="submit"]:hover {
    background-color: darkgrey;
}

/* #thankYouMessage {
    display: none;
    color: darkred;
} */

* {box-sizing:border-box}

/* Slideshow container styling from https://www.w3schools.com/howto/howto_js_slideshow.asp*/
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 30px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* home banner */
.wow {
    background-color: rgb(61, 61, 61);
    color: white;
    display: inline-block;
    padding: 10px;
}

.homecontainer {
    display: flex;
    justify-content: space-between;
}

.section {
    width: 80%;
}

.section h2 {
    color: rgb(00,67,47);
}

#heady {
    color: rgb(00,67,47);
    padding: 10px;
    font-weight: 550;
}

#history {
    padding: 0 250px;
}

#discovermenu {
    background-color: white;
    display: inline-block;
    padding: 10px;
}

/* links */
a[href] {
    color: gray;
}

a[href]:hover {
    color:darkred;
}

/* table styling  */
table {
    margin: 0 auto;
}

td {
    padding: 15px;
}

th {
    font-weight: 550;
    padding: 15px;
    color:rgb(00,67,47);
}

tr:nth-child(even) {
    background-color: white;
}

tr:nth-child(odd) {
    background-color: grey;
}

#mailingform {
    background-color: white;
    display: inline-block;
    padding: 5px 70px;
}

/* weather API styling from https://home.openweathermap.org/api_keys*/

.weather-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: inline-block;
}

#cityInput {
    padding: 10px;
    width: 200px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: rgb(00,67,47);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(00,67,47);
}

#weatherInfo {
    margin-top: 20px;
}