/*
--- 01 TYPOGRAPHY SYSTEM

-font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-font weight
Default: 400
medium:550
semi-bold:600
bold:700

-line height
default:1
small default:1.05
medium: 1.2
paragraph deafult:1.6

--letter spacing
-0.5px
0.75px

--- 02 COLORS

- primary: #e67e22
- Tints: #fdf2e9
- Shades:
#ad3333
#45260a

- Accents:
- Greys:
#6f6f6f (lightestgrey allowed on #fdf2e9)
#555
#333 

--- 05 SHADOWS
 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);

--- 06 BORDER-RADIUS
DEFAULT IS 9PX

--- 07 WHITESPACE

-Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

html {
  /* font size=10px */
  /* 10px/16px = 0.625=62.5% */
  /* percentage of user browser's font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

/**************************************/
/* GENERAL REUSABLE COMPONENT */
/**************************************/

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;

  /* margin-bottom: 9.6rem; */
}

/*.grid:last-child {
  margin-bottom: 0;
}*/

.gird:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-prmary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #555;
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
  color: #421d12;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: #582718;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f5c3a5;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  font-size: 2rem;
  border-radius: 9px;

  /* only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 1s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #b33d18;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #993414;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;

  /* border: 3px solid: #fff: */

  /* Trick to add border inside */
  box-shadow: inset 0 0 0 3px #fff;
}

.menu-pricing {
  font-size: 1.5rem;
  color: #333;
  margin-top: 0.5rem;
}

.menu-pricing p {
  margin: 0.4rem 0;
}

.btn--small {
  display: inline-block;
  background-color: #b33d18;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.5rem;
  margin-top: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn--small:hover {
  background-color: #b04e31;
}

.btn--form {
  background-color: #3d0000;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #f5d0c5;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #b84d4d;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: 0.3s;
}

.link:hover,
.link:active {
  color: #993414;
  border-bottom: 1px solid transparent;
}

*:focus {
  outline: none;
  /*outline: 4px dotted #e67e22;
  outline-offset: 8px;*/
  box-shadow: 0 0 0 0.8rem rgba(230, 34, 171, 0.192);
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-medium {
  margin-bottom: 4.8rem !important;
}

.strong {
  font-weight: 500;
}

.top-notice {
  background-color: #ffefd5;
  color: #000;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  border-bottom: 3px solid #f5c16c;
}

.top-notice marquee {
  white-space: nowrap;
}

/* General header style */
.site-header {
  background: linear-gradient(to right, #efb9a9, #dc623d);
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem; /* space for wave curve */
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styles */

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 10000000;
}

.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.logo img {
  height: 50px;
  margin-top: -4vh;
}

.cart-container {
  margin-left: auto;
  margin-right: 1rem;
}

.cart-container a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  padding: 1rem;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 2.2rem;
  line-height: 1.5;
}

.hero-img {
  flex: 1;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 70%;
  max-width: 300px;
  height: auto;
}

/* Navbar */
.navbar {
  width: 100%;
  background-color: transparent;
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 120rem;
  margin: auto;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  object-fit: contain;
  height: 9rem;
  width: auto;
  filter: drop-shadow(5px 5px 12.5px rgba (0, 0, 0, 0.4));
}

.cart-container {
  font-weight: bold;
  color: white;
}

.cart-container a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3.2rem;
  align-items: center;
  justify-items: center;
}

.nav-links a {
  color: #562010;
  text-decoration: none;
  font-weight: 600;
  font-size: 3.6rem;
}

.nav-links a:hover {
  text-decoration: none;
  font-weight: 600;
  color: #97381b;
}

.floating-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.decor {
  position: absolute;
  width: 40px;
  opacity: 0.8;
}

.decor-1 {
  bottom: 60px;
  left: 20%;
  transform: rotate(20deg);
}

.decor-2 {
  bottom: 100px;
  right: 15%;
  transform: rotate(-15deg);
}

.decor-3 {
  bottom: 30px;
  left: 50%;
  width: 45px;
}

.decor-4 {
  bottom: 50px;
  left: 70%;
  transform: rotate(20deg);
}

.decor-5 {
  top: 100px;
  right: 15%;
  transform: rotate(-15deg);
}

.decor-6 {
  top: 90px;
  right: 50%;
  width: 35px;
}

.decor-7 {
  bottom: 80px;
  left: 40%;
  transform: rotate(20deg);
}

.decor-8 {
  bottom: 70px;
  left: 35%;
  transform: rotate(-10deg);
}

.decor-9 {
  bottom: 90px;
  left: 80%;
  width: 55px;
}

/* Wave Shape */
.wave-shape {
  position: absolute;
  top: 80px; /* adjust depending on your navbar height */
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.wave-shape svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 120rem;
  margin: auto;
  padding: 4rem 2rem;
}

.hero-text {
  flex: 1;
  color: #555;
}

/* Hero Image */
.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

/*mobile nav */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
  color: black;
}

