/* General Reset */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(135deg, #ff8c00, #ffd700); 
  color: #000000;
}

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

html {
  font-family: "Nunito", sans-serif;
  font-size: 12px;
}

/* Header and Mini Timeline Styling */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 20px 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  width: 200px;
  height: auto;
}

.mini-timeline {
  display: flex;
  align-items: center;
}

.mini-line {
  width: 40px;
  height: 4px;
  background-color: #3a3f78;
  margin: 0 10px;
}

.mini-step {
  font-size: 1rem;
  font-weight: bold;
  color: #5864a2;
  padding: 5px 10px;
  border-radius: 8px;
}

.mini-step.completed {
  background-color: #3a3f78;
  color: #fff;
}

.mini-step.active {
  background-color: #5864a2;
  color: #fff;
}


.step3 .mini-timeline .mini-step {
  color: white; 
}

.step3 .mini-timeline .mini-step.completed {
  background-color: #3a3f78;
  color: #ffffff; 
}

.step3 .mini-timeline .mini-step.active {
  background-color: #5864a2;
  color: white; 
}


/* Main Section Layout */
.main-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 20px 40px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.left-section, .right-section {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 2px solid #ff8c00; 
}


.main-title {
  font-size: 4rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title-icon {
  width: 70px;
  height: auto;
}

/* Form Styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #000000;
  font-size: 1.1rem;
  background-color: #f0f8e2;
  color: #000000;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); 
  transition: box-shadow 0.3s ease;
}

textarea {
  width: 100%;
  height: 60px;
  padding: 15px;
  border-radius: 8px;
  resize: none;
}

textarea:focus, input:focus {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); 
}

.button-container {
  display: flex;
  justify-content: center; 
  gap: 10px;
}

.calc-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #f0cda9, #ff8c00);
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #000000;
  transition: background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}

.calc-btn:hover {
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  border-color: #ff8c00;
}


.food-table-container h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}

th, td {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  border: 1px solid #000000;
  padding: 8px;
  text-align: center;
  color: #000000;
}

th {
  background-color: #f0cda9;
  color: #000000;
  font-weight: 600;
}

table thead tr {
  background-color: #f0cda9;
  color: #000000;
}

tr:hover {
  background-color: rgba(255, 140, 0, 0.2);
}


.nutrition-facts-container {
  font-size: 1.2rem;
  background-color: #f0cda9;
  color: #000000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); 
  border: 2px solid #ff8c00;
}

.nutrition-facts-title {
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
  text-align: left;
  margin-bottom: 10px;
  border-bottom: 5px solid #000000;
  padding-bottom: 10px;
}


.step3 * {
  font-family: 'Orbitron', sans-serif !important;
  color: #000000;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
}

.nutrition-title, .nutrition-section p {
  font-family: 'Montserrat', sans-serif;
  color: #000000;
}

.nutrition-title {
  font-size: 3rem; 
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  border-bottom: 5px solid #000000;
  padding-bottom: 10px;
}

.nutrition-section {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000000;
}

.nutrition-section p {
  margin: 6px 0;
}

.nutrition-section p.indented {
  padding-left: 15px;
  font-weight: normal;
  font-size: 1.3rem;
}

.nutrition-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.health-icon {
  width: 50px;
  height: 50px;
}

.below-title-icon {
  display: block;
  margin: 5px auto;
  width: 220px;
  height: auto;
}
