/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints: #fae5d3
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

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

body{
	font-family: 'Rubik', sans-serif;
	line-height: 1;
	font-weight: 400;
	color: #555;

	/* only works if there is no element absolutly positioned in
	relation to body like main-nav has in media query*/
	overflow-x: hidden;
}

html{
	font-size:62.5%;
	overflow-x: hidden;
/*	it doesnot work in safari,so have to do with js*/
/*	scroll-behavior: smooth;*/
}

/********************/
/* General CSS */
/********************/

.container{
	max-width: 120rem;
	margin:0 auto;
	padding: 0 3.2rem;
}

.main-logo{
	height:2.2rem;
}

.grid{
	display: grid;
	column-gap:6.4rem;
	row-gap: 9.6rem;
/*	margin-bottom: 9.6rem;*/
}

/*.grid:last-child{
	margin-bottom: 0;
}*/

.grid:not(:last-child){ /* it is applied only on that grid element which is not the last child. */
	margin-bottom: 9.6rem;
}

.grid--center-v{
	align-items: center;
}

.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);
}

.heading-primary,.heading-secondary,.heading-tertiary{
  color: #333;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.heading-primary{
	line-height: 1.05;
	font-size:5.2rem;
  margin-bottom: 3.2rem;
}

.heading-secondary{
	font-size:4.4rem;
	margin-bottom: 9.6rem;
	line-height: 1.2;
}

.heading-tertiary{
	font-size:3rem;
	margin-bottom: 2.4rem;
	line-height: 1.2;
}

.sub-heading{
	display: block;
	font-size:1.6rem;
	margin-bottom: 1.6rem;
	letter-spacing: 0.75px;
	color: #cf711f;
	text-transform: uppercase;
	font-weight: 500;
}

.btn,
.btn:link,.btn:visited{
	text-decoration: none;
	padding:1.6rem 3.2rem;
	border-radius: 9px;
	font-size: 1.6rem;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-block;
	border: none; /* both properties are for button not link*/
	cursor: pointer;
}

.btn-full:link,.btn-full:visited{
	background: #e67e22;
	color: #fff;
}

.btn-full:hover,.btn-full:active{
	background: #cf711f;
}

.btn-empty:link,.btn-empty:visited{
	background: #fff;
	color: #555;
}

.btn-empty:hover,.btn-empty:active{
	background: #fae5d3;
	box-shadow: inset 0 0 0 3px #fff;
}

.btn--form{
	background: #45260A;
	padding: 1.2rem;
	align-self: end; /* because it is a grid element */
	color: #fdf2e9;
}

.btn--form:hover{
	background: #fff;
	color: #555;
}

*:focus{
	outline: none;
	box-shadow: 0 0 0 0.6rem rgba(230, 125, 34, 0.5);
}

.link:link,.link:visited{
	display: inline-block;
	text-decoration: none;
	color: #e67e22;
	padding-bottom: 2px;
	border-bottom: 1px solid currentColor; /* at hover this will change the color according to the font color */
	transition: all 0.3s;
}

.link:hover,.link:active{
	color: #cf711f;
	border-bottom: 1px solid transparent;
}

.list{
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.list-item{
	display: flex;
	align-items: center;
	gap: 1.6rem;
	font-size: 1.8rem;
	line-height: 1.2;

}

.list-icon{
	width: 3rem;
	height: 3rem;
	color: #e67e22;
}

strong{
	font-weight: 500;
}

.tag--vegetarian{
	background-color: #51cf66;
}

.tag--vegan{
	background-color: #94d82d;
}

.tag--paleo{
	background-color: #ffd43b;
}

/*these helper classes are used to override something that we set previously*/ 

.margin-right-sm {
	margin-right: 1.6rem !important;
}

.margin-bottom-md {
	margin-bottom: 4.8rem !important;
}

.center-text {
	text-align: center;
}


/*******************************************/
/* if flex gap not supported by browser */
/*******************************************/

.no-flexbox-gap .main-nav-list li:not(:last-child) {
  margin-right: 4.8rem;
}

.no-flexbox-gap .list-item:not(:last-child) {
  margin-bottom: 1.6rem;
}

.no-flexbox-gap .list-icon:not(:last-child) {
  margin-right: 1.6rem;
}

.no-flexbox-gap .delivered-faces {
  margin-right: 1.6rem;
}

.no-flexbox-gap .meal-attribute:not(:last-child) {
  margin-bottom: 2rem;
}

.no-flexbox-gap .meal-icon {
  margin-right: 1.6rem;
}

.no-flexbox-gap .footer-row div:not(:last-child) {
  margin-right: 6.4rem;
}

.no-flexbox-gap .social-links li:not(:last-child) {
  margin-right: 2.4rem;
}

.no-flexbox-gap .footer-nav li:not(:last-child) {
  margin-bottom: 2.4rem;
}


