/* Material Blue + Minimalis*/
:root {
  --radius: 12px;
  --box-shadow: 0 2px 15px 0 rgb(0 0 0 / 0.2);
  --box-shadow-l: 0 10px 15px -3px rgb(0 0 0 / 0.1);

  --bg-light: #fff;
  --c-dark: #1e3c72; /* very dark blue */
  --bg-dark: #04051b; /* very dark blue */
  --c-light: #fff;

  --bg-primer: linear-gradient(135deg, #1e40af, #2563eb); /* blue grads */
  --bg-second: #f7fafd; /* blue light */
  --bg-white: #fff;
  --bg-yellow: linear-gradient(135deg, #f2c001, #f5e5a8); /* yellow */

  --c-primer: linear-gradient(
    135deg,
    #1e40af,
    #2563eb,
    #1e3a8a
  ); /* blue grads text*/

  --c-second: #1e3c72; /* very dark blue */
  --c-gray: #666; /* gray */
}

/* Enter dark mode */
[data-dark] {
  --bg-light: #04051b; /* ganti ke --bg-dark */
  --c-dark: #fff;
}

body {
  font-family: "oxygen", Open Sans, sans-serif;
  background: var(--bg-light);
  color: var(--c-dark);
  overflow-x: hidden;
  transition: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "graphikbold";
  src: url("../font/graphik-700-webfont.woff2") format("woff2"),
    url("../font/graphik-700-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "graphikmedium";
  src: url("../font/graphik-400-webfont.woff2") format("woff2"),
    url("../font/graphik-400-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "oxygen";
  src: url("../font/oxygen-400-webfont.woff2") format("woff2"),
    url("../font/oxygen-400-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.graphik800 {
  font-family: "graphikbold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.graphik500 {
  font-family: "graphikmedium", sans-serif;
}

.oxygen400 {
  font-family: "oxygen", "Open Sans", sans-serif;
}

.c-primer {
  background: var(--c-primer, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-family: "graphikbold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  background: var(--c-primer, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-family: "graphikbold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--c-dark, #333);
}

h3 {
  font-family: "graphikmedium", sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  line-height: 1.3;
}

h4,
h5,
h6 {
  font-family: "graphikmedium", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.35;
}

p {
  font-family: "oxygen", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-dark, #333);
  margin-bottom: 1.5rem;
}

/* Basic reset */

.white-text {
  color: #b8b8bd !important;
}

.title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}

.cool-title-h1 {
  font-family: "graphikbold";
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 60px;
}

/* Buttons */

.no-outline-button {
  background: transparent !important;
  color: white;
}

.my-btn-dark {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 15px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: graphik600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
}

.my-btn-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e40af;
  border-radius: 15px;
  z-index: -2;
}

.my-btn-dark::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #04051b; /* darken */
  transition: all 0.3s;
  border-radius: 15px;
  z-index: -1;
}

.my-btn-dark:hover {
  color: #fff;
}

.my-btn-dark:hover::before {
  width: 100%;
}

.my-btn-light {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 15px;
  color: #1e3c72;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: graphik600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
}

.my-btn-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7c9ee5;
  border-radius: 15px;
  z-index: -2;
}

.my-btn-light::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1e40af; /* darken */
  transition: all 0.3s;
  border-radius: 15px;
  z-index: -1;
}

.my-btn-light:hover {
  color: #fff;
}

.my-btn-light:hover::before {
  width: 100%;
}

/* Grid menu */

.menu-container {
  padding: 80px 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.page-container {
  padding: 100px 30px;
  margin: 0 auto;
  max-width: 1080px;
}
