@font-face {
  font-family: 'Underground';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/underground.woff") format("woff"), url("../webfonts/underground.ttf") format("truetype"); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: arial, helvetica, ubuntu, sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}
#error, #success{
    background: #990000;
    padding: 10px;
    color: #fff;
    font-size: 21px;
}
#success {background: #009900;}
#fullpage {
    position: relative;
    display: block;
    height: 100vh;
    width: 100vw;
background: #4a4740;
    overflow-x: hidden;
}

#pagebody {
    background: #4a4740;
}

#frontpage {
    background-image: url("../img/logo_white.png");
    background-position:  left center;
    background-repeat: no-repeat;
    background-size: auto;
}

.faqQuestion {
    font-weight: bold;
    color: #c9b47b;
    display: block;
    padding-bottom: 3px;
    margin-left: 20px;
    margin-right: 20px;
    border-bottom: 2px dashed #c9b47b;
}

.faqAnswer {
    border-radius: 5px;
    padding: 10px;
    margin: 20px;
    border: 1px solid #c9b47b; 
    background: #bab7af;
    color: #333;   
}

.torAddr {
    font-family: monospace;
    font-size: 11px;
}
.noTab { display: none; }

.guestForm {
    display: block;
    width: 400px;
    border-radius: 8px;
    padding: 8px;
    background: #4d2002;
    margin: 50px auto;

}
.guestFormTitle {
   font-family: "Underground", arial, sans-serif;
   font-weight: bold;
   text-align: center;
   font-size: 29px;
   color: #fff;    
}

.guestFormArea {
    display: block;
    background: #fff;
    border-radius: 3px;
    padding: 5px;
}
.guestFLine {
    margin: 10px 0;
    
}
table.faqTab {
    width: 100%;
    border-collapse: collapse;
    margin: 10px;
}
table.faqTab th {
    background: #fff;
    color: #333;
    text-align: left;
}
table.faqTab tr.c1, .c1 {
    background: #ebd8a4;
}
table.faqTab tr.c2, .c2 {
    background: #a4ebc0;
}
.opt_area {
    margin: 30px;
    text-align: center;
}
.opt_area a {
    border-radius: 10px;
    padding: 10px 30px;
    background: #ccc;
    text-align: center;
    color: #333;
    text-decoration: none;
    margin: 10px;
    white-space: nowrap;
}
.errorHeader {
    display: block;
    font-family: 'Underground', serif;
    font-size: 45px;
    text-align: center;
    margin: 10px;
    color: #550000;
}

.page_logo {
    display: block;
    margin: 10px;
    text-align: center; 
}

.infoTxt {
    color: #fff;
    text-align: center;
}
/** MENU **/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  height: 60px;
  width: 100%;
  background-color: #403d36;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo {
  font-size: 32px;
}

.logo img {
    height: 60px;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: #4c9e9e;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 14px;
}

/* DROPDOWN MENU */
.services {
  position: relative; 
}

.dropdown {
  background-color: rgb(1, 139, 139);
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}

.dropdown li:hover {
  background-color: #4c9e9e;
}

.services:hover .dropdown {
  display: block;
}

input[type=checkbox] {
  display: none;
} 

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
.opt_area a { display: block; }
table.faqTab { display: none; }
.noTab { display: block; }
 .menu {
    display:none;
    position: absolute;
    background-color:teal;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }

  .menu li:hover {
    display: inline-block;
    background-color:#4c9e9e;
    transition: 0.3s ease;
  }
  .logo img { height: 32px; }
  .menu li + li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: #4c9e9e;
  }
}
/** MENU EOF **/
