/* - SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98 
- COLORs


-FONT Weights:
default:400
medium:500
semi bold:700
bold:800
*/
:root {
  --color-brand--1: #58342c;
  --color-brand--2: #b19470;
  --color-brand--3: #f8fae5;
  --color-brand--4: #25413c;
  --font-weight-1: 400;
  --font-weight-2: 500;
  --font-weight-3: 700;
  --font-weight-4: 800;
}

* {
  font-family: "Campton", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  /* position: relative; */
  overflow-x: hidden;
  background-color: var(--color-brand--3);
}
body {
  position: relative;
}

.nav-bar {
  z-index: 99;
  position: fixed;
  top: 0;
  display: flex;
  flex: 0 1 auto;

  text-decoration: none;
  /* flex-wrap: wrap; */
  width: 100%;
  height: 10vh;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  /* height: 6rem; */
  /* row-gap: 100rem; */
  /* column-gap: 100rem; */
}

.nav {
  display: flex;
  flex: 0 1 auto;
  text-decoration: none;
  /* flex-direction: row; */
  justify-content: space-around;
  align-items: center;
}
.name,
.nav a {
  text-decoration: none;
  padding: 2rem 4rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-2);
  color: var(--color-brand--3);
}
#contact {
  box-shadow: inset 0 0 0 0.5rem rgba(0, 0, 0, 0);
  text-decoration: none;
  background-color: var(--color-brand--4);
  border-radius: 10rem;
  margin: 0rem 2rem;
  transition: all 0.5s;
}
#contact:hover,
#contact:active {
  box-shadow: inset 0 0 0 1rem rgba(0, 0, 0, 0.3);
  background-color: var(--color-brand--3);
  color: var(--color-brand--4);

  font-weight: var(--font-weight-2);
}
.progress-bar {
  position: fixed;
  z-index: 80;
  top: 10vh;
  width: 0vw;
  background-color: var(--color-brand--4);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;

  border-bottom: solid 0.4rem var(--color-brand--4);
  border-top: solid 0.4rem var(--color-brand--3);
}

/* HERO SECTION */
.hero-section {
  padding: 0rem 6.4rem 6.4rem 6.4rem;
  background-color: var(--color-brand--1);
  /* border-bottom-left-radius: 4rem 4rem;
  border-bottom-right-radius: 4rem 4rem; */
  /* display: flex;
  flex: 0 1 auto; */
  display: grid;
  grid-template-columns: 2fr 3fr;
  /* justify-content: center;
  align-items: center; */
  /* grid-template-columns: 3fr 4fr; */
  color: var(--color-brand--3);
  height: 120vh;
  /* row-gap: 1rem; */
}
.hero-description {
  display: inline-block;
  /* padding: 3.2rem; */
  align-self: center;
  justify-self: center;
}
.hero-description h1 {
  font-size: 4.8rem;
  font-weight: var(--font-weight-4);
  padding-bottom: 2.4rem;
}
.hero-description p {
  font-size: 2.4rem;
  font-weight: var(--font-weight-2);
  padding: rem;
  line-height: 1.6;
}
/* .hero-collage {
  padding: 1.6rem;
} */
.collage {
  align-self: center;
  justify-self: center;
  display: flex;
  transform: scale(0.28);
  gap: 8rem;
  overflow: hidden;
  align-items: center;
  justify-content: center;

  /* width: 60vw;
  height: auto; */
  /* width: 50vh; */
}
.collage-landscape {
  grid-template-rows: 1fr 1fr;
  object-fit: cover;
}

.omnifood,
.mapty,
.omni-phone {
  overflow: hidden;
}
.mapty-link,
.omnifood-link {
  text-decoration: none;
}
.mapty-link,
.omnifood-link {
  position: relative;
  text-decoration: none;
  color: var(--color-brand--4);
  font-size: 2.8rem;
}
.mapty-link::before,
.omnifood-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: var(--color-brand--4);
  transition: width 0.3s ease;
}
.mapty-link:hover::before,
.omnifood-link:hover::before {
  width: 100%;
}
.mapty,
.omnifood,
.omni-phone {
  overflow: hidden;
  border-radius: 8rem;
}
.mapty img {
  /* width: auto; */
  /* height: 50%; */
  object-fit: cover;
  border-radius: 10rem;
  transition: all 0.4s;
  overflow: hidden;
}
.omni-phone img {
  object-fit: cover;
  border-radius: 10rem;
  transition: all 0.4s;
}
.omnifood img {
  object-fit: cover;
  border-radius: 10rem;
  transition: all 0.4s;
}
.omni-phone img:hover {
  transform: scale(1.2);
  border-radius: 4rem;

  /* overflow: hidden; */
}
.mapty img:hover {
  transform: scale(1.2);
  border-radius: 4rem;

  /* overflow: hidden; */
}
.omnifood img:hover {
  transform: scale(1.2);
  border-radius: 4rem;

  /* overflow: hidden; */
}

