/* index */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


/* // app.scss */

@font-face {
    font-family: 'Libre Caslon Text';
    src: url('/fonts/LibreCaslonText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.background-light {
    background-color: #fdfdfd;
}

.background-dark {
    background-color: #f5eee1;
}

.font-bold {
    font-weight: bold !important;
}

.font-italic {
    font-style: italic !important;
}

.font-primary {
    font-family: 'Libre Caslon Text', serif !important;
}

.text-primary {
    color: #f95316 !important;
}

.position-relative {
    position: relative;
}

/* nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 25px 60px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 25px 10px;
  }

  #nav-logo {
    height: 34px;
  }

  .nav-btn {
    font-size: 11px;
  }
}

/* try me */
.page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  margin-left: 20px;
  gap: 10px;
}

.card {
  margin-top: 25px;
  width: 100%;
}

/* home */
.landing-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  color: #333;
  padding: 50px 0;
  overflow-x: hidden;
}

.landing-section.section-1 #landing-logo {
  width: 330px;
}

.landing-section.section-1 .slogan {
  font-size: 78px;
  font-weight: 400;
  line-height: 110px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 10px;
}

.landing-section.section-2 {
  position: relative;
}

.landing-section.section-2 .section-2-intro-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.landing-section.section-2 .title {
  font-size: 78px;
  font-weight: 400;
  margin: 0 auto;
}

.landing-section.section-2 .section-2-intro {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  text-align: center;
}

.landing-section.section-2 #burger-1 {
  position: absolute;
  left: -60px;
  height: 220px;
  top: 70%;
  transform: rotate(38deg);
  z-index: 0;
}

.landing-section.section-2 #folk {
  position: absolute;
  bottom: 1%;
  height: 180px;
  right: 20%;
  transform: rotate(-28deg);
  z-index: 0;
}

.landing-section.section-2 #phone-screen {
  margin: 0 20px;
}

.landing-section.section-3 {
  position: relative;
  text-align: center;
}

.landing-section.section-3 .title {
  font-size: 78px;
  max-width: 930px;
  z-index: 1;
}

.landing-section.section-3 .intro {
  font-size: 58px;
  z-index: 1;
}

.landing-section.section-3 #burger-2 {
  position: absolute;
  left: -80px;
  height: 170px;
  top: 15%;
  transform: rotate(160deg);
  z-index: 0;
}

.landing-section.section-3 #cupcake {
  position: absolute;
  right: 0;
  height: 185px;
  bottom: 15%;
  transform: rotate(-60deg);
  z-index: 0;
}

.landing-section.section-3 #grape {
  position: absolute;
  right: 5%;
  height: 185px;
  top: 5%;
  transform: rotate(60deg);
  z-index: 0;
}

.landing-section.section-4 .title {
  padding: 0 20px;
  font-size: 72px;
  line-height: 90px;
  margin-bottom: 10px;
  text-align: center;
}

.landing-section.section-4 .intro {
  padding: 0 20px;
  font-size: 36px;
  text-align: center;
  line-height: 55px;
}

#wait-list-form {
  position: relative;
  background: #fb5416;
  padding: 25px;
  color: #fff;
  width: 80%;
  max-width: 860px;
  border-radius: 10px;
  box-shadow: #333333 0 0 4px;
}

#wait-list-form h2 {
  margin: 0;
}

#wait-list-form .form-group {
  position: relative;
  z-index: 1;
  margin: 30px 0;
}

#wait-list-form input {
  margin-top: 8px;
  width: 100%;
  height: 36px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #e4e4e7;
  font-size: 20px;
}

#join-waitlist-btn {
  width: 70%;
}

#wait-list-form .form-message {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}

#wait-list-form #avocado {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%) rotate(-60deg);
  z-index: 0;
}

#wait-list-form #knife {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(90%) rotate(10deg);
  z-index: 0;
}

.background-mix {
  background-size: 100% 100% !important;
  background: url("../../assets/home/mesh-gradient.png") no-repeat center;
}

.learn-more {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #999999;
  font-size: 18px;
  font-weight: bold;
  animation: bounce 2s infinite;
}

