* {
  font-family: "Sansita", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
a {
  text-decoration: none !important;
}

.navbar {
  font-weight: bolder;
  font-size: 18px;
  padding: 15px;
  background-color: #ffb406;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo improvements */
.logo {
  border: 2px dotted black;
  margin: 5px;
  padding: 3px 5px;
  border-radius: 3px;
  letter-spacing: 2px;
  font-size: 20px;
}

/* Buttons */
.primary_button {
  color: black;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  padding: 16px;
  font-size: 15px;
  border: none;
  background-color: #ffb406;
  border-radius: 10px;
  box-shadow: 4px 4px 5px #bdbdbd;
  transition: transform 0.3s ease;
}
.primary_button:hover {
  transform: scale(1.05);
}

.flex_container, .flex_container1 {
  display: flex;
}
.justifier_navbar {
  justify-content: space-between;
}

/* Profile image using picture tag */
.profileimg {
  border-radius: 50%;
  height: 350px;
  width: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
}

/* Card Styles */
.roundcard {
  width: 25%;
  padding: 20px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease;
}
.roundcard:hover {
  cursor: pointer;
  background-color: #f1f1f1;
}

.primarybanner {
  background-color: #ffb300;
  padding: 50px 20px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}

.contactpicture {
  background-image: image-set(
    url("../images/contact.webp") type("image/webp"),
    url("../images/contact.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  height: 300px;
  width: 300px;
}


.footer {
  background: #323232;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* Divider */
.divider {
  height: 2px;
  background-color: #d1d1d1;
  max-width: 500px;
  margin: 30px auto;
}

/* Contact form fields */
input,
textarea {
  border: 1px solid #ffb406;
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0;
  width: 100%;
}

/* Icons */
.icons {
  color: black;
  transition: 0.3s ease;
}
.icons:hover {
  color: #007bff;
  transform: scale(1.2);
}

.smallScreen{
        display: none;
    }

/* Responsive */
@media only screen and (max-width: 666px) {
    .smallScreen{
        display: block;
    }
    
    #pfp1{
        display:none;
    }
    
    .bigScreen{
        display: none;
    }
    
  .flex_container {
    flex-direction: column;
    padding: 20px;
  }

  .logo {
    font-size: 16px !important;
  }

  .navbar {
    padding: 10px 15px;
  }

  .roundcard {
    width: 90%;
    margin-bottom: 20px;
  }

  .profileimg {
    height: 270px;
    width: 270px;
  }

  .contactpicture {
    display: none;
  }

  .primary_button.call_button,
  .primary_button.email_button {
    padding: 10px;
    font-size: 14px;
  }
}
