/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-image: url(./12.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Restante do seu CSS existente... */
.logo {
  width: 250px;
  height: 150px;
  margin-top: 15px;
  background-image: url(./001LaFruta.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 30px;
  left: 20%;
} 
.main-content {
  position: relative;
  z-index: 1;
}

.image-container {
  display: none; /* Escondido no mobile */
}

.content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 80svh;
  padding: 0px 40px;
}

.diner-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  color: #fff;
}

.diner-slogan {
  font-size: 1rem;
  color: #86ba40;
  font-weight: 600;
  padding-top: 15px;
}

.diner-description {
  line-height: 1.6;
  color: #f0f0f0;
}

.diner-description p {
  margin-bottom: 15px;
}

.reservation-btn {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: auto; /* Empurra para baixo */
  width: fit-content;
  align-self: center;
}

.reservation-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Desktop layout */
@media (min-width: 1024px) {
  body {
    background-image: url(./fundo.png);
  }
  .logo {
    width: 360px;
    height: 150px;
    margin-top: 50px;
    background-image: url(./001LaFruta.png);
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));

  }
  .main-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
  }

  .image-container {
    display: block;
    position: absolute;
    width: 50%; /* Aumentado para cortar mais */
    height: 100%;
    top: 0;
  }

  .left-image {
    left: 0;
    background-image: url(./bowl.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    transform: translateX(-50%); /* Corta mais a imagem */
    filter: drop-shadow(2px 4px 16px rgb(0, 0, 0));
  }

  .right-image {
    right: 0;
    background-image: url(./img-bowl.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    transform: translateX(50%); /* Corta mais a imagem */
    filter: drop-shadow(2px 4px 16px rgb(0, 0, 0));
  }

  .content-center {
    padding: 0 5%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    height: 80svh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 600px;
  }

  /* Estrutura do conteúdo */
  .diner-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .diner-slogan {
    font-size: 1.5rem;
    margin-bottom: 60px; /* Espaço aumentado */
  }

  .diner-description {
    font-size: 1rem;
  }
  .reservation-btn {
    margin-top: 0;
    margin-bottom: 80px;
    padding: 18px 40px;
    font-size: 1.1rem;
  }
}

/* Ajustes para telas muito largas */
@media (min-width: 1600px) {
  .left-image {
    transform: translateX(-50%);
  }

  .right-image {
    transform: translateX(50%);
  }
}
