@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret One:wght@400;500;700&display=swap');


/* VARIABLES */
:root {
	--c-dark: #2e2a26;
	--c-brand: #2e2a26;
	--c-brand-light: hsl(33 8.9% 48.2%);
   --c-brand-rgb: rgb(46 42 38);
   --c-body: #2c2c2c;
   --btn-main: linear-gradient(to right, #e7e3d8, #b51a00);
 	--btn-hover: linear-gradient(to left, #e7e3d8, #b51a00);
	--c-footer-link: #fff;
	--c-gray: #ddd;
   --c-icon-start: #e7e3d8;
	--c-icon-end: #8b7561;
	--c-feature-start: #e7e3d8, 
	--c-feature-end: #8b7561;
	--overlay: linear-gradient(rgba(231, 227, 216, 0.7), rgba(139, 117, 97, 0.7));
	--c-accent: #b61f03;
	--c-heading: #2c2c2c;
	--font-main: 'Roboto', Arial, Helvetica, sans-serif;
   --font-heading: 'Poiret One', sans-serif;
   --box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
   --transition: all 0.5s ease;
}

/* DEFAULT STYLES */
body {
	font-family: "Roboto", sans-serif;
	line-height: 1.4;
	position: relative;
	color: var(--c-body);
}

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
/* FONTS */

h1,h2,h3 {
	font-weight: 900 !important;
	color: var(--c-dark);
	font-family: var(--font-heading);
}

h3 {
	font-size: 18px;
}

a {
	text-decoration: none;
	transition: all 0.4s ease;
	font-weight: 800;
	color: var(--c-dark);
}

a:hover {
	color: var(--c-light);
}

/* IMAGES */
img {
	width: 100%;
	height: auto;
	border-radius:5%;
	box-shadow: var(--box-shadow); 
}

.noshadow {
	box-shadow: none;
}

/* SECTIONS */
section {
	padding-top: 60px;
	padding-bottom: 60px;
	z-index: 2;
	position: relative;
}

.section-intro {
	margin-bottom: 40px;
}

.section-intro .divider {
	height: 4px;
	width: 70px;
	background: linear-gradient(to right,#e7e3d8,  #b51a00);
	margin: 16px auto;
}

.feature i {
	background: -webkit-linear-gradient(#e7e3d8, #8b7561);
	background-clip: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-size: 54px;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--overlay);
	z-index: -1;
}

.bg-cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

/* HERO */
.hero-section {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* VIDEO */
.video-responsive{
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
}

.video-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/* BTN */
.btn {
	padding: 14px 22px;
	transition: all 0.3s ease;
}

.btn-main, .btn-navbar {
	background: var(--btn-main);
	border-radius: 50px;
	border: none;
	border-color:red;
	font-weight: 600;
	color: var(--c-dark);
}

.btn-navbar {
	padding:5px 10px;
}

.btn:hover {
	background: var(--btn-hover);
	color: #fff;
	transform: translateY(-5px);
	transition: all 0.3s ease;
}
/* NAVBAR */
.navbar {
	box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  	background: -webkit-linear-gradient(#e7e3d8, #8b7561);
	background-clip: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* COFFEE SECTION */
.coffee .coffee-img, .shop .shop-img {
	position: relative;
}

.coffee .coffee-img .icon, .shop .shop-img .icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(to right,#e7e3d8, #8b7561);
	color: #000;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translateX(-50%);
}

.coffee .coffee-img .icon i, .shop .shop-img .icon i {
	font-size: 36px;
}

/* ROOT PEOPLE */ 
.people {
	box-shadow: 0 12px 12px rgba(0,0,0,0.1);
}

.people .person {
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	padding-bottom: 18px;
}

.people .person img {
	width: 80px;
	height: 80px;
	border-radius: 100px;
}

.people .heart{
	color: #b51a00;
}

/* FOOTER */
footer {
	background-color: var(--c-brand-rgb);
	color: var(--c-brand-light);
	box-shadow: 0 12px 20px rgba(0,0,0,0.1);
	color:var(--c-footer-link);
}

footer p {
	text-align:left;
}

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

ul {
	list-style-type: none;
	padding-left: 0;
	line-height: 1.4;
	font-weight:normal;
	text-align:left;
	margin: 0 auto 20px;;
}

ul li, ul li.news{
	padding-right: 10px;
	display: inline;
}

ul li.news {
	display: block;
}

footer a {
	font-weight: normal;
	transition: 0.2s;
	color: var(--c-brand-light);
}

footer a:hover {
	color: var(--c-footer-link);
}

.social-networks {
	text-align: center;
	padding-top: 0;
	padding-bottom: 5px;
}

.social-networks a {
	font-size: 24px;
	margin-right: 4px;
	margin-left: 4px;
	color: var(--c-footer-link);
	padding: 0 2px 0 2px;
	transition: 0.2s;
}

.social-networks a:hover{
	text-decoration: none;
}

.twitter:hover {
	color: #1da1f2;}

.facebook:hover {
	color: #1da1f2;
}

.youtube:hover
{color: #dd2c28;}

.linkedin:hover 
{color: #29a7e1;}

.telegram:hover {
color: #31b0e8;
}

.whatsapp:hover {
	color: #13990a;
}

@media screen and (max-width: 768px) {
	footer {
    	text-align:center;}
}

