/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Root Variables */
:root {
  --main-font: 'Roboto', sans-serif;
  --main-padding: 1rem;
  --main-margin: 1rem;
  --header-height: 100px;

  --color-bg: white;
  --color-text: #212121;
  --color-primary: #0B8043;
  --color-secondary: #F1F3F4;
  --color-shadow: rgba(0, 0, 0, 0.1);
}

/* Global Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--main-font);
  background-color: var(--color-bg);
  color: var(--color-text);
  padding-top: var(--header-height);
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

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

/* Play Store–Style Header */
.header {
  background-color: var(--color-bg);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
 box-shadow: 0 2px 6px rgb(0 0 0 / 21%);
  transition: box-shadow 0.3s ease-in-out;
}

.navbar-gradient{
  background: #FF8008;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFC837, #FF8008);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFC837, #FF8008); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.25rem;
}

.navbar-brand img {
  width: 40px;
  border-radius: 8px;
  margin-right: 0.75rem;
}

.container-fluid {
  padding-left: var(--main-padding);
  padding-right: var(--main-padding);
}

/* Utility Classes */
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.m-1 { margin: 0.5rem; }
.m-2 { margin: 1rem; }

.text-center { text-align: center; }
.shadow-sm { box-shadow: 0 2px 4px var(--color-shadow); }

/* typography */
.text-typo{
    color: rgb(95, 99, 104);
    fill: rgb(95, 99, 104);
    stop-color: rgb(95, 99, 104);
     font-family: var(--main-font);
    line-height: 1rem;
    font-size: 1.2rem;
}
/* typography */