/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0a0f1c;
    color: #fff;
}

/* Header fixo e translúcido */
header {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 64px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(8, 16, 36, 0.75);
    z-index: 1000;
}

header .logo img {
    height: 120px;
    transform: translateY(28px); /* metade pra fora */
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffd700;
}

/* Banner ocupa quase a tela toda */
.banner {
    min-height: calc(100vh - 60px); /* deixa espaço pro footer */
    background: linear-gradient(rgba(8, 16, 36, 0.7), rgba(8, 16, 36, 0.7)),
                url('../uploads/banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner h1 {
    font-size: 4em;
    color: #e6f0ff;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.5em;
    color: #cfd9e6;
    margin-bottom: 30px;
}

.cta {
    display: inline-block;
    background: transparent;
    color: #e6f0ff;
    padding: 14px 36px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid #e6f0ff; /* contorno clean */
    transition: all 0.4s ease;
    letter-spacing: 1px;
    position: relative;
}

/* efeito hover */
.cta:hover {
    background: #e6f0ff;
    color: #0a0f1c; /* inverte: texto escuro no fundo claro */
    box-shadow: 0 6px 18px rgba(230, 240, 255, 0.25);
    transform: translateY(-2px);
}

/* brilho inicial invisível */
.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    border-radius: 50px;
    opacity: 0;                  /* invisível no estado normal */
    transition: left 0.8s ease, opacity 0.3s ease;
}

/* só aparece e se move no hover */
.cta:hover::after {
    left: 120%;
    opacity: 1;
}



/* Footer fixo no final */
footer {
    height: 60px;
    text-align: center;
    padding: 16px;
    background-color: #000814;
    color: #fff;
    font-size: 0.9em;
}


/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        height: 56px;
        padding: 0 16px;
    }

    header .logo img {
        height: 92px;
        transform: translateY(18px);
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 6px 0;
    }

    nav ul li a {
        line-height: 56px;
        font-size: 0.9em;
    }

    .banner h1 {
        font-size: 2.5em;
    }

    .banner p {
        font-size: 1.2em;
    }

    .cta {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

/* Banner Cardápio */
.banner-cardapio {
  background: linear-gradient(rgba(8, 16, 36, 0.7), rgba(8, 16, 36, 0.7)),
              url('imgs/cardapio-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #e6f0ff;
}

.banner-cardapio h1 {
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.banner-cardapio p {
  font-size: 1.2em;
  margin-top: 10px;
  color: #cfd9e6;
}

/* Container do cardápio */
.menu-container {
  padding: 60px 40px;
  background-color: #0d162b;
}

/* Cada categoria */
.menu-section {
  margin-bottom: 60px;
  text-align: center;
}

.menu-section h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #fff694; /* dourado claro */
}

/* Grid de itens */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-item {
  background: #081024;
  padding: 25px;
  border-radius: 12px;
  color: #e6f0ff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.menu-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fff;
}

.menu-item p {
  font-size: 1em;
  color: #cfd9e6;
  margin-bottom: 15px;
}

.price {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff694;
}
