@import url('https://fonts.googleapis.com/css2?family=Marck+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
a {
 text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: 'Poppins', sans-serif;
}
button, 
a, 
input[type="button"], 
input[type="submit"] {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.custom-navbar{
  border-top: 1px solid black;
  background-color:white;
  box-shadow: 0 2px 10px hsla(220, 32%, 8%, .3);
  height: 50% !important;
  justify-content: center !important;
}
.navbar{
  opacity: 95%;
  display:flex;
  align-items: center;
  justify-content:space-between;
}

.custom-nav-brand a {
  display: flex; 
  align-items: center;
  color: rgba(0,0,0,1) !important;
  font-family: "Marck Script", cursive;
  font-size: 2.1rem;
  font-weight:750;
  margin-left: 5vw !important;
  margin-right: 3vw !important;
}
.custom-nav-brand a:hover{
  color:rgba(0,0,0,.5) !important;
}
.custom-nav-brand img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.custom-nav-brand span {
  margin-left: 2px;
}

.custom-nav-link {
  display:flex;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-right: 5vw;
  align-items: center;
  justify-content:space-between;
  height: 5.4vh;
  padding-left: 0px !important;
  color: rgba(0,0,0,1) !important;
}

.custom-nav-link:hover {
  color: rgba(0,0,0,.5) !important;
}
#hero-section {
  display: flex;
  flex-direction: column;
  margin-top: 2rem auto;
  margin-bottom: auto;
}
.hero-container {
  width: 80vw;           /* responsive width */
  max-width: 400px;      /* max size for large screens */
  aspect-ratio: 1 / 1;   /* makes it square */
  margin: 2rem auto;     /* center it with margin */
  margin-bottom: -0.2rem;
  overflow: hidden;
  border-radius: 12px;   /* optional: rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills the box without stretching */
  display: block;
}

/* Social icons */
.social-icons a i {
  font-size: 30px;
  color: #555;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover i {
  transform: scale(1.2);
  color: #000; /* Or match brand colors */
}

#hometext {
  margin-bottom: -0.1rem;
  color:palegreen;
  text-shadow: 1px 2px 3px black;
  font-family: "Yatra One", system-ui;
  font-size: 3rem;
  font-weight: 800;
}
.work-div {
  padding: 2.5rem;
  background-color: white;
}
@media (max-width: 830px) {
  .custom-nav-brand a {
    font-size: 1.6rem; /* smaller font size for small screens */
  }
  .custom-nav-brand img{
    height: 27px;
    width: 27px;
  }
  .custom-nav-link {
    font-size: 1.1rem;
  }
  .navbar{
    height: 7.8vh !important;
  }
  .hero-container{
    max-width: 350px;
  }
  .work-div{
    padding: 2.2;
  }
}
@media (max-width: 375px) {
  .custom-nav-brand a {
    font-size: 1.6rem; /* smaller font size for small screens */
  }
  .custom-nav-brand img{
    height: 25px;
    width: 25px;
  }
  .custom-nav-link {
    font-size: 0.9rem;
  }
  .navbar{
    height: 7.3vh !important;
  }
  #hometext {
    font-size: 2.5rem;
  }
  .work-div{
    padding: 1.8rem;
  }
}