@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: ExtraLight;
  
  /*font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";*/
  /*font-size: 16px;*/
}

body, html {
  /*background-color: #2a292c;*/
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;

}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(57, 57, 57, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.3em;
  color: whitesmoke;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #764ba2;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  text-decoration: none;
  color: whitesmoke;
  font-weight: 500;
  font-size: 1.0rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #667eea;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: whitesmoke;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.iPhoneRemove {
  display: flex;
  justify-content: right;
  margin-bottom: 3%;
  font-size: 1.2rem
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(50, 50, 50, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    height: calc(100vh - 70px);
    text-align: center;
    transition: all 0.3s ease;
    padding-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 1rem 0;
    display: block;
  }

  .iPhoneRemove {
    justify-content: center;
    font-size: 0.7rem;
  }

}

@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .iPhoneRemove {
    justify-content: center;

  }

}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../assets/lounge.jpg);
  /* Set a specific height */
  height: 100vh;
  width: 100%;
 
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* The hero image */
.hero-image-flat {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  
  /* Set a specific height */
  height: 100vh;
  width: 100%;
 
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3em;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  color: #c2c4c8;
}
h5, h6 {
  margin: 0;
  padding: 0;
  color: #e9ecef;
}

.simmpleCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
  width: 100%;
  padding-top: 4%;
  margin-bottom: 0%;
  font-size: 1.3rem;
}

.form {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.form .form-label {
  display: block;
  padding: 20px 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #96999d;
}
.form .form-group {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form .form-group .form-icon-left, .form .form-group .form-icon-right {
  fill: #c1c6cb;
  width: 40px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}
.form .form-group .form-icon-left {
  left: 0;
}
.form .form-group .form-icon-left + .form-input {
  padding-left: 40px;
}
.form .form-group .form-icon-right {
  right: 0;
}
.form .form-group .form-icon-right + .form-input {
  padding-right: 40px;
}
.form .form-group:focus-within .form-icon-left {
  fill: #989fa8;
}
.form .form-input {
  width: 100%;
  height: 43px;
  border: 1px solid #dee1e6;
  padding: 0 15px;
  border-radius: 4px;
  color: #000;
}
.form .form-input::placeholder {
  color: #a7adb4;
}

.form .form-link {
  color: #2a8eeb;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.form .form-link:hover {
  color: #136fc5;
}

.form .form-linker {
  color: #eaeaea;
  font-weight: 400;
  text-decoration: none;
  font-size: 9px;
}
.form .form-linker:hover {
  color: #136fc5;
}

.form p.register-link {
  margin: 0;
  padding: 20px 0 0 0;
  font-size: 14px;
  color: #6b7179;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  background: #3e7bd6;
  color: #FFFFFF;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  height: 42px;
  box-shadow: 0px 0px 6px 1px rgba(45, 57, 68, 0.1);
}
.btn:hover {
  background: #3172d3;
  box-shadow: none;
}

.buttonHolder{
  width: 100%;
  margin-top: 3%;
  display: inline-flex;
  flex-direction: row;
  flex-flow: row;
  align-items: center;
  justify-content:space-around;
}

.infobtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid white;
  background: #1561e5;
  color: #e9e8ea;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  height: 42px;
  box-shadow: 0px 0px 6px 1px rgba(45, 57, 68, 0.1);
}
.infobtn:hover {
  background: #040404;
}

.deletebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background: tomato;
  color: #FFFFFF;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  height: 42px;
  width: 100px;
  box-shadow: 0px 0px 6px 1px rgba(45, 57, 68, 0.1);
}
.deletebtn:hover {
  background: rgb(170, 67, 49);
}

.notification-bubble {
   position: absolute;
   margin-left: 20%;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgb(0, 115, 255);
    text-align:center;
}

.login, .register {
  display: flex;
  flex-flow: column;
  width: 400px;
  max-width: 95%;
  /*background-color: #ffffff;*/
  box-shadow: 0px 0px 7px 1px rgba(45, 57, 68, 0.05);
  border-radius: 5px;
  margin: auto;
  padding: 35px;
}
.login h1, .register h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 0;
  margin: 0;
}

.header {
  background-color: #212327;
  height: 60px;
  width: 100%;
}

