/* Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

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

/* Variables */
:root {
  --ff-body: "Inter", sans-serif;
  --fz-body: 14px;

  --primary: #2563EB;
  --secondary: #09925D;
  --red: #FF0000;
  --white: #FFFFFF;
  --black: #000000;
  --title: #1A1A1A;
  --text: #545454;
  --bg: #F9FAFB;
  --border: #CECECE;

  --shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);

  --transition: 0.6s all ease;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fz-body);
  font-weight: 400;
  line-height: 1.8 !important;
  color: var(--text);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
  color: var(--title);
}

button,
a,
input,
select,
textarea {
  transition: var(--transition);
  outline: none !important;
  box-shadow: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
.call_icon {
  align-items: center;
}

.call_icon i {
  font-size: 30px;
  color: var(--primary);
}

.call_icon .divider {
  display: block;
  width: 1px;
  height: 40px;
  background-color: var(--border);
  margin: 0 12px;
}

.call_icon .number {}

.call_icon .number p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.call_icon .number a {
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.025em;
}

.call_icon:hover .number a {
  color: var(--primary);
}

/* Header */
.main_header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}

.main_header .desktop_menu {
  align-items: center;
  gap: 24px;
}

.main_header .desktop_menu a {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--title);
}

.main_header .desktop_menu a:hover {
  color: var(--primary);
}

.main_header #mobile_menu_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--title);
}

/* Mobile Menu */
#mobile_menu {
  position: absolute;
  left: 0;
  top: 68px;
  width: 100%;
  background-color: var(--white);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}

#mobile_menu.active {
  max-height: 300px;
  opacity: 1;
}

#mobile_menu .mm_links a {
  display: block;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--title);
}

#mobile_menu .mm_links a:hover {
  color: var(--primary);
}