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

:root {
  --primary-color: #00b9ad;
  --background-color: #000;
  --background-color-secondary: linear-gradient(
    135deg,
    rgb(31, 41, 55),
    rgb(17, 24, 39)
  );
  --text-color: #333333;
  --font-family: "Inter", sans-serif;
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  margin: 0;
  padding: 0 !important;
}

html {
  font-size: 16px; /* Base for desktop */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  touch-action: pan-y; /* Prevents horizontal touch scrolling */
}

@media (max-width: 768px) {
  html {
    font-size: 15px; /* Slightly smaller base for tablets/mobiles */
  }
}

body {
  margin: 0;
  font-family: inter, sans-serif;
  background-color: --background-color;
}

/* Typography scale */
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(to right, #00b9ad, #3dc9a5, #6ad898);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

a:hover {
  text-decoration: underline;
}

.Padding {
  padding: 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 0.8rem;
  }

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