@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --color-primary-1: #ffffff;
    --color-primary-2: #f89a1e;
    --color-primary-3: #f8d477;
    --color-primary-4: #f89a1e;
    --color-primary-5: #f89a1e;
    --color-primary-6: #000000;

    --color-neutral-0: #f8f8f8;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding-top: 80px;
}

header {
  background-color: var(--card-color);
}

#nav_logo {
  color: #ffffff;
}

#nav_logo {
  color: var(--accent-color);
}

:root {
  --bg-color: #121212;
  --text-color: #ffffff;
  --h1-color: white;
  --h3-color: #000000;
  --h4-color: #ffffff;
  --h5-color: #ffffff;
  --p-color: #fffbfb;
  --accent-color: #ffffff;
  --card-color: #1e1e1e;
  --h6-color: #080808;
  --navbar-color: #2b2b2b;
  --menu-color: #ffffff;
  
}

body.light-mode {
  --bg-color: #f5f5f5;
  --text-color: #121212;
  --h1-color: black;
  --h3-color: rgb(0, 0, 0);
  --h4-color: #000000;
  --h5-color: #000000;
  --p-color: #222222;
  --accent-color: #ff9900;
  --card-color: #d3d3d3ff;
  --h6-color: #080808;
  --navbar-color: 0#dbdada;
  --menu-color: #2b2b2b;
}

.theme-switch {
  margin-right: 20px;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.theme-switch input {
  opacity: 1;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #333;
  border-radius: 50px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "🌙";
  height: 26px;
  width: 26px;
  left: 4px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #000000;
}

input:checked + .slider:before {
  transform: translateX(28px);
  content: "🌞";
}




.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
}


body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

h3 {
  color: var(--h3-color);
}

p {
  color: var(--p-color);
}

.title {
  color: var(--h1-color);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--navbar-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8%;
  z-index: 1000;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
}

#nav_list {
  display: flex;
  list-style: none;
  gap: 30px;
}

#nav_list li a {
  text-decoration: none;
  color: #bebebe;
  font-weight: 500;
  transition: color 0.3s;
}

#nav_list li a:hover {
  color: #ff9100;
}


body {
  padding-top: 80px;
}

.navbar, .card, .search-box, .button {
  background-color: var(--card-color);
  color: var(--text-color);
}

a {
  color: var(--accent-color);
}


.nav-item.active a {
  border-bottom: 3px solid #ff9100;
  padding-bottom: 4px;
  color: #fff;
}

.nav-item a {
  text-decoration: none;
  padding: 4px;
  color: #bebebe;
}


.search-box {
  display: flex;
  align-items: center;
  background-color: #ccc;
  padding: 5px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}

.search-box input[type="text"] {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 100%;
}

.search-box button {
  padding: 10px 15px;
  border: none;
  background-color: #000000;
  color: rgb(253, 253, 253);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-box button:hover {
  background-color: #ff9100;
}


section {
    padding: 28px 8%;
}

.dish {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 20px 6px rgba(255, 167, 3, 0.788);
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}


.section-title {
    color: #fca400;
    font-size: 1.,563rem;
}

.menu-container {
  position: relative;
  display: inline-block;
}

.menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: var(--menu-color) !important;
}

.dropdown-options {
  display: none;
  position: absolute;
  right: 0;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  border-radius: 8px;
  border: 2px solid var(--text-color);
  list-style: none;
  padding: 20px 0;
  margin-top: 20px;
  min-width: 240px;
  z-index: 1000;
  background-color: var(--menu-color);
}

.dropdown-options li {
  padding: 10px 20px;
}

.dropdown-options li a {
  text-decoration: none;
  color: var(--text-color); 
  font-weight: 500;
  display: block;
  transition: background 0.3s;
}

.dropdown-options li a:hover {
  background-color: #ffbb00;
}

.dropdown-options li a:focus {
  background-color: #ffbb00;
  outline: none;
  border-radius: 8px;
  padding: 10px 20px;
  display: block;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}


h1.title {
  color: var(--h1-color);
  opacity: 100;
}


#navbar {
  background-color: #0f0f0f;
  color: white;
}

body.light-mode #navbar {
  background-color: #ffffff;
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode #navbar a {
  color: #000;
}

body.light-mode #nav_logo {
  color: #ff9100;
}

body.light-mode .dish {
background-color: #a5a5a5ff !important;
color: #000 !important;
box-shadow: 0 0 10px rgba(0,0,0,0.15) !important;
}

body.light-mode .dish-title {
color: #111 !important;
}

body.light-mode .dish-description {
color: #222 !important;
}

body.light-mode .dish .btn-default {
background: #ff9100 !important;   
color: #fff !important;
}

body.light-mode .dish .btn-default:hover {
background: #e67e00!important;
}

#menu {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: center;
}

#dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 40px;
}

.dish {
  width: 300px;
  border-radius: 15px;
  background: #ffffff;
  color: #000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.dish img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.dish-title {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
  text-align: center;
  color: #111;
}

.dish-description {
  font-size: 15px;
  color: #444;
  text-align: center;
  margin-bottom: 15px;
}

.dish .btn-default {
  background: #ff9100;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dish .btn-default:hover {
  background: #e67e00;
}

.dropdown-options {
background-color: #0f0f0f !important;
color: #fff !important;
border-radius: 8px !important;
border: 1px solid #000000ff !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
overflow: hidden !important;
padding: 0 !important;
width: 130px !important;
}

.dropdown-options li {
list-style: none !important;
}

.dropdown-options li a {
display: block !important;
color: #fff !important;
padding: 3px 6px !important;
text-decoration: none !important;
font-weight: 500 !important;
transition: background 0.25s ease, color 0.25s ease !important;
}

