/*
===========
Variables
===========
*/
:root {
	--bg-color: #1e1e1e;
	--bg-gradient: linear-gradient(
		to right, rgba(115, 125, 254,0.1) 0%,
		rgb(255, 202, 201,0.1) 100%
	);
  /* background-image: url(/assets/bg-mobile.png); */
	--bg-gradient-2: linear-gradient(
		to right,
		rgba(115, 125, 254, 0.1),
		rgba(255, 202, 201, 0.1)
	);
	--btn-gradient: linear-gradient(
		to right,
		rgb(115, 125, 254),
		rgb(255, 202, 201)
	);
	--text-color: #eeeeee;
	--large-font:  clamp(4rem, 3.9286rem + 0.3571vw, 4.25rem);
	--medium-font:clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
  --body-font: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem)
	--btn-font:clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
}

/* || RESETS */

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

body {
	line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

button {
	all: unset;
	outline-color: transparent;
}

li {
	list-style-type: none;
}
a{
  all: unset;
}
html {
	min-width: 100%;
	height: 100%;
	/* overflow-y: hidden; */
}

body {
	width: 100%;
	min-height: 100vh;
	font-size: 14px;
  display: flex;
  flex-direction: column;
	/* height:100%*/
}

/*
 ===========
 TYPOGRAPHY
 ===========
 */
html {
	/* overflow-y: hidden; */
}
body {
	font-family: "Montserrat", sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
	font-family: "Niconne", cursive;
}
h2{
	/* font-size: 1.25rem; */
}
h3{
	font-size: var(--medium-font);
}

/*
   ===========
   LAYOUT
   ===========
   */
/* BODY */
body {
	margin: 0;
	background-color: var(--bg-color);
	background-image: var(--bg-gradient);
	background-blend-mode: normal;
	background-size: cover;

	color: var(--text-color);
	z-index: -1;
	position: relative;
	/* overflow: hidden; */
}
/* BODY SVGS */
.shapes-bg-bottom-mobile {
	position: absolute;
	bottom: -100px;
	right: -50px;
}
.shapes-bg-mobile {
	position: absolute;
	top: -100px;
	left: -40px;
	z-index: -1;
}

.shapes-bg-bl-desktop,
.shapes-bg-br-desktop,
.shapes-bg-tl-desktop {
	display: none;
}

nav {
	display: none;
}

/* MAIN */
.main-wrapper{
	 min-height: 80vh;
  flex: 2;
}
main {
	padding: 24px;
  flex: 2;
 
}

/*  HEADER  */
.desktop-text {
	display: none;
}

header {
  /* flex: 1; */
	position: fixed;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	padding: 0 24px;
	background-color: var(--bg-color);
	background-image: var(--bg-gradient);
	/* background-blend-mode: blend; */
	/* background-size: cover; */
}

header .logo {
	width: 100px;
	height: auto;
}

.logo img {
	width: 100%;
	height: auto;
}
/* MENU */
#menu-items-container {
	/* border: 2px solid; */
	width: 100%;
	height: 80vh;
	background-color: var(--bg-gradient-2);
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu-items {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	font-size: var(--medium-font);
}
.menu-item {
	position: relative;
	padding: 10px;
	/* border: 2px solid; */
	text-align: center;
	transition: all 1s;
	overflow: hidden;
	font-weight: 500;
}

.menu-item a {
	color:var(--text-color);
	text-decoration: none;
}
.menu-item:before {
	content: "";
	width: 100%;
	height: 2px;
	background-color: transparent;
	transform: translateX(-100%);
	transition: all 0.3s;
	position: absolute;
	top: 2px;
	left: 0;
	opacity: 0;
}

.menu-item:after {
	content: " ";
	width: 100%;
	height: 2px;
	background-color: transparent;
	transform: translateX(100%);
	transition: all 0.3s;
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0;
}

.menu-item:hover:before,
.menu-item:hover:after {
	background: var(--btn-gradient);
	transform: translateX(0);
	opacity: 1;
}

.border-bottom {
	border-width: 0 0 3px;
	border-style: solid;
	border-image: var(--btn-gradient) 1;
}

a:hover {
	border: none;
}

.close-menu {
	display: none;
}
/* || Hero Section */
#hero-section {
	/* border: 2px solid; */
	margin-top: 60px;
	padding: 16px;
	height: 40vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	row-gap: 24px;
	line-height: 1.5;
	font-size: var(--body-font);
}



