*,
::after,
::before {
  box-sizing: border-box;
}

/* fonts */

html {
  font-size: 100%;
  scrollbar-color: #f4e4c1 #5a3416;
}

/*16px*/

:root {
  /* colors */
  --primary-100: #fdf6ec;
  --primary-200: #f8e7d1;
  --primary-300: #f2d3a2;
  --primary-400: #e6b97a;
  --primary-500: #d49c54;
  --primary-600: #b87e3a;
  --primary-700: #9c642b;
  --primary-800: #704622;
  --primary-900: #3f2914;
  --yeast-yellow: #fff8e1;
  --crumb-beige: #f4e4c1;
  --burnt-bubble: #5a3416;

  /* cool shadows */
  --cool-shadow-100: #e0f2f1;
  --cool-shadow-300: #a0c1bf;
  --cool-shadow-500: #507f7e;
  /* button border, drop shadows */
  --cool-shadow-700: #345453;
  /* dark mode text, hover outlines */

  /* rest of the colors */
  --black: #222;
  --white: #fff;
  --red-light: #f8d7da;
  --red-dark: #842029;
  --green-light: #d1e7dd;
  --green-dark: #0f5132;


  /* fonts  */
  --headingFont: 'Harrington', 'Garamond', serif;
  --bodyFont: 'Rockwell', 'Lucida Sans', sans-serif;
  --smallText: 0.7em;
  /* rest of the vars */
  --backgroundColor: var(--primary-300);
  --textColor: var(--primary-900);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;

  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  background: var(--backgroundColor);
  font-family: var(--bodyFont);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--textColor);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.66rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.15rem;
}

small,
.text-small {
  font-size: var(--smallText);
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
}

.img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* buttons */

.btn {
  cursor: pointer;
  color: var(--white);
  background: var(--primary-500);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transtion);
  text-transform: capitalize;
  display: inline-block;
}

.btn:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-3);
}

.btn-hipster {
  color: var(--primary-500);
  background: var(--primary-200);
}

.btn-hipster:hover {
  color: var(--primary-200);
  background: var(--primary-700);
}

.btn-block {
  width: 100%;
}

/* alerts */
.alert {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-color: transparent;
  border-radius: var(--borderRadius);
}

.alert-danger {
  color: var(--red-dark);
  background: var(--red-light);
}

.alert-success {
  color: var(--green-dark);
  background: var(--green-light);
}

/* form */

.form {
  width: 90vw;
  max-width: var(--fixed-width);
  background: var(--white);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  padding: 2rem 2.5rem;
  margin: 3rem auto;
}

.form-label {
  display: block;
  font-size: var(--smallText);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  border: 1px solid var(--grey-200);
}

.form-row {
  margin-bottom: 1rem;
}

.form-textarea {
  height: 7rem;
}

::placeholder {
  font-family: inherit;
  color: var(--grey-400);
}

.form-alert {
  color: var(--red-dark);
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize;
}

/* alert */

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  width: 6rem;
  height: 6rem;
  border: 5px solid var(--grey-400);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spinner 0.6s linear infinite;
}

.loading {
  margin: 0 auto;
}

/* title */

.title {
  text-align: center;
}

.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
  margin-top: -1rem;
}


/*
=============== 
Navbar
===============
*/

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.nav-center {
  width: 90dvw;
  max-width: var(--max-width);
}

.nav-header {
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-header img {
  height: 5rem;
}

.nav-header h1 {
  font-size: 1.5rem;
  text-decoration: underline;
  color: var(--primary-700);
}

.nav-btn {
  padding: 0.15rem 0.75rem;
}

.nav-btn i {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.show-links {
  height: 310px;
}

.nav-link {
  display: block;
  text-align: center;
  text-transform: capitalize;
  color: var(--grey-700);
  letter-spacing: var(--letterSpacing);
  padding: 1rem 0;
  border-top: 1px solid var(--grey-700);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-500);
}

@media screen and (min-width: 700px) {
  .nav-header h1 {
    font-size: 3rem;
  }

  .nav-btn i {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .nav-header h1 {
    font-size: 5rem;
  }

  .nav-btn i {
    font-size: 2rem;
  }
}

/*
=============== 
Hero
===============
*/

.hero-container {
  margin: 5%;
  outline: 2px solid var(--primary-700);
  background: var(--primary-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text h1 {
  text-align: center;
  font: #1d3f39;
}

.hero-text h4 {
  text-align: center;
  text-decoration: underline;
  padding-inline: 2rem;
}

.hero-text p {
  padding-inline: 7%;
  padding-bottom: 3%;
  text-indent: 1.5rem;
}

.hero-text a {
  color: var(--primary-800);
  text-decoration: none;
}

.hero-text a:hover {
  color: var(--primary-200);
}

.hero-text a:visited {
  color: var(--primary-900);
}

.hero-text a:active {
  color: var(--primary-200);
}

.hero-screenshot {
  width: fit-content;
}

.hero-screenshot img {
  padding-right: 1.5rem;
  max-width: 190px;
  height: auto;
}

@media screen and (max-width: 700px) {
  .hero-container {
    flex-direction: column;
  }
}

/*
=============== 
Footer
===============
*/
.page-footer {
  background-color: var(--primary-700);
  margin-top: auto;
  padding-left: 10px;
  text-align: center;
}

.page-footer p {
  background-color: var(--primary-700);
  color: var(--primary-100);

}


/*
=============== 
Custom scrollbar for all but Firefox
===============
*/

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-600);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-300);
  border: 2px solid var(--primary-900);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-200);
}

.thankyoutext {
  padding-inline: 7%;
  font-size: larger;
  text-indent: 3%;
  text-align: justify;
  color: var(--primary-800);
}


/* ______________ */
/*                */
/*    Begin       */
/*                */
/* ______________ */


.headerWrapper {
  margin: 2%;
  display: flex;
  align-items: center;

}

.welcomeLogo img {
  width: 7rem;
}

.headerTitle {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-left: 2%;
}

.heroDiv {
  padding-inline: 3%;
}

.welcomeMessage {
  max-width: 80%;
  margin: 0 auto 2rem;
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--primary-800);
}

.formWrapper {
  /* outline: 2px black solid; */
  display: flex;
  justify-content: space-around;
  margin-inline: 2%;
  padding: 1%;
}

.inputWrapper {
  /* outline: 2px red solid; */
  font-size: large;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-around;
}

.inputItem {
  position: relative;
  display: inline-block;
}

.inputItem input {
  padding-right: 1.5em;
  width: 5em;
}

.inputItem .unit {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-600);
  pointer-events: none; /* allow clicks to go to input */
  font-size: 0.9em;
}



.pHydrationLevel {
  /* outline: 2px red solid; */
  padding-inline: 50px;
  margin: 5vw;
}

.hydrationField {
  padding-inline: 2%;
  display: grid;
  align-items: center;
}

.hydrationField label {
  font-size: large;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recipe {
  display: flex;
  justify-content: space-around;
  padding-bottom: 2rem;
}

.recipeItem {
  display: flex;
  flex-direction: c;
  align-items: center;
  font-size: 2em;
  padding-inline: 5px;
}

.recipeItem img {
  width: 2.5em;
  padding-right: 5px;
}


/* -------------------- */
/*                      */
/*     @media           */
/*                      */
/* -------------------- */


@media screen and (max-width: 700px) {

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: 1rem;
  }

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


  .hydrationField {
    padding-inline: 2%;
    display: flex;
  }

  .hydrationField label {
    font-size: small;
    padding-right: 12px;
    padding-left: 7px;
  }


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

  .recipeItem img {
    width: 1.5em;
  }
}