/* ======================================================
   KORAVO
   style.css
   Base Styles
====================================================== */

/*==============================
  GOOGLE FONTS
==============================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

/*==============================
  RESET
==============================*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--background);
  line-height: var(--line-height);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*==============================
  SELECTION
==============================*/

::selection {
  background: var(--secondary);
  color: #fff;
}

/*==============================
  SCROLLBAR
==============================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/*==============================
  IMAGES
==============================*/

img {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
}

/*==============================
  LINKS
==============================*/

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/*==============================
  LIST
==============================*/

ul,
ol {
  list-style: none;
}

/*==============================
  BUTTON
==============================*/

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/*==============================
  INPUT
==============================*/

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/*==============================
  HEADINGS
==============================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

p {
  color: var(--text-light);
}

/*==============================
  CONTAINER
==============================*/

.container {
  width: 100%;
  max-width: var(--container);
  margin: auto;
  padding-inline: 24px;
}

/*==============================
  SECTION
==============================*/

section {
  padding: 100px 0;
}

/*==============================
  GRID
==============================*/

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*==============================
  UTILITIES
==============================*/

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

.w-100 {
  width: 100%;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

/*==============================
  BADGE
==============================*/

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 999px;

  background: #eef4ff;

  color: var(--primary);

  font-weight: 600;

  font-size: 14px;
}

/*==============================
  TITLE
==============================*/

.section-title {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 18px;
}

.section-title p {
  font-size: 18px;
}

/*==============================
  GLASS EFFECT
==============================*/

.glass {
  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.3);
}

/*==============================
  CARD
==============================*/

.card {
  background: #fff;

  border-radius: var(--radius-lg);

  border: 1px solid var(--border);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-lg);
}

/*==============================
  HIGHLIGHT TEXT
==============================*/

.text-primary {
  color: var(--primary);
}

.text-orange {
  color: var(--secondary);
}

.text-muted {
  color: var(--text-light);
}

/*==============================
  BACKGROUND
==============================*/

.bg-light {
  background: var(--section);
}

.bg-white {
  background: #fff;
}