.dropdown-options li a:hover {
background-color: #ff9100 !important;
color: #0f0f0f !important;
}

body.light-mode .dropdown-options {
background-color: #fff !important;
border: 1px solid #ddd !important;
color: #000 !important;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .dropdown-options li a {
color: #000 !important;
}

body.light-mode .dropdown-options li a:hover {
background-color: #ff9100 !important;
color: #fff !important;
}

.dropdown-options,
.dropdown-options li a {
transition: all 0.3s ease !important;
}

#avaliacoes-lista-site::-webkit-scrollbar { width: 8px; }
#avaliacoes-lista-site::-webkit-scrollbar-thumb { background-color: #ff8c00; border-radius: 10px; }
#avaliacoes-lista-site::-webkit-scrollbar-track { background-color: #1a1a1a; }

.titulo-avaliacoes {
color: #ff8c00;
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 10px;
text-align: left;
}

.subtitulo-avaliacoes {
font-size: 1.8rem;
color: white;
font-weight: 500;
line-height: 1.3;
text-align: left;
}

.subtitulo-avaliacoes span {
color: #ff8c00;
font-weight: 700;
}

@media (max-width: 768px) {
#avaliacoes-site .titulo-avaliacoes,
#avaliacoes-site .subtitulo-avaliacoes {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#avaliacoes-site > div {
  text-align: center !important;
}
}

@media (max-width: 768px) {
#home {
padding-top: 120px !important;
}

#home .title {
font-size: 1.9rem !important;
line-height: 1.25 !important;
text-align: center !important;
word-break: break-word !important;
margin: 0 auto 10px auto !important;
}

#home .description {
text-align: center !important;
margin-top: 10px !important;
}
}

body.light-mode #avaliacoes-site {
background-color: #d3d3d3ff !important;
color: #000 !important;
}

body.light-mode #avaliacoes-site .titulo-avaliacoes {
color: #ff8c00 !important;
}

body.light-mode #avaliacoes-site .subtitulo-avaliacoes {
color: #000 !important;
}

body.light-mode #avaliacoes-site .subtitulo-avaliacoes span {
color: #ff8c00 !important;
}

body.light-mode #avaliacoes-site .avaliacao-container,
body.light-mode #avaliacoes-lista-site {
background-color: #a5a5a5ff !important;
color: #000 !important;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode #avaliacoes-lista-site::-webkit-scrollbar-thumb {
background-color: #ff8c00 !important;
}

body.light-mode #avaliacoes-lista-site::-webkit-scrollbar-track {
background-color: #f1f1f1 !important;
}


* {
  box-sizing: border-box;
}

#navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
background-color: #0f0f0f; 
color: #fff;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

body {
padding-top: 80px;
}

#nav_logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff9100;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff9100;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
}


@media (max-width: 850px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0f0f0f;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  #navbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  #dishes {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .dish {
    width: 90%;
  }
}

@media (max-width: 480px) {
  #navbar {
    padding: 10px 20px;
  }

  #nav_logo {
    font-size: 1.3rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }
}

body {
  margin: 0;
  padding: 0;
}

#navbar {
  margin: 0;
  top: 0;
}

footer nav,
footer #navbar {
  display: none !important;
}

@media (min-width: 851px) {
  .nav-links {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    width: auto !important;
    padding: 0 !important;
  }

  .hamburger {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #navbar {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    padding: 10px 15px !important;
  }

  .search-box {
    width: 100% !important;
    margin: 10px 0 12px 0 !important;

  }

  .theme-switch {
    margin-right: 10px !important;
  }

  .menu-container {
    margin-left: 8px !important;
  }

  #nav_logo {
    margin-bottom: 10px !important;
  }
}

#nav_logo {
  color: #ffffff !important;
}

#nav_logo .fa-location-dot {
  color: #ff6600 !important;
}

#navbar {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
padding: 15px 30px !important;
background-color: #0f0f0f !important;
color: #ffffff !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
z-index: 1000 !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
border: none !important;
margin: 0 !important;
}

body.light-mode #navbar {
background-color: #ffffff !important;
color: #000000 !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode #navbar a {
color: #000000 !important;
}

body.light-mode #nav_logo {
color: #ff9100 !important;
}

header hr {
display: block !important;
border: none !important;
height: 4px !important;
background-color: #ff9100 !important;
margin: 0 !important;
}

body {
padding-top: 80px !important;
margin: 0 !important;
background-color: #000 !important;
}

body.light-mode {
background-color: #ffffff !important;
color: #000000 !important;
}

#nav_logo {
color: #ff9100 !important;
font-weight: bold !important;
font-size: 1.6rem !important;
text-decoration: none !important;
}

#navbar a {
color: #ffffff !important;
text-decoration: none !important;
transition: color 0.3s ease !important;
}

#navbar a:hover {
color: #ff9100 !important;
}

#intro {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
overflow: hidden;
transition: opacity 1s ease, visibility 1s ease;
}

#intro-img {
width: 110vw;
height: 110vh;
object-fit: cover;
animation: zoomFade 1.8s ease-out;
}

@keyframes zoomFade {
from {
transform: scale(1.25);
opacity: 0.6;
}
to {
transform: scale(1);
opacity: 1;
}
}

#intro.fade-out {
opacity: 0;
visibility: hidden;
}

@media (max-width: 768px) {
#intro {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
background-color: #000 !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
overflow: hidden !important;
z-index: 9999 !important;
}

#intro img,
#intro #intro-img {
position: absolute !important;
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%) !important;
width: 130vw !important;
height: 130vh !important;
object-fit: cover !important;
}
}