/* Project-Section */
.projects-section {
  padding: 9.6rem 4.8rem;
  background-color: var(--color-brand--3);
}
.section-header {
  color: var(--color-brand--4);
  font-weight: var(--font-weight-3);
  font-size: 2rem;
  padding-bottom: 2.4rem;
}
/* mapty */
.mapty-section {
  position: relative;
  padding: 4.8rem 0rem;
}
.mapty-desc {
  transform-origin: center;
  font-weight: var(--font-weight-3);
  color: var(--color-brand--4);
  font-size: 3.2rem;
  /* position: relative; */
  padding: 1.6rem 1.6rem 0rem 2.4rem;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 20vw;
  text-align: left;
}
.mapty-desc h2 {
  font-size: 3rem;
  padding-bottom: 1.6rem;
}
.mapty-desc p {
  font-weight: var(--font-weight-2);
  line-height: 1.55;
  font-size: 2.4rem;
}
.mapty-carousel {
  /* transform-origin: center; */
  position: absolute;
  /* transform: translate(-50%, 0); */
  right: 0;
  top: 25%;

  /* bottom: 0; */

  /* overflow: hidden; */

  height: auto;
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* omnifood */
.omnifood-section {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 4.8rem 0rem;
}
.omnifood-desc {
  font-weight: var(--font-weight-3);
  color: var(--color-brand--4);

  /* position: relative; */
  padding: 1.6rem 2.4rem 0rem 1.6rem;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 20vw;
  text-align: left;
}
.omnifood-desc h2 {
  font-size: 3rem;
  padding-bottom: 1.6rem;
}
.omnifood-desc p {
  font-weight: var(--font-weight-2);
  line-height: 1.55;
  font-size: 2.4rem;
}
.omnifood-carousel {
  /* transform-origin: center; */
  position: absolute;
  left: 0;
  top: 25%;
  /* background-color: var(--color-brand--2); */
  /* bottom: 0; */

  /* overflow: hidden; */
  margin: 0;
  height: auto;
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 10.8rem;
  height: 20.2rem;
  border-radius: 2rem;
  /* overflow: hidden; */
}

/* SKILL-SECTION */
.skills-section {
  background-color: var(--color-brand--3);
  padding: 9.6rem 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about h3 {
  font-size: 3rem;
  color: var(--color-brand--3);
  font-weight: var(--font-weight-3);
}
.about-me {
  padding: 2.4rem 0rem;
  color: var(--color-brand--3);
  line-height: 1.55;
  font-weight: var(--font-weight-1);
  font-size: 2.4rem;
}
.about-me h3 {
  padding-bottom: 2.4rem;
}
.container {
  border-radius: 4rem;
  background-color: var(--color-brand--4);
  display: grid;
  width: 90vw;
  grid-template-columns: 1fr 2fr;
  overflow: hidden;
}
.Nakul {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.Nakul img {
  object-fit: cover;
  height: 80vh;
  border-radius: 2rem;
}
.skills h2 {
  font-size: 2.4rem;
  padding: 2.4rem 0rem;
  color: var(--color-brand--3);
}
.skills-icons {
  display: flex;
  gap: 4rem;
}
.skill-icon {
  list-style: none;
  font-size: 4rem;
  color: var(--color-brand--3);
}

/* SECTION -FOOTER */
.footer {
  padding: 8.4rem 4.8rem 0rem 4.8rem;
  /* display: flex; */
  /* flex-direction: column; */
  height: 48rem;
  display: flex;
  justify-content: space-between;
  /* border-top-left-radius: 4rem 4rem;
  border-top-right-radius: 4rem 4rem; */
  width: 100%;
  background-color: var(--color-brand--1);
}
.footer-content {
  padding: 4.8rem 0rem;
  width: 40vw;
  /* padding-bottom: 6.4rem; */
  /* justify-content: center; */

  /* align-items: center; */
  text-shadow: 0 0 5rem rgba(0, 0, 0, 0.322);
}
.footer-contactInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: var(--font-weight-2);
  gap: 2.4rem;
}

.footer-heading {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 2.4rem;
  padding-bottom: 2.4rem;

  color: var(--color-brand--3);
  /* align-self: flex-start; */
}

.email,
.mobile {
  position: relative;
  text-decoration: none;
  color: var(--color-brand--3);
  font-size: 2.4rem;
}
.email:before,
.mobile:before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: var(--color-brand--3);
  transition: width 0.3s ease;
}
.email:hover:before,
.mobile:hover:before {
  width: 100%;
}

.address p {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--color-brand--3);
  font-size: 2.4rem;
}
.address p:before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: var(--color-brand--3);
  transition: width 0.3s ease;
}

.address p:hover:before {
  width: 100%;
}

.underFooter {
  display: flex;
  align-items: flex-start;
  border-top: solid 0.2rem var(--color-brand--3);
  /* align-content: center; */
  font-size: 2.4rem;

  padding-top: 2.8rem;
  /* column-gap: 16rem; */
}

.icon {
  color: var(--color-brand--3);
  font-size: 3.2rem;
  transition: all 0.3s ease-in-out;
}
.icon:hover {
  color: var(--color-brand--3);
  border-radius: 10rem;
  /* padding: 0.4rem; */
  font: 3.2rem;
  background-color: var(--color-brand--4);
}
.close {
  display: none;
  color: var(--color-brand--4);
}
.footer_priv,
.footer_tnc,
.footer_sponsor {
  color: var(--color-brand--3);
  text-decoration: none;
  transition: all 0.3s;
}
.footer_priv:hover,
.footer_tnc:hover,
.footer_sponsor:hover {
  color: var(--color-brand--3);
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4.8rem 0rem;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  width: 40vw;
  align-items: center;
  justify-content: flex-start;
}
.social-link {
  height: 2.8rem;
  width: 2.8rem;
  /* border-radius: 10rem; */
}

/* mobile- nav*/

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 4.8rem;
  color: var(--color-brand--4);
  display: none;
  position: absolute;
  top: 4rem;
  right: 4rem;
}
