@font-face {
  font-family: 'lostar';
  src: url('../assets/fonts/lostar-webfont.woff') format('woff2'),
    url('../assets/fonts/lostar-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #252525;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2 {
  text-align: center;
  font-family: 'lostar', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 5rem;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #22ff22;
  font-weight: bold;
  font-size: 2.3rem;
  text-align: center;
}

h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  width: 80%;
  margin-left: 10rem;
}

p,
a,
li {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: #C2768D;
}

/* Header Styles */

.header__container {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}


.header__nav ul {

  margin: 0;
  padding: 0;
  display: flex;
}

.header__nav li {
  margin-left: 20px;
}

.header__container a {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  color: #020202;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header__container a:hover {
  color: #d722ff;
}


/* Hero Banner */
.hero-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #595555;
  height: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-banner h1 {
  font-size: 7rem;
  color: #f0f0f0;
  margin-top: -3rem;
}

.hero-banner p {
  font-size: 1.6rem;
}

.hero-banner button {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  background-color: #eaeaea;
  width: 20rem;
  height: auto;
  color: #3e3e3e;
  margin-top: 2rem;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-banner button:hover {
  background-color: #b172b6;
  transform: scale(1.1);
}

.hero-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* CTA Section */
.cta-section {
  background-image: url('../assets/test.png');
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 2rem 2rem;
  height: 25rem;
}

.cta-section p {
  max-width: 60%;
  margin-left: 15rem;
}

.cta-section button {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  background-color: #22ff22;
  color: #252525;
  border: none;
  padding: 1.5rem 2.5rem;
  width: 20rem;
  height: auto;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-section button:hover {
  background-color: #1ed41e;
  transform: scale(1.1);
}

/* Highlight Section */
#highlight-section {
  padding: 50px 20px;
  text-align: center;
}

#highlight-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-card {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border: 7px solid #84ff84;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 60%;
  margin-left: 14rem;
  margin-bottom: 2rem;
}

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

.highlight-card img {
  height: 100px;
  margin-right: 20px;
}

.highlight-info h3 {
  font-size: 24pt;
}

.highlight-info p {
  font-size: 14pt;
}

.highlight-info button {
  background-color: #313131;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.highlight-info button:hover {
  background-color: #1ecb1e;
  transform: scale(1.1);
}

/* Items Section Home */
.items-section-home {
  padding: 50px 20px;
  text-align: center;
}

.items-section-home h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.items-section-home ol {
  list-style-type: none;
  padding: 0;
}

.items-section-home li {
  margin-bottom: 50px;
}

.items-section-home img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.items-section-home h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.items-section-home p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Pantry Section */
.pantry_h {
  margin-top: 10rem;
}

.pantry_header {
  background-image: url('../assets/pantryHeader.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  padding: 2rem;
  color: #2c2c2c;
  text-align: center;
  min-height: 37rem;
}

.pantry_header h2 {
  color: #84FF84;
}

/* Recipes Section */

.recipes_h {
  margin-top: 10rem;

}

.Quantumrecipe_header {
  background-image: url('../assets/recipesHeader.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  padding: 2rem;
  color: #2c2c2c;
  text-align: center;
  min-height: 37rem;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  background-color: #22ff22;
  border: none;
  color: #252525;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  width: 20rem;
  height: auto;
}

.cta-button:hover {
  background-color: #1ed41e;
}

.recipes-header {
  text-align: center;
  margin: 2rem 0;
}

.recipes-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.content {
  display: flex;
  padding: 0 2rem;
  gap: 2rem;
}

.filter-section {
  width: 25%;
}

.filter-form {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.items-section-recipes {
  width: 75%;
}

.recipes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.recipe {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 20rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recipe__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.recipe__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recipes__details {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #666;
}

.detail__term {
  font-weight: bold;
  margin-right: 10px;
  background-color: #9f9f9f;
  color: white;
}

/* Items Section */
.items-section {
  padding: 20px;
  text-align: center;
}

.items-grid,
.items-section-recipes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* padding: 5rem; */
  padding-left: 4rem;
}

.items-section p {
  font-size: 1.5rem;
  max-width: 60%;
  padding: 2rem;
  margin-left: 15rem;
}

.items-grid img {
  width: 100%;
  max-width: 60%;
  height: auto;
  margin-bottom: 20px;
}

.item-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

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

.item-card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.item-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.item-card p {
  font-size: 1rem;
  color: #666;
}

.items-section button {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  background-color: #22ff22;
  color: #252525;
  border: none;
  padding: 1.5rem 2.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.items-section button:hover {
  background-color: #1ed41e;
  transform: scale(1.1);
}

/* Testimonials */

.review-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

}


.review__item {
  margin-bottom: 20px;
  width: 100%;

  max-width: 400px;

}


.testimonial-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.testimonial-description {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-name {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  text-align: right;

}

/* Form Styling */
.reviews__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

.reviews__form label {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.reviews__form .input {
  padding: 0.8rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.reviews__form button {
  background-color: #22ff22;
  color: #252525;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  width: 20rem;
  height: auto;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.reviews__form button:hover {
  background-color: #1ed41e;
  transform: scale(1.05);
}

.reviews__form .error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Blog Styles */
.intro {
  text-align: center;
  margin-bottom: 4rem;
}

.intro h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.forum-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post {
  background-color: #f9f9f9;
  border: 2px solid #ddd;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.post h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #252525;
}

.post a {
  text-transform: uppercase;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #22ff22;
  color: #252525;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.post a:hover {
  background-color: #1ed41e;
}

/* Footer Styles */
footer {
  background-image: url('../assets/footer.png');
  background-repeat: no-repeat;
  color: #292929;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

footer a {
  color: #22ff22;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input {
  border: 1px solid blue;
  max-width: 20rem;
  padding: 0.2rem;
}

button {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 8rem;
  height: 2rem;
  background-color: black;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  color: #22ff22
}