/*
<ion-icon class="icon-mobile-nav" name="menu-outline"></ion-icon>
        <ion-icon class="icon-mobile-nav" name="close-outline"></ion-icon>
*/

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.nav-order {
  text-decoration: none;
  color: #fff;
}

/* STICKY NAVIGATION */
.sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.3);
}

/*************************************/
/* OUR SERVICES SECTION */
/*************************************/

.section-offer {
  padding: 9.6rem 0;
  background-color: #ffd0c1;
}

.subheading-offers {
  background: linear-gradient(to right, #dc623d, #b04e31);
  color: #fff;
  font-size: 3.2rem;
  justify-content: left;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  letter-spacing: 0.75px;
  text-shadow: rgba(240, 54, 7, 0.603);
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #582718;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #6e311f;
}

.step-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  width: 72%;
  height: 85%;
}

.header-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;

  /*BECAUSE I WANT IT TO BE STICKY LATER*/
  height: 9.6rem;
  padding: 0 4.8rem;
}

.logo {
  height: 4.8rem;
  width: 6.8rem;
}

/*************************************/
/* CTA SECTION */
/*************************************/

.section-cta {
  padding: 4.8rem 0 12.8rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: linear-gradient(to right, #e79177, #e38164);
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.678);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom#f5c16c, #ddae61);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #421d12;
}

.cta .heading-secondary {
  color: #802c11;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 4.8rem;
}

.cta-image-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(243, 80, 15, 0.192),
      rgba(230, 63, 34, 0.281)
    ),
    url("./images/cta-image.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #f5e6e6;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(235, 7, 7, 0.1);
}

.cta-form ::placeholder {
  color: #aaa;
}

.cta-form *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(226, 4, 4, 0.5);
}

/***************************/
/* MENU SECTION */
/***************************/

.section-menu {
  padding: 9.6rem 0;
  background-color: #ff8964;
}

.menu-search {
  text-align: center;
  margin: 2rem 0;
}
#menuSearchInput {
  padding: 0.7rem;
  width: 90%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.menu-card {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
  border-radius: 1.3rem;
  overflow: hidden;
  transition: all 0.4s;
  background-color: #fff;
  width: 100%;
  max-width: 40rem;
}

.menu-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.6rem 6.4rem rgba(0, 0, 0, 0.3);
}

.menu-img {
  width: 26.7rem;
  height: 21.4rem;
}

.menu-info {
  padding-top: 1rem;
  padding: 4.8rem;
}

.menu-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-description {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

.menu-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-btn {
  background-color: #993414;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.order-btn:hover {
  background-color: #993414;
}

.menu-img {
  width: 100%;
}

.cart-items {
  font-size: 1.8rem;
  font-weight: 300;
}

.cart-total {
  font-weight: 800;
  font-size: 2rem;
}

.heading-payment {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.8rem;
  color: #421d12;
}

.payment-details {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 3.6rem;
}

.order-details {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 3.6rem;
  font-family: Arial, Helvetica, sans-serif;
}

/**********************/
/* FOOTER SECTION */
/*********************/

.footer {
  background-color: #ff8964;
  padding: 2.5rem 1.5rem;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  background: #ffd0c1;
  padding: 2rem;
  border-radius: 10px;
  color: #2f3a3d;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  padding: 1rem;
  text-align: center;
}

.OPEN {
  color: #b84d4d;
  font-size: 2rem;
}

.footer-column.right {
  text-align: right;
}

.footer-column.left {
  text-align: left;
}

.footer-heading {
  font-size: 4rem;
  color: #333;
  margin-bottom: 2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.footer-column p {
  margin: 0.3rem 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.footer-logo {
  max-height: fit-content;
  max-width: 120px;
  margin-bottom: 1rem;
}

.footer-socials img {
  width: 28px;
  margin: 0.5rem;
}

/* Center text column */
.center-column {
  text-align: center;
}

.designer-credit {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  padding: 1rem;
  margin-top: 2rem;
}

.designer-credit a {
  color: #c1440e;
  text-decoration: none;
  font-weight: 600;
}

.designer-credit a:hover {
  text-decoration: underline;
}

/* Mobile view */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-logo {
    margin: auto;
  }
}
