/*@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');*/

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/dm-sans-font-regular.woff2') format('woff2'),
       url('/fonts/dm-sans-font-regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/dm-sans-font-700.woff2') format('woff2'),
       url('/fonts/dm-sans-font-700.woff') format('woff');
  font-display: swap;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  font-weight: 400;
  background-color: #f0f0f0;
  color: #555;
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  gap: 20px;
}

input {
    font-family: "Montserrat", sans-serif;
}


h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #333;
}

h2 {
    color: #555;
    font-size: 23px;
    line-height: 1.2;
    padding-top: 13px;
    padding-bottom: 10px;
}

h3 {
    color: #555;
    font-size: 19px;
    padding-top: 13px;
    padding-bottom: 10px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height : 1.6;
}

ol {
    font-size: 16px;
    line-height : 1.4;
}

ul {
    font-size: 16px;
    line-height : 1.4;
    list-style: none;
    
}

li {
    line-height : 1.4;
}

hr{
    margin: 15px 0 15px 0;
    color: #c7c5c5;
}

label {
     font-size: 1.5rem;
}

section {
    margin-bottom: 20px;
}

button {
    background: #252424;
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 14px;
    color: white;
    border: none;
    border-radius:25px;
    padding: 10px 20px;
    cursor: pointer;
    outline: none;
    transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
}

button:hover {
    background-color: #343434;
}



