/* ++++++++++ BASIC SETUP ++++++++++ */

/* colors */

:root {
  --black: #141312;
  --eggshell: #efefe5;

  --gold: #c09b3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: var(--black);
  color: var(--eggshell);
  font-family: 'Muli', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1199px) {
   html {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  html {
   font-size: 16px;
 }
}

.row {
  max-width: 1140px;
  margin: 0 auto;
}
@media only screen and (max-width: 1439px) {
   .row {
    padding: 0 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .row {
    padding: 0 1rem;
  }
}

/* Typography */

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--eggshell);
  padding: 1rem 0;
}
@media only screen and (max-width: 350px) {
  h1 {
    font-size: 1.1rem;
  }
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  margin-bottom: 6rem;
  font-weight: 400;
  background-color: var(--eggshell);
  color: var(--black);
  text-align: right;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  margin: 1rem 0;
  text-align: center;
}

p,
a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

p--big {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 400;
  background-color: var(--eggshell);
  color: var(--black);
  text-align: right;
  padding-right: 2rem;
}@media only screen and (max-width: 1199px) {
  p--big {
    font-size: 3.5rem;
  } 
}
@media only screen and (max-width: 500px) {
  p--big {
    font-size: 3rem;
  } 
}
@media only screen and (max-width: 350px) {
  p--big {
    font-size: 2.7rem;
  } 
}

i {
  font-size: 3rem;
}

/* Links */

a:link, 
a:visited {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:active {
  color: var(--gold);
  outline: 0;
  border: none;
  cursor: pointer;
}

a:focus {
  outline: 0;
  border: none;
}

button {
  cursor: pointer;
  border: none;
  background: #fff;
  color: var(--black);
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border: 3px solid var(--gold);
  font-weight: bold;
  transition: all 0.2s;
  margin: 1rem 0;
}
@media only screen and (max-width: 767px) {
  button {
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 500px) {
  button {
    padding: 0.7rem 1.5rem;
  }
}

button:hover {
  background: var(--gold);
  color: #fff;
}

/* Reusable Elements */

section {
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 10rem 0;
  }
}

.h2-logo img{
  position: relative;
  top: 120px;
  transform: rotate(-15deg);
  height: 150px;
}
@media only screen and (max-width: 767px) {
  .h2-logo img {
    display: none;
  }
}

/* ++++++++++ SOCIAL ++++++++++ */

.section__social {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 30%;
  left: 2%;
  z-index: 50;
}
@media only screen and (max-width: 767px) {
  .section__social {
    display: none;
  }
}

.section__social a {
  margin-bottom: 2rem;
}

/* ++++++++++ HERO ++++++++++ */

.section__hero {
  height: 100vh;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/gon_101.jpg"); */
  background-size: cover;
  background-position-y: 85%;
  padding: 0;
  margin: 0;
}@media only screen and (max-width: 1199px) {
  .section__hero {
    padding-top: 7rem;
  } 
}

.hero__info {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
@media only screen and (max-width: 767px) {
  .hero__info {
    display: none;
  }
}

.info__contact {
  text-align: right;
}

.hero__logo {
  display: flex;
  justify-content: center;
}


#logo {
  height: 210px;
}
@media only screen and (max-width: 500px) {
  #logo {
    height: 170px;
  }
}
@media only screen and (max-width: 350px) {
  #logo {
    height: 120px;
  }
}

.hero__heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 3rem;
}

#logo-gas {
  height: 120px;
}

.main-nav {
  position: relative;
  padding: 1rem 0;
  color: #fff;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 1199px) {
   .main-nav {
    display: none;
  }
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.main-nav li {
  text-align: center;
  z-index: 150;
}

.fixed .main-nav{
  position: fixed;
  top: 0;
  background-color: var(--black);
  border-bottom: 2px solid #fff;
  box-shadow: 0 2px 5px #777;
}

.nav--down {
  position: relative;
  display: flex;
  justify-content: center;
}

#nav__logo {
  position: fixed;
  top: 0.5rem;
  left: -200px;
  z-index: 100;
  transition: all 1s;
}

#nav__logo img {
  height: 100px;
}

.fixed #nav__logo {
  left: 0.5rem;
}

/* ++++++++++ MOBILE NAV ++++++++++ */

.mobile-nav {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 2rem;
    position: fixed;
    background-color: var(--black);
    border-bottom: 2px solid #fff;
    box-shadow: 0 2px 5px #777;
    width: 100%;
    z-index: 99;
 }
}

.mobile-nav__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__logo img{
  height: 5rem;
  z-index: 100;
}

.mobile-nav__btn {
  cursor: pointer;
}

.menu__bar1, 
.menu__bar2,
.menu__bar3 {
  width: 3rem;
  height: 0.5rem;
  background-color: #fff;
  margin: 0.5rem 0;
  transition: 0.5s;
}