.content {
  width: 900px;
  margin: 0 auto;
}
.content .page-title {
  display: flex;
  align-items: center;
  padding: 25px 0 10px 0;
}
.content .page-title h2 {
  margin: 0;
  padding: 0 0 7px 0;
  font-size: 20px;
  font-weight: 600;
  color: #c8c9ca;
}
.content .page-title p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #a6b0bb;
}
.content .block {
  /*box-shadow: 0px 0px 7px 1px rgba(45, 57, 68, 0.05);*/
  margin: 25px 0;
  padding: 25px;
  border-radius: 5px;
  background-color: transparent;
}
.content .block p {
  padding: 7px;
  margin: 0;
}
.content .profile-detail {
  display: flex;
  flex-flow: column;
  font-size: 18px;
  padding: 5px 0;
}
.content .profile-detail strong {
  display: block;
  color: #92979e;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}



.pad-1 {
  padding: 5px;
}
.mar-1 {
  margin: 5px;
}
.pad-2 {
  padding: 10px;
}
.mar-2 {
  margin: 10px;
}
.pad-3 {
  padding: 15px;
}
.mar-3 {
  margin: 15px;
}
.pad-4 {
  padding: 20px;
}
.mar-4 {
  margin: 20px;
}
.pad-5 {
  padding: 25px;
}
.mar-5 {
  margin: 25px;
}
.pad-bot-1 {
  padding-bottom: 5px;
}
.pad-top-1 {
  padding-top: 5px;
}
.pad-left-1 {
  padding-left: 5px;
}
.pad-right-1 {
  padding-right: 5px;
}
.pad-x-1 {
  padding-left: 5px;
  padding-right: 5px;
}
.pad-y-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.mar-bot-1 {
  margin-bottom: 5px;
}
.mar-top-1 {
  margin-top: 5px;
}
.mar-left-1 {
  margin-left: 5px;
}
.mar-right-1 {
  margin-right: 5px;
}
.mar-x-1 {
  margin-left: 5px;
  margin-right: 5px;
}
.mar-y-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.pad-bot-2 {
  padding-bottom: 10px;
}
.pad-top-2 {
  padding-top: 10px;
}
.pad-left-2 {
  padding-left: 10px;
}
.pad-right-2 {
  padding-right: 10px;
}
.pad-x-2 {
  padding-left: 10px;
  padding-right: 10px;
}
.pad-y-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.mar-bot-2 {
  margin-bottom: 10px;
}
.mar-top-2 {
  margin-top: 10px;
}
.mar-left-2 {
  margin-left: 10px;
}
.mar-right-2 {
  margin-right: 10px;
}
.mar-x-2 {
  margin-left: 10px;
  margin-right: 10px;
}
.mar-y-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.pad-bot-3 {
  padding-bottom: 15px;
}
.pad-top-3 {
  padding-top: 15px;
}
.pad-left-3 {
  padding-left: 15px;
}
.pad-right-3 {
  padding-right: 15px;
}
.pad-x-3 {
  padding-left: 15px;
  padding-right: 15px;
}
.pad-y-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.mar-bot-3 {
  margin-bottom: 15px;
}
.mar-top-3 {
  margin-top: 15px;
}
.mar-left-3 {
  margin-left: 15px;
}
.mar-right-3 {
  margin-right: 15px;
}
.mar-x-3 {
  margin-left: 15px;
  margin-right: 15px;
}
.mar-y-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.pad-bot-4 {
  padding-bottom: 20px;
}
.pad-top-4 {
  padding-top: 20px;
}
.pad-left-4 {
  padding-left: 20px;
}
.pad-right-4 {
  padding-right: 20px;
}
.pad-x-4 {
  padding-left: 20px;
  padding-right: 20px;
}
.pad-y-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mar-bot-4 {
  margin-bottom: 20px;
}
.mar-top-4 {
  margin-top: 20px;
}
.mar-left-4 {
  margin-left: 20px;
}
.mar-right-4 {
  margin-right: 20px;
}
.mar-x-4 {
  margin-left: 20px;
  margin-right: 20px;
}
.mar-y-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.pad-bot-5 {
  padding-bottom: 25px;
}
.pad-top-5 {
  padding-top: 25px;
}
.pad-left-5 {
  padding-left: 25px;
}
.pad-right-5 {
  padding-right: 25px;
}
.pad-x-5 {
  padding-left: 25px;
  padding-right: 25px;
}
.pad-y-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.mar-bot-5 {
  margin-bottom: 25px;
}
.mar-top-5 {
  margin-top: 25px;
}
.mar-left-5 {
  margin-left: 25px;
}
.mar-right-5 {
  margin-right: 25px;
}
.mar-x-5 {
  margin-left: 25px;
  margin-right: 25px;
}
.mar-y-5 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.newDemoBadge {
  background-color: red;
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 5px;
}

@keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

.fade-in-div {
      opacity: 0; /* Start with opacity 0 */
      animation: fadeIn 1s forwards; /* Apply the animation */
    }

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.bgBlur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 20px;
  background-color: transparent;
  color: black;
  border: 1px solid white;
  border-radius: 25px;
  backdrop-filter: blur(10px); 
}