@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --headings-font: "Oswald";
    --regular-font: "Poppins";
    --dark-Color: #000;
    --bg-color: #F4F3ED;
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: var(--bg-color);
    position: relative;
    cursor: none;
}

.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #808080;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 9999 !important;
}


.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #808080;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9999 !important;
}

.navbar a {
    cursor: none !important; /* Disable the default cursor */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headings-font);
}

p {
    font-family: var(--regular-font);
}

.fixed-top {
    background-color: var(--bg-color);
}

.navbar-brand h2 {
    font-weight: 700;
}

.navbar-nav {
    display: flex;
    gap: 20px;
    font-family: var(--regular-font);
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link {
    color: var(--dark-Color);
}

.navbar-nav .dropdown-menu {
    background-color: var(--dark-Color);
    border-radius: 0 !important;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #F4F3ED !important;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: var(--dark-Color) !important;
}

.navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: #FFF !important;
    color: var(--dark-Color) !important;
}

.dropdown-toggle::after {
    display: none;
}

.HeroSection {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
}

.HeroSection h1 {
    font-size: 13vw;
    text-transform: uppercase;
    color: #000;
}


.RecentWork {
  width: 100%;
  height: fit-content;
  background-color: var(--dark-Color);
  color: #f4f3ed;
}

.Recent_HeroSec {
  height: 400px;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.Recent_HeroSec:hover::before,
.Recent_HeroSec_bottom:hover::before {
  display: block;
}

.Recent_HeroSec:hover img,
.Recent_HeroSec_bottom:hover img {
  transform: scale(1.01);
}

.Recent_HeroSec::before,
.Recent_HeroSec_bottom::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 5 !important;
  backdrop-filter: blur(2.5px);
  border-radius: inherit !important;
  display: none;
  transition: all 0.4s;
}

.Recent_HeroSec img,
.Recent_HeroSec_bottom img {
  width: 100%;
  height: 100%;
  background-color: #f4f3ed;
  transition: all 0.4s;
  object-fit: contain;
  object-position: center;
}

.Recent_HeroSec p,
.Recent_HeroSec_bottom p {
  position: absolute;
  top: 15px;
  background: #888888;
  padding: 10px;
  border-radius: 25px;
  right: 10px;
  font-weight: 500;
  z-index: 6;
}

.Recent_HeroSec h3,
.Recent_HeroSec_bottom h3 {
  position: absolute;
  bottom: -40px;
  left: 13px;
  transition: all 0.7s;
  padding: 10px;
  border-radius: 8px;
  z-index: 6;
}

.Recent_HeroSec:hover h3,
.Recent_HeroSec_bottom:hover h3 {
  bottom: 0px;
  color: #ffffff;
  background-color: #000;
}

.project-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid wheat;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Recent_HeroSec_bottom {
  height: 300px;
  transition: all 0.4s;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.lastSection p {
    font-size: 23px;
    color: #000;
    text-align: center;
}

.lastSection h2 {
    font-size: 13vw;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    .HeroSection {
        height: 30vh;
        margin-bottom: 70px;
        align-items: end;
    }

    .HeroSection h1 {
        font-size: 20vw;
        font-weight: 800;
    }

    
}