/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/poppins-1.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/poppins-2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/poppins-3.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/poppins-4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

h1 {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 100px;
  font-weight: bold;
}

nav {
  margin-top: 20px;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000; /* Keep it above other content */
}

/* Styling for the nav links */
nav a {
  color: #000000;
  text-decoration: none;
  margin: 0 150px;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #707070;
}

/* Sections for Home, About Me, and Portfolio */
.section-nav {
  padding: 100px 20px;
  margin-top: 60px; /* Offset for fixed navbar */
}



body{
  margin: 0;
  background-color: rgb(12, 12, 12);
}

.about-text{
  font-family: "Poppins";
  font-size: 100px;
  font-weight: bold;
  color: white;
  margin-top: 60px;
}

.about-subtext{
  font-family: "Poppins";
  font-size: 16px;
  color: white;
  margin-bottom: 70px;
}

.container {
  max-width: 100%;
  margin-left: 10vw;
  margin-right: 10vw;
  position: relative;
}

.container-hero {
  max-width: 100%;
  margin-left: 15vw;
  margin-right: 15vw;
  position: relative;
}
.container-full {
  max-width: 100%;
  margin: auto;
  position: relative;
}


.flex {
  display: flex;
}

.hero-container {
  gap: 20px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 70vh;
  overflow: hidden;
}

.hero-right {
  width: 50%;
  height: 70vh;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-left img {
  width: 100%;
}

.hero-text {
  flex-grow: 1;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 20px;
}

.flex-hero-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.flex-hero-diver {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  flex-shrink: 1;
  border-radius: 20px;
  overflow: hidden;
}

.flex-hero-diver img {
  object-position: left top;
  object-fit: cover;
  align-self: flex-end;
  height: 100%;
  width: 100%;
  flex-shrink: 1;
}

.graphics {
  transition: 0.3s;
}
.graphics:hover {
  transform: scale(1.06) rotate(3deg); /* Slight zoom-in effect */
}

.portfolio-text{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-grid-container{
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  transition: 0.2s;
}

.portfolio-grid-container img{
  width: 100%; 
  height: auto; 
  object-fit: cover; 
  border-radius: 20px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-grid-container img:hover {
  filter: grayscale(0%); /* Remove grayscale (show color) */
  transform: scale(1.02); /* Slight zoom-in effect */
}

.portfolio-last img{
  filter: none;
}

.portfolio-last img:hover{
  transform: none;
}

.portfolio-header{
  font-family: "Poppins";
  font-size: 100px;
  font-weight: bold;
  color: white;
  margin-top: 40px;
}

.section-hero {
  display: flex;
  min-height: 100dvh;
  align-items: center;
  position: relative;
}

.section-subsides{
  min-height: 100dvh;
  position: relative;
}

.subsides-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.subsides-container img{

  border-radius: 20px;
  width: 100%;
}

.subsides-header{
  font-family: "Poppins";
  font-size: 100px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.back{
  position: absolute;
  top: 40px;
}

.back img {
  transition: color 0.3s ease;
  width: 20px;
}

.back img:hover {
  color: #707070;
  transform: scale(2.02);
}

.video{
  width: 100%;
  height: 0;
  padding-bottom: 56.52%;
  position:relative;
}

.video iframe{
  position:absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
}