/* SECTION 2 */
#section-two {
	padding: 0 16px;
	display: flex;
	flex-direction: column;
}

#section-two h3 {
	width: fit-content;
	padding: 18px 4px;
}

#section-two .title-text {
	position: relative;
	margin-bottom: 16px;
	/* border: 2px solid; */
}

#section-two .title-text svg {
	
	position: absolute;
	bottom: 4px;
}

#section-two p {
	line-height: 1.6;
	max-width: 60ch;
	text-wrap: pretty;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
	font-weight: 300;
}

/* BUTTONS */
#view-work {
	background: var(--btn-gradient);
	font-size: var(--btn-font);
	padding: 9px 18px;
	border-radius: 4px;
	border: none;
	color: var(--bg-color);
	font-weight: 500;
	animation: wobble 0.8s 2;
}
.more-btn {
	font-size: var(--btn-font);
	padding: 4px;
	margin: 16px 20px 0px;
	border-radius: 4px;
	color: var(--text-color);
	background-color: transparent;
	border-width: 0 0 3px;
	border-style: solid;
	border-image: var(--btn-gradient) 1;
		transition: all 0.8s;

}

.more-btn:hover{
	animation: border 1s; 
}
/* 2. Wobble Animation */

@keyframes wobble {
  0%,
  100% {
    transform: translateX(0%);
  }
  15% {
    transform: translateY(-25%) ;
  }
  30% {
    transform: translateY(20%) ;
  }
  45% {
    transform: translateY(-15%);
  }
  60% {
    transform: translateY(10%) ;
  }
  75% {
    transform: translateY(-5%) ;
  }
}

@keyframes border {
  0% {
    border-width: 0;
  }
   50% {
     border-width: 0;
  }
	75%{
		 border-width: 0 0 2px;
	}
  
  100% {
    border-width: 0 0 2px;
  }
}
/* || Footer */

footer {
  /* flex: 1; */
  margin-top: 50px;
	height: 40px;
	width: 100%;
	font-size: 10px;
	background-image: var(--bg-gradient-2);
	text-align: right;
	/* color: #181818; */
	z-index: 12;
	
	padding-right: 24px;

}

footer p {
	/* border: 2px solid; */
	display: flex;
	align-items: center;
	height: 100%;
	width: fit-content;
	margin-left:auto;
}

/*
 =================================
 BACKGROUND/IMAGES/COLORS
 =================================
 */

/*
 =============
 ACTIVE-STATES
 =============
 */

/*
 =====================================
 LARGE SCREENS 
 =====================================
 */
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	:root {
		--btn-font: 0.875rem;
    --body-font:1rem;
    --large-font:2.5rem;
	}
	.mobile-text {
		display: none;
	}

	.desktop-text {
		display: block;
	}
	body {
		font-size: 16px;
	}
/* HEADER */
header .logo{
  width: 120px;
}
.menu, .close-menu{
  width: 32px;
  height: 32px;
}