.change .menu__bar1 {
  transform: rotate(-45deg) translate(-0.7rem, 0.7rem);
}

.change .menu__bar2 {opacity: 0;}

.change .menu__bar3 {
  transform: rotate(45deg) translate(-0.7rem, -0.7rem);
}

.mobile-nav__menu {
  list-style: none;
  background-color: var(--black);
  max-height: 0;
  transition: all 0.5s;
  overflow: hidden;
}

.mobile-nav__menu li {
  padding: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.change .mobile-nav__menu {
  max-height: 500px;
}

.mobile__social {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile__social {
    display: block;
  }
}

/* ++++++++++ VIDEO ++++++++++ */

@media only screen and (max-width: 767px) {
  .section__video {
    display: none;
  }
}

.video__fullscreen {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

video {
  width: 100vw;
}

/* ++++++++++ ABOUT ++++++++++ */

.about__story h3 {
  margin-bottom: 1rem;
}

.about__story p {
  margin-bottom: 8rem;
}@media only screen and (max-width: 1199px) {
  .about__story p {
  margin-bottom: 5rem;
  }
}

.about__story a {
  text-decoration: underline;
}

/* ++++++++++ PRESS ++++++++++ */


.press__logos {
  display: flex;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  .press__logos {
    flex-direction: column;
    align-items: center;
  }
}

#less-margin {
  margin-bottom: 50px;
}

#logo__avpn {
  height: 250px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1199px) {
  #logo__avpn {
  height: 180px;
  }
}

#img-naples-sued {
  height: 300px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  #img-naples-sued {
  height: 200px;
  }
}

#logo__merian{
  height: 120px;
}
#logo__avpn2{
  height: 120px;
}
 
#logo__gastroguide {
  height: 120px;
  -webkit-filter: grayscale(0.7);
          filter: grayscale(0.7);
  transition: -webkit-filter 0.25s;
  transition: filter 0.25s;
  transition: filter 0.25s, -webkit-filter 0.25s;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  #logo__merian, 
  #logo__avpn2, 
  #logo__gastroguide {
  height: 75px;
  }
}

a.press__link:hover #logo__klenkes, 
a.press__link:hover #logo__gastroguide {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

a.press__link:hover {
  color: #fff;
}

.press__link p {
  text-align: center;
}


@media only screen and (max-width: 767px) {
  .press__link {
    padding: 1rem 0;
  }
}

/* ++++++++++ BANNER ++++++++++ */

.section__banner {
  height: 50vh;
}
@media only screen and (max-width: 767px) {
  .section__banner {
    display: none;
  }
}

#banner-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/gon_175.jpg");
  background-size: cover;
  background-position: center;
}

#banner-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/gon_025.jpg");
  background-size: cover;
  background-position: center;
}

#banner-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/gon_116.jpg");
  background-size: cover;
  background-position: center;
}

#banner-4 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/gon_013.jpg");
  background-size: cover;
  background-position: center;
}

#banner-5 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/gon_014.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 6rem;
}

#banner-6 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/naples-sued.jpeg");
  background-size: cover;
  background-position: center;
  margin-bottom: 6rem;
}

/* ++++++++++ MENU ++++++++++ */



/* -- PDF MENU -- */

#menu__drinks {
  justify-content: space-between;
}

.pdf__menu {
  color: var(--black);
  background-color: #fff;
  width: 300px;
  height: 400px;
  margin: 0.5rem auto;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s;
}

a.pdf__menu {
  color: var(--black);
  border: 2px solid var(--gold);
}

a.pdf__menu:hover {
  transform: scale(1.1);
}

.pdf__logo {
  width: 295px;
}

@media only screen and (max-width: 1199px) {
  .pdf__menu {
    width: 200px;
    height: 300px;
  }
  .pdf__logo {
    width: 195px;
  }
}

@media only screen and (max-width: 767px) {
  #menu__drinks {
    flex-direction: column;
  }
}


.section__menu {
  background-color: var(--eggshell);
  color: var(--black);
  padding: 7rem 0 5rem 0;
}

.menu__headings {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .menu__headings {
    flex-direction: column;
    align-items: center;
  }
}

#heading__food {
  position: relative;
}

#heading__food:hover {
  cursor: pointer;
}

#heading__drinks {
  position: relative;
}

#heading__drinks:hover {
  cursor: pointer;
}

#menu__titles__food {
  display: -webkit-box;
  display: none;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

#menu__titles__drinks {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

#menu__titles__food h3,
#menu__titles__drinks h3 {
  padding: 0.5rem;
  margin: 0 0.5rem;
}

#menu__titles__food h3:hover,
#menu__titles__drinks h3:hover {
  background-color: var(--gold) !important;
  cursor: pointer;
}

