@font-face {
  font-family: "Arnaud-Light";
  src:
    url("../font/Arnaud-Light.woff") format("woff"),
    url("../font/Arnaud-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Arnaud-Regular";
  src:
    url("../font/Arnaud-Regular.woff") format("woff"),
    url("../font/Arnaud-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Arnaud-Medium";
  src:
    url("../font/Arnaud-Medium.woff") format("woff"),
    url("../font/Arnaud-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Arnaud-Bold";
  src:
    url("../font/Arnaud-Bold.woff") format("woff"),
    url("../font/Arnaud-Bold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* =======================================================================
   Public global base styles for index.php
   Extracted from css/base/base.css
   ======================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== Tooltip ===== */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltipText {
  position: absolute;
  bottom: 100%;
  left: 0%;
  transform: translateX(-0%);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.2s ease;
  min-width: auto;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-align: center;
  font-size: smaller;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  cursor: default;
}

/* Show tooltip on hover */
.tooltip:hover .tooltipText {
  opacity: 1;
}

/* Shared Page Content Wrapper */
.content {
  padding: 100px 20px;
}

.content h1,
.content h2 {
  margin-bottom: 30px;
}

a {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4 {
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

h3 {
  border-bottom: 2px solid #003369;
  padding-bottom: 5px;
}

/* FORM BASE STYLE (shared) */
form {
  background: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 25px;
  border-radius: 10px;
  width: 700px;
  margin: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Buttons (shared) */
button,
.navbar a {
  cursor: pointer;
}

button {
  padding: 8px 12px;
  background: #000;
  color: white;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background: #ffffff;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

button:active {
  scale: 0.95;
  transition: all 0.1s;
}

.des_link_color {
  font-weight: 300;
  color: #2c2c2c;
}