.learn-more .icon-new-line {
  display: block;
  text-align: center;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media screen and (max-width: 768px) {
  .landing-section.section-1 #landing-logo {
    width: 65vw;
  }

  .landing-section.section-1 .slogan {
    font-size: 7vw;
    line-height: 90px;
  }
  .landing-section.section-2 .title {
    font-size: 10vw;
  }

  .landing-section.section-2 .section-2-intro {
    font-size: 5vw;
    padding: 0 5px;
    line-height: 38px;
  }

  .landing-section.section-2 #burger-1 {
    height: 25vw;
    top: 20%;
  }

  .landing-section.section-2 #folk {
    height: 30vw;
    right: 10%;
  }

  .landing-section.section-3 .title {
    font-size: 8vw;
    padding: 0 10px;
  }

  .landing-section.section-3 .intro {
    font-size: 6vw;
    line-height: 40px;
  }

  .landing-section.section-3 #burger-2 {
    height: 35vw;
  }

  .landing-section.section-3 #cupcake {
    height: 20vw;
  }

  .landing-section.section-3 #grape {
    height: 30vw;
  }

  .landing-section.section-4 #small_logo {
    width: 60vw;
    height: 100%;
  }

  .landing-section.section-4 .title {
    font-size: 8vw;
    line-height: 60px;
  }

  .landing-section.section-4 .title img {
    height: 9vw;
    vertical-align: middle;
  }

  .landing-section.section-4 .intro {
    font-size: 5vw;
    line-height: 40px;
  }

  .landing-section.section-4 #wait-list-form h2 {
    font-size: 16px;
  }

  .landing-section.section-4 #wait-list-form input {
    font-size: 16px;
    height: 30px;
  }
}

@media screen and (min-height: 1300px) {
  .landing-section {
    min-height: 70vh;
  }
}

@media screen and (max-width: 1100px) {
  .landing-section.section-2 #phone-screen,
  .learn-more {
    display: none;
  }
}

/* footer */
.footer {
  background-color: #fb5416;
  color: white;
  text-align: center;
  padding: 40px 0 5px 0;
}

.footer a {
  color: white;
  text-underline-offset: 4px;
  text-decoration: none;
}

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

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}

.footer-section {
  margin: 0 20px;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.footer-bottom .footer-link {
  margin: 0 auto;
  width: 70%;
  display: flex;
  justify-content: space-around;
  font-size: 18px;
}

.footer-link p,
.footer-link a {
  padding: 0 4px;
  font-size: 16px;
  margin: 0;
}

#copy-right {
  margin-top: 25px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  #footer-logo {
    height: 50px;
  }

  .footer-bottom .footer-link {
    width: 100%;
  }

  .footer-link p,
  .footer-link a {
    font-size: 12px;
  }

  #copy-right {
    margin-top: 20px;
    font-size: 10px;
  }
}

/* button */

.btn {
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 6px;
  border: 1px solid #fb5416;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.3s,
    opacity 0.3s;
}

.btn-pill {
  border-radius: 37px;
}

.btn:hover {
  /*transform: scale(1.02);*/
}

.btn:active {
  transform: scale(0.95);
  opacity: 0.65;
}

/* Disabled button styles */
.btn:disabled {
  color: #fb5416;
  background-color: #ffffff;
  cursor: not-allowed;
  opacity: 0.55;
}

.btn:disabled:hover {
  transform: none;
}

.btn-primary {
  background-color: #fb5416;
  color: white;
}

.btn-secondary {
  background-color: #fff;
  color: #fb5416;
  border: 1px solid #ccc;
}

/* legal pages (privacy policy) */
.legal-page {
  padding: 140px 20px 80px 20px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: #262626;
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

.legal-content h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 48px 0 16px 0;
}

.legal-content h1:first-child {
  margin-top: 0;
}

.legal-content h2 {
  font-family: 'Libre Caslon Text', serif;
  font-size: 26px;
  line-height: 1.3;
  margin: 48px 0 12px 0;
  scroll-margin-top: 120px;
}

.legal-content h3 {
  font-size: 20px;
  margin: 32px 0 8px 0;
}

.legal-content h4 {
  font-size: 17px;
  margin: 24px 0 8px 0;
}

.legal-content p {
  margin: 0 0 16px 0;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #f95316;
  text-underline-offset: 3px;
}

.legal-updated {
  color: #6b6b6b;
}

.legal-rule {
  border: none;
  border-top: 1px solid #e3ddd2;
  margin: 48px 0;
}

.legal-toc li {
  margin-bottom: 4px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 520px;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid #e3ddd2;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background-color: #f5eee1;
}

@media screen and (max-width: 768px) {
  .legal-page {
    padding: 120px 16px 60px 16px;
  }

  .legal-content {
    font-size: 15px;
  }

  .legal-content h1 {
    font-size: 30px;
  }

  .legal-content h2 {
    font-size: 22px;
  }
}