i.fa-light.fa-link-simple {
    font-size: 18px;
    margin-right: 6px;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

/* Container Styling */
.container {
    width: 450px;
    margin: 0 15px;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 70px;
}

.content-area{
   padding: 4rem;
   margin-top: 80px;
}

.content-area a{
    color: #555;
}

.d-flex-column {
    display: flex;
    flex-direction: column;
}

.d-flex {
    display: flex;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 30px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #000000;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #e67e22;
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

.center-xy {
    margin-top: 30px;
   align-items: center;
    justify-content: center;
}

/*strong {*/
/*  font-weight: 500;*/
/*}*/

.form {
     gap: 1rem;
}

.w-100 {
     width:100%;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: 'DM Sans';
}

.create-account-container{
    padding: 0;
    border-radius: 0;
}

.create-account {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.heading {
    color: white;
    letter-spacing: 0.5px;
    height:50px;
    background: linear-gradient(-135deg, #c850c0, #4158d0);
}

.create-account-form {
    padding:  0 30px 20px;
}

.name-field {
    gap: 1.5rem;
}

.name-field input {
    height:50px;
}

.wrapper{
  margin-top: 130px;
  width: 450px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}
.wrapper .title{
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  /*line-height: 100px;*/
  padding: 17px 17px 10px 25px;
  color: #fff;
  user-select: none;
  border-radius: 15px 15px 0 0;
  background-color: #252424;
}
.wrapper .titlesub{
  font-size: 16px;
  text-align: center;
  /*line-height: 100px;*/
  padding: 0px 30px 20px 30px;
  color: #fff;
  user-select: none;
  background-color: #252424;
}
.wrapper form{
  padding: 10px 30px 30px 30px;
}
.wrapper form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.wrapper form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 17px;
  padding-left: 20px;
  border: 1px solid lightgrey;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.wrapper form .field input:focus,
form .field input:valid{
  border-color: #4158d0;
}
.wrapper form .field label{
  position: absolute;
  top: 50%;
  left: 20px;
  color: #999999;
  font-weight: 400;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
form .field input:focus ~ label,
form .field input:valid ~ label{
  top: 0%;
  font-size: 16px;
  color: #4158d0;
  background: #fff;
  transform: translateY(-50%);
}
form .content{
  display: flex;
  width: 100%;
  height: 50px;
  font-size: 16px;
  align-items: center;
  justify-content: space-around;
}
form .content .checkbox{
  display: flex;
  align-items: center;
  justify-content: center;
}
form .content input{
  width: 15px;
  height: 15px;
  background: red;
}
form .content label{
  color: #262626;
  user-select: none;
  padding-left: 5px;
}
form .content .pass-link{
  color: "";
}
form .field input[type="submit"]{
  color: #fff;
  border: none;
  padding-left: 0;
  margin-top: -10px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  background-color: #252424;
  transition: all 0.3s ease;
}
form .field input[type="submit"]:active{
  transform: scale(0.95);
}
form .signup-link{
  color: #262626;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
form .pass-link a,
form .signup-link a{
  color: #4158d0;
  text-decoration: none;
}
form .pass-link a:hover,
form .signup-link a:hover{
  text-decoration: underline;
}

.terms-link {
  color: #4158d0;
}


@media screen and (max-width: 768px) {
    .wrapper{
        width: 360px;
    }
   .container{
        width: 360px;
    }
    
}



.sendtitle{
    color: #ffff;
}

.sendpara{
    font-size: 16px;
    padding-top: 15px;
}


.messagesent{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
}

.messagesent .fa-check-circle{
    font-size: 36px;
    color: #25d366;
}

.messagesent p{
    font-size: 20px;
}



.view-modal{
  top: 50%;
  color: #7d2ae8;
  font-size: 18px;
  padding: 10px 25px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.popup{
  background: #fff;
  padding: 25px;
  max-width: 450px;
}

.popup :is(header, .icons, .field){
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.popup header{
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}
header span{
  font-size: 21px;
  font-weight: 600;
}
header .close, .icons a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
header .close{
  color: #878787;
  font-size: 17px;
  background: #f2f3fb;
  height: 33px;
  width: 33px;
  cursor: pointer;
}
header .close:hover{
  background: #ebedf9;
}
.popup .content{
  margin: 0;
}
.popup .icons{
  margin: 20px 0 20px 0;
}
.content p{
  font-size: 16px;
}
.content .icons a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}
.icons a i{
  transition: transform 0.3s ease-in-out;
}

.icons a:nth-child(1){
  background: #25D366;
}

.icons a:nth-child(1):hover{
  background: #25D366;
}

.icons a:nth-child(2){
 background: #1877F2;
}

.icons a:nth-child(2):hover{
 background: #1877F2;
}

.icons a:nth-child(3){
  background: #000000;
}

.icons a:nth-child(3):hover{
  background: #000000;
}

.icons a:nth-child(4){
 background: #C13584;
}

.icons a:nth-child(4):hover{
  background: #C13584;
}

.icons a:nth-child(5){
 background: #0088cc;
}

.icons a:nth-child(5):hover{
  background: #0088cc;
}

.icons a:hover{
  color: #fff;
  border-color: transparent;
}

.icons a:hover i{
  transform: scale(1.2);
}

.content .field{
  margin: 12px 0 12px 0;
  height: 40px;
  border-radius: 25px;
  padding: 0 5px;
  border: 1px solid #e1e1e1;
}

.field.active{
  border-color: #252424;
}

.field i{
  width: 50px;
  font-size: 18px;
  text-align: center;
}

.field.active i{
  color: #252424;
}
.field input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}
.field button{
  color: #fff;
  padding: 7px 18px;
  background: #252424;
}
.field button:hover{
  background: #252424;
}

.terms-conditions {
    display:flex;
    align-items: center;
    gap: 1rem;
    padding-top: 15px;
    padding-bottom: 15px;
}


.icon-size {
    font-size: 2rem;
}

p.mess{
    font-size:16px;
    margin-bottom: 30px;
    overflow-wrap: break-word;
}


#linkInput {
    width: 100%;
    padding: 10px;
    /*margin-bottom: 10px;*/
}

.messagehead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf9;
}

#messageBoard .message {
    color: white;
}

#messageBoard .message div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    color: white;
}


.message {
    border: 1px solid #ccc !important;
    padding: 10px !important;
    margin: 10px 0 !important;
    border-radius: 5px !important;
    position: relative!important;
}


p.nomessage{
    text-align: center;
    margin: 50px 0 50px 0;
}

.message.default {
    background-color: #4857cf !important;;
}

.message.ghost {
    background-color: #333 !important;;
    color: #fff !important;;
}

.message.love {
    background-color: #ff55a3 !important;;
}

.message.angry {
    background-color: #e72222 !important;;
}

.message.happy {
    background-color: #ffbf00 !important;;
}

.message.sad {
    background-color: #455566 !important;;
}

.timestamp {
    font-size: 0.9em;
    color: #fff;
}

/* Login Container */
.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.login-container h1 {
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    margin-bottom: 5px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-container input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.login-container input[type="submit"]:hover {
    background-color: #0056b3;
}

.error {
    color: red;
    margin-top: 10px;
    text-align: center;
}



/**************************/
/* share Page */
/**************************/

.helloarea{
    box-shadow: none;
    background-color: transparent;
    padding: 2rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000000;
}

.hellouser{
   font-size: 20px;    
   font-weight: 600;
}
.helloicon{
    font-size: 18px;
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.iconbg{
    background-color: #e7e7e7;
    color: black;
    padding: 9px;
    border-radius: 25px;
    }
    
.iconbg:hover{
     background-color: #d9d9d9;
}

.icondele{
    background-color: #ffffff0a;
    color: #fff;
    padding: 9px;
    border-radius: 25px;
    cursor: pointer;
}

.icondele:hover{
     background-color: #ffffff40;
}


/**************************/
/* Send Page */
/**************************/

textarea{
    width:100%;
    height:180px;
    border-radius:8px;
    margin:20px 0;
    padding: 10px 15px;
    resize: none;
    outline: none;
    border:1px solid #7855c9; 
    font-size: 18px;
}


.custom-select {
    position: relative;
    display: inline-block;
    width: 200px;
}

.custom-select select {
    appearance: none; /* Removes default styling in most browsers */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Adding a custom arrow */
.custom-select::after {
    content: '▼'; /* Unicode for down arrow */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Makes the arrow non-clickable */
    font-size: 14px;
    color: #888;
}



/**************************/
/* nav bar */
/**************************/

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 270px;
  background-color: #252424;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-evenly;
}
a {
  color: #fff;
  text-decoration: none;
}
.nav .logo {
  font-size: 22px;
  font-weight: 500;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
  font-size: 14px;
}
.nav .nav-links a {
  transition: all 0.2s linear;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}

/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }
  .nav {
    padding: 15px 20px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #252424;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
  }

}






/**************************/
/* footer */
/**************************/

footer {
    background-color: #252424;
    padding: 20px 0;
    text-align: center;
    color: white;
    width: 100%;
}

.footer-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    display: inline;
    margin-right: 15px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: #ffe200; /* Change to your preferred hover color */
}

.social-link{
font-size: 15px;
padding: 20px;
font-family: monospace;
}

/**************************/
/* popup for cred */
/**************************/


/* Popup style */
        .popupcred {
            display: none; /* Hidden by default */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            border-radius: 15px;
            padding: 20px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 100;
        }

        /* Overlay style */
        .overlay {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        /* Button to open the popup */
        .open-popup-btn {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: blue;
            color: white;
            border: none;
            cursor: pointer;
        }

        /* Close button style */
        .close-btn {
            float: right;
            cursor: pointer;
            color: red;
        }
        
        span.close-btn {
        font-size: 18px;
        }
        
        .btnclose{
            width:100%
        }
        
.blog{
    color: #343434;
}
        

/* Reload Button */

      .reload-btn {
        background: #efefef;
        border: none;
        border-radius: 50%;
        padding: 9px;
        cursor: pointer;
        transition: background 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .reload-btn:hover {
        background: #d3d3d3;
      }
      .reload-icon {
        font-size: 18px;
        color: #222222;
        display: inline-block; /* Ensure it's inline-block */
        transition: transform 1s; /* Ensure transition is on transform */
      }
      .spin {
        animation: spin 0.8s infinite linear;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      } /* Animate the full 360 degree */

        /* Toaster Container - Centered at Top */
        .toast-container {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 100%;
            max-width: 90vw;
        }

        /* Toast Notification */
        .toast {
            background-color: #333;
            color: #fff;
            padding: 12px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            min-width: 250px;
            max-width: 90%;
            word-wrap: break-word;
            opacity: 0;
            transform: translateY(-100%);
            transition: opacity 0.3s, transform 0.3s;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Show Toast */
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Close Button */
        .toast .close-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            margin-left: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .toast-container {
                top: 10px;
            }
            .toast {
                width: auto;
                min-width: auto;
                text-align: center;
            }
        }


/* in style.css */
ul.fancy > li::before{
  content:'✔️';
  margin-right:.4em;
}

.headerstyle{
 font-size:16px;
  display:block;
  margin:4px 0 8px;
  font-weight:400;    
  line-height: 1.45;
}

.mainheading{
color: #fff;    
}


