/* ===========================
   BUTTON COMPONENT SYSTEM
=========================== */

.btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 36px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

/* Primary Button (White - Hero CTA) */
.btn-primary {
  background: #ffffff;
  color: #062a63;
  border: none;

  /* Requested offset */
  transform: translateX(-160px);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-165px) translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Outline Button (used in services, forms, etc.) */
.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.btn-secondary {
  background: #195ccc;
  padding: 12px 40px; /* bigger button */
  border-radius: 100px;
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(6px);
  font-weight: 300;
  font-size: 26px; /* larger text */
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2); /* slightly lighter */
  backdrop-filter: blur(8px); /* smaller blur increase */
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.12),
    /* softer shadow */ inset 0 0 6px rgba(255, 255, 255, 0.15); /* softer inner glow */
  transform: translateY(-1px); /* minimal lift */
}

/* ==== LOCAL MANROPE FONT ==== */
@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Light.ttf")
    format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Regular.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Medium.ttf")
    format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Bold.ttf")
    format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
}
