/*
                
           _                               WEBDESIGN TEMPLATE
       _  |_|
      |_|  _   _                           www.ristorante-unico.de
          |_| |_|     ____________________________________________________________

                         Developed 2025 by     ·:. Informatikbüro Michael Gaida
                                                   http://www.michael-gaida.com


  __________________________________________________________________________________________________________________________

                                                                                             General
  __________________________________________________________________________________________________________________________

*/


* {
  margin: 0; padding: 0; box-sizing: border-box;
}
html, body {overflow: visible !important;}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
 
  background-image: url("10163611_unico-background.png");
  background-repeat: repeat;
  background-color: #ffffff;

}

/*

  __________________________________________________________________________________________________________________________

                                                                                             Header
  __________________________________________________________________________________________________________________________

*/

#AdminBar {
  position: fixed;
  top: 0;
  z-index: 102;	
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0px 20px;
  background: #0c0600;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.8rem;
  color: #FFD700;
  font-weight: bold;
}

/*

  __________________________________________________________________________________________________________________________

                                                                                             Navigation
  __________________________________________________________________________________________________________________________

*/

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav a  {
  text-decoration: none;
  color: #ceb378;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav a:visited  {
  text-decoration: none;
  color: #ceb378;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #EFBF04;
}


/* Burger-Menü */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ceb378;
  transition: all 0.3s;
}

/*

  __________________________________________________________________________________________________________________________

                                                                                             Content
  __________________________________________________________________________________________________________________________

*/

.Headline {
  background: url('10163611_hero-unico.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  animation: fadeIn 1s ease;
}
.Headline h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  text-shadow: 1px 1px #130900;
}

.Headline h2 {
  font-size: 1.2rem;
  margin-top: 10px;
  text-shadow: 1px 1px #130900;
  padding-top: 0.5rem;
}

.Headline p {
  font-size: 1.2rem;
  margin-top: 10px;
  text-shadow: 1px 1px #130900;
}



.page_element_text {
  padding: 10px 20px;
}

.page_element_form {
  padding: 10px 20px;
}

/*

  __________________________________________________________________________________________________________________________

                                                                                             Footer
  __________________________________________________________________________________________________________________________

*/

.footer {
  background: #0c0600;
  color: #ceb378;
  padding: 20px;
  text-align: center;
}

.footer a {
  text-decoration: none;
  color: #ceb378;
  transition: color 0.3s ease;
}

/*

  __________________________________________________________________________________________________________________________

                                                                                             Sonstiges
  __________________________________________________________________________________________________________________________

*/

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    gap: 25px;
  }
  .burger {
    display: flex;
  }
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: #c0392b;
    cursor: pointer;
    z-index: 101;
    display: block;
  }
}


#cookie-bar {
	height: 48px;
}