.menu svg, .close-menu svg{
   width: 100%;
  height: 100%;
}
  /*  MAIN */
  main {
	padding: 10%;
}
	/* HERO SECTION */
  .desktop-text h1{
    font-size:var(--large-font) ;
  }
	#hero-section {
		padding: 16px;
		height: 30vh;
    line-height: 1.6;
    font-size: var(--body-font);

	}

	#view-work {
		font-size: var(--btn-font);
		padding: 12px 24px;
		border-radius: 4px;
		border: none;
	}

	#section-two {
		text-align: center;
		/* border: 2px solid; */
	}

	#section-two p{
    /* border: 2px solid; */

    border-bottom: 32px;
  }

  #section-two .title-text{
    margin-bottom:24px ;
  }
	footer {
    height: 50px;
		font-size: 12px;
	}

	.service img{
width: 16px;
height: auto;	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	/* :root {
		--body-font: 0.875rem;
		--medium-font: 1rem;
		--large-font: 2.5rem;
		--btn-font: 0.625rem;
	} */

	/*  MAIN */
  main {
	padding: 7%;
}
	.menu,
	.close-menu {
		display: none;
	}
	button {
		font-size: var(--btn-font);
	}
	body {
		font-size: var(--body-font);
	}
	header {
		justify-content: end;
		background: none;
	}

	header .logo {
	}

	.shapes-bg-bottom-mobile,
	.shapes-bg-mobile {
		display: none;
	}

	.shapes-bg-tl-desktop {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}

	.shapes-bg-bl-desktop {
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	.shapes-bg-br-desktop {
		display: block;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
	}
	/* NAVIGATION */
	nav {
		display: block;
		width: 15%;
		height: 89vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	nav ul {
		width: fit-content;
	}

	nav ul li {
		font-size: var(--body-font);
	}

	/* MAIN */
	main {
		position: relative;
		width: 85%;
		display: flex;
		flex-direction: column;
		/* justify-content: space-between; */
	}

	/* HERO SECTION */
	#hero-section {
		margin-top: 80px;
	}
	.desktop-text {
		display: block;
	}

	.mobile-text {
		display: none;
	}

	h1 {
		font-size: var(--large-font);
		font-weight: 500;
	}

	.main-wrapper {
		display: flex;
	}

	/* SECTION 2 */
	#section-two {
		width: 100%;
		height: 115px;
		/* border: 2px solid; */
		flex-direction: row;
		align-items: end;
		justify-content: end;
		position: absolute;
		bottom: 10px;
		right: 10px;
		column-gap: 20px;
		padding: 0 24px;
	}

	#section-two p {
		font-size: 0.6875rem;
		width: 230px;
		height: 115px;
		font-weight: 300;
	}
	.title-text {
		/* border: 2px solid green; */
		align-self: stretch;
		padding: 0;
    ,a
	}

	#section-two .title-text h3 {
		padding: 0 4px;
	}

	#section-two .title-text svg {
		bottom: 0;
		top: 24px;
	}
	/*  BUTTON */
	.more-btn {
		display: none;
	}
}

footer {
	color: var(--text-color);
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	/* :root {
		--body-font: 1rem;
		--medium-font: 1.25rem;
		--large-font: 4rem;
	} */
	.menu,
	.close-menu {
		display: none;
	}

	header {
		justify-content: end;
		background: none;
	}

	header .logo {
	}

	.shapes-bg-bottom-mobile,
	.shapes-bg-mobile {
		display: none;
	}

	.shapes-bg-tl-desktop {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}

	.shapes-bg-bl-desktop {
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	.shapes-bg-br-desktop {
		display: block;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
	}
	/* NAVIGATION */
	nav {
		display: block;
		width: 15%;
		height: 89vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	nav ul {
		width: fit-content;
	}

	nav ul li {
		font-size: 20px;
	}

	/* MAIN */
	main {
		position: relative;
		width: 85%;
		display: flex;
		flex-direction: column;
		/* justify-content: space-between; */
	}

	/* HERO SECTION */
	#hero-section {
		margin-top: 80px;
	}
	.desktop-text {
		display: block;
	}

	.mobile-text {
		display: none;
	}

	h1 {
		font-size: var(--large-font);
		font-weight: 500;
	}

	.main-wrapper {
		display: flex;
	}

	/* SECTION 2 */
	#section-two {
		width: 100%;
		/* border: 2px solid; */
		flex-direction: row;
		align-items: end;
		justify-content: end;
		position: absolute;
		bottom: 10px;
		column-gap: 40px;
		padding: 0 24px;
	}

	#section-two p {
		font-size: 14px;
		width: 321px;
		font-weight: 300;
	}
	.title-text {
		/* border: 2px solid green; */
		align-self: stretch;
		padding: 0;
	}

	#section-two .title-text h3 {
		padding: 0 4px;
	}

	#section-two .title-text svg {
		bottom: 0;
		top: 24px;
	}
	/*  BUTTON */
	.more-btn {
		display: none;
	}

	footer {
		color: var(--text-color);
	}
}
