* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --primary-color: #124b2a;
  --accent-color: #b70e0a;
  --white: #fdfffc;
  --text-color: #333;
  --font-title: 'Lilita One', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: var(--white);
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  width: 100%;
}

header {
  background-color: var(--primary-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

.header .left_header {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.header .left_header h1 {
  color: white;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 6rem);
  margin-bottom: 1rem;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  padding-left: 0vw;
}

.header .left_header p {
  color: white;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-left: 0vw;
}
h1{
  padding-top: 5vh;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  color: red;
  padding-left: 5vw;
  font-style: normal;
}
p{
  padding-left: 5vw;
  padding-top: 5vh;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.header .right_header {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.header .right_header img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 20%;
  object-fit: cover;
}

.button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  transform: scale(1.05);
}

section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 90%;
  max-width: 1200px;
  margin: 3rem auto;
  gap: 2rem;
}

.card-food {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card-food:hover {
  transform: scale(1.05);
}

.card-food img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video {
  height: 300px;
  width: 100%;
}

video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.container-contact {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem;
}

.container-contact iframe {
  max-width: 100%;
  height: 500px;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header .left_header, 
  .header .right_header {
    width: 100%;
    padding: 1rem;
  }

  .header .left_header h1 {
    text-align: center;
  }

  .header .left_header p {
    text-align: center;
  }

  .button {
    display: block;
    margin: 1rem auto;
  }

  section {
    grid-template-columns: 1fr;
  }

  .card-food {
    height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .header .left_header h1 {
    font-size: 2.5rem;
  }

  .header .left_header p {
    font-size: 1rem;
  }

  .container-contact iframe {
    height: 300px;
  }
}  