table {
  padding: 1rem;
  border: 4px solid var(--gold);
  width: 100%;
  background-color: #fff;
}

table tr td {
  font-size: 1.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  table tr td {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  table tr td {
    font-size: 0.8rem;
  }
}

.food-info {
  font-size: 0.8rem;
  font-weight: unset;
  padding-bottom: 1rem;
}

.menu__carte__food {
  display: none;
}

.menu__carte__food tr td:nth-child(2) {
  text-align: right;
}

.menu__carte__food tr td:nth-child(1),
.menu__carte__drinks tr td:nth-child(1) {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .menu__carte__food tr td:nth-child(1),
  .menu__carte__drinks tr td:nth-child(1) {
    width: 50%;
  }
}

.menu__carte__drinks tr td:nth-child(3) {
  text-align: right;
}

/* ++++++++++ TO GO ++++++++++ */

.section__to-go p {
  margin-bottom: 5rem;
}

.online-order {
  margin: 2rem 0 6rem 0;
}

#order-link:link,
#order-link:visited {
  font-family: 'Muli', 'Arial', sans-serif;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  font-weight: bold;
  color: var(--eggshell);
  text-decoration: underline;
}

#order-link:hover,
#order-link:active {
  color: var(--gold);
}


.new__place {
  margin-top: 3rem;
}

.address__new {
  margin-top: 2rem;
  padding: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.address__new li {
  margin: 0.2rem 0;
}



/* ++++++++++ RESERVATION ++++++++++ */

.section__booking {
  background-color: var(--eggshell);
  color: var(--black);
}

.section__booking h2 {
  color: var(--eggshell);
  background-color: var(--black);
}

.section__booking h3 {
  margin-bottom: 3rem;
}

.section__booking p {
  margin-bottom: 0;
}

.section__booking a {
  color: var(--black);
  text-decoration: underline;
}

.section__booking a:hover {
  color: var(--gold);
}

.booking__contact {
  display: flex;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  .booking__contact {
    flex-direction: column;
    align-items: center;
  }
}

.booking__form {
  margin-top: 1rem;
}


.success-message {
  max-width: 700px;
  text-align: center;
  padding: 0.5rem 0;
  margin: 2rem auto 4rem auto;
  border: 2px solid #2ecc71;
}

#coupon-link {
  display: flex;
  justify-content: center;
}

#coupon-link a:link,
#coupon-link a:visited {
  font-weight: bold;
}


/* ++++++++++ MODAL ++++++++++ */

#modal__btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 2rem 0 4rem 0;
}

#modal {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh; 
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 200;
}

#modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 500px;
  color: var(--black);
  padding: 1rem 0;
  outline: 3px solid var(--gold);
}
@media only screen and (max-width: 767px) {
  #modal__content {
    width: 80%;
  }
}

#modal__close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #modal__close {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 500px) {
  #modal__content img {
    height: 80px;
  }
}

.modal__input {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
  align-items: stretch;
}

input {
  font-size: 1rem;
  padding: 3px;
  margin: 0.5rem;
}
@media only screen and (max-width: 767px) {
  input {
   font-size: 1.2rem;
  }
}
@media only screen and (max-width: 500px) {
  input {
   font-size: 0.9rem;
   margin: 0.3rem;
  }
}
@media only screen and (max-width: 350px) {
  input {
   font-size: 0.7rem;
  }
}

hr {
  border: 1px solid var(--gold);
}

#modal__time {
  display: flex;
  justify-content: space-between;
}

/* ++++++++++ FOOTER ++++++++++ */
footer {
  font-size: 0.8rem;
  padding: 10rem 2rem 1rem 2rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
@media only screen and (max-width: 767px) {
  footer {
   padding: 3rem 1rem 1rem 1rem; 
  }
}

.footer__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer__info {
   flex-direction: column;
   align-items: center;
  }
}

.footer__info ul {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .footer__info ul{
   margin: 4rem 0;
  }
}

.footer__info table {
  background: transparent;
}

footer #terms a:link,
footer #terms a:visited  {
  font-size: 0.8rem;
  color: var(--eggshell);
  line-height: normal;
}

footer #terms a:active,
footer #terms a:hover {
  color: var(--gold);
}

#hours {
  padding: 0;
  border: none;
  width: inherit;
}

#hours-indicator {
  padding-bottom: 0.5rem;
}

#hours tr td{
  font-size: 0.8rem;
  font-weight: normal;
}

#hours tr td:nth-child(2){
  text-align: center;
}

#hours i {
  font-size: 0.8rem;
}

.footer__copyright {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer__copyright {
   flex-direction: column;
  }
}

.footer__copyright span {
  color: var(--gold);
}

.footer__copyright a:link,
.footer__copyright a:visited {
  color: var(--eggshell);
}

.footer__copyright a:active,
.footer__copyright a:hover {
  color: var(--gold);
}


