@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  font-family: 'Mona Sans', serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;

  --pryColor: #008102;
  --bgPryColor: #023f88;
  --pryDark: #25015b;
  --white: #fff;
  --black: #12141d;
  --dark: #323232;
  --Grey1: #475569;
  --Grey2: #f8fafc;
  --Grey3: #94a3b8;
  --Grey4: #f3f4f8;
  --Grey5: #bcbcbd;
  --Grey6: #7e8494;
  --Grey7: #eef2ff;
  --Line: #cbd5e1;
  --rated: #ebc351;
  --positive: #20af0b;
  --negative: #ff3b2d;
  --receiver: #eeeff2;
  --sender: #3b70fb;
  --lightPryColor: #daacf9;
}

.container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 900px) {
  .container {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}

body {
  font-family: 'Mona Sans', serif;
}

/* ====Btns==== */

.btn {
  height: 48px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  border-radius: 90px;
  letter-spacing: 0.112px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pry-btn {
  background: var(--pryColor);
  color: var(--white);
}

.sec-btn {
  background: var(--Grey2);
  color: var(--Grey1);
}

.small-btn {
  background: var(--Grey7);
  color: var(--pryColor);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  display: grid;
  place-items: center;
  gap: 0.4em;
  border-radius: 90px;
  letter-spacing: -0.096px;
}

.outline-btn {
  border: solid 1px #cbd5e1;
  color: var(--Grey1);
}

/* ====Btns==== */

/* .services {
  background: var(--bgPryColor) url('./assets/pos.jpeg') top center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: soft-light;
} */

.services {
  position: relative;
  background: var(--bgPryColor);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bgPryColor) url('./assets/pos.jpeg') top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
  opacity: 0.2; /* Adjust opacity here */
  z-index: 1; /* Ensure the image stays behind the content */
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--pryColor);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00c4cc;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #333;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 200px;
  }

  .nav-links.show {
    display: flex;
  }
}
