/*ESTILOS GLOBAIS E FONTES*/

body {
  background-color: #fdd010;
  font-family: 'Roboto', sans-serif;
  color: #333;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, .logo-text {
  font-family: 'Passion One', cursive;
  font-weight: 700;
}

main {
  width: 80%;
  margin: 0 auto;
  flex: 1;
}

/* HEADER E NAVEGAÇÃO*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

/* LOGO NO HEADER */
.header-logo img {
  max-height: 50px; 
  width: auto;     
  display: block;
}

header nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  margin-left: 25px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-family: 'Alegreya SC', cursive;
  font-size: 1.3em;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.2s;
}

header nav ul li a.active {
  background-color: #d93030;
  color: #fff;
}

header nav ul li a:not(.active):hover {
  background-color: #eee;
}

/*CONTEÚDO DA HOME*/

/* O 'grid' para as 2 colunas */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 40px; 
  padding: 30px 0;
}

/* A coluna de texto da esquerda */
.hero-text-column {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
}

.hero-logo-image {
  max-width: 450px; 
  width: 90%;
  height: auto;
}

/* Subtítulo (A Classic Run & Gun) */
.hero-subtitle {
  font-family: 'Alegreya SC', cursive;
  font-size: 1.6em;
  color: #000000;
  margin: 5px 0 20px 0;
  font-weight: bold; 
}

/* Texto de Descrição */
.hero-description {
  font-size: 1.2em;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contêiner dos Botões */
.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Estilo Base dos Botões */
.btn {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  border: 3px solid #d93030;
  transition: all 0.2s;
}

/* Botão Primário (Preenchido) */
.btn-primary {
  background-color: #d93030;
  color: #fff;
}
.btn-primary:hover {
  background-color: #b02121;
  border-color: #b02121;
}

/* Botão Secundário (Vazado) */
.btn-outline {
  background-color: #fff;
  color: #d93030;
}
.btn-outline:hover {
  background-color: #fdfdfd;
  transform: scale(1.05);
}

/* Contêiner da Imagem Principal (Efeito de 'Player') */
.hero-image-container {
  width: 100%;
  max-width: 800px;
  background-color: #222;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box; 
}

.hero-image-container img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/*OUTROS ESTILOS (Footer, Chefes, Sobre)*/

footer {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
  border-top: 1px solid #eee;
  margin-top: 20px;
}

/* O "caixote" que centra a pág de lista */
.list-page-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 25px;
}

.chef-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}
.chef-list li {
  transition: transform 0.2s;
}
.chef-list li:hover {
  transform: scale(1.03); 
}
.chef-list li a {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  gap: 15px; 
  text-decoration: none;
}
.chef-list li img {
  width: 180px;  
  height: 180px; 
  border-radius: 50%; 
  object-fit: cover;  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
}
.chef-list li span {
  display: block;
  padding: 0;
  font-weight: bold;
  text-align: center;
  color: #333; 
}

.chef-single-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.sobre-main-image {
  max-width: 100%; 
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px; 
  border: 2px solid #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-title-centered {
  box-sizing: border-box; 
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px; 
  font-size: 2.5em; 
  color: #333; 
  margin-bottom: 25px; 
  text-align: center; 
}

.info-card {
  background-color: #fdfdfd;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; 
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.info-card h3 {
  color: #d93030;
  margin-top: 0;
  font-size: 2em;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.info-card h4 {
  color: #e67e22;
  font-size: 1.4em;
  margin-top: 20px;
}
.info-card p {
  line-height: 1.6;
  color: #333;
}

/*NOVOS ESTILOS PARA O GRID DA PÁGINA SOBRE*/

.sobre-grid-container {
  max-width: 800px; 
  margin: 0 auto; 
}

/* ALTERADO: Adicionamos o espaçamento de volta */
.sobre-grid-imagem .hero-image-container {
  margin-top: 0;
  margin-bottom: 25px; 
}


/*RESPONSIVIDADE*/

@media (max-width: 900px) {
  .chef-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  main {
    width: 95%;
  }

  header {
    flex-direction: column;
    align-items: center;
  }
  header nav ul {
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }
  header nav ul li {
    margin-left: 0;
    margin-top: 10px;
  }
  
  /* O grid da Home empilha */
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-text-column {
    align-items: center;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  .chef-list {
    grid-template-columns: 1fr;
  }

  .page-title-centered {
    padding: 0 10px;
  }
  
  .list-page-wrapper {
    padding: 0 10px;
  }
}