/* ---------------------- */
/*  BASE FONTS & RESET    */
/* ---------------------- */

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  background: #f5f5f5;
  color: #383a3c;
  line-height: 1.5;
  font-size: 15px;
  user-select: none;
}

/* ---------------------- */
/*      HEADER AREA       */
/* ---------------------- */

.large-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.main-title {
  position: absolute;
  width: 100%;
  max-width: 800px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 10px;
}

/* ---- SMALL & CLEAN LOGO ---- */
.main-title img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

/* ---- SMALLER CLEAN HEADING ---- */
.main-title h1 {
  margin-top: 0px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(25deg, orange, rgb(202, 45, 46));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.main-title h1 span {
  font-size: 0.45em;
  font-weight: 500;
}

/* ---- SMALL PARAGRAPH ---- */
.main-title p {
  margin-top: 5px;
  margin-bottom: 35px;
  font-size: 15px;
  line-height: 1.4;
  padding: 0 10px;
}

/* ---------------------- */
/*     BUTTON AREA        */
/* ---------------------- */

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: orange;
  text-transform: uppercase;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .06);
  transition: 0.2s ease;
}

.links a:hover {
  color: #fff;
  background: linear-gradient(25deg, orange, rgb(202, 45, 46));
}

/* ---------------------- */
/* RESPONSIVE SCALING     */
/* ---------------------- */

/* Desktop (Large) */
@media (min-width: 1200px) {
  .main-title img { width: 140px; height: 140px; }
  .main-title h1 { font-size: 50px; }
}

/* Tablets */
@media (max-width: 991px) {
  .main-title { max-width: 650px; }
  .main-title img { width: 110px; height: 110px; }
  .main-title h1 { font-size: 36px; }
  .main-title p { font-size: 14px; margin-bottom: 30px; }
  .links a { font-size: 13px; padding: 8px 12px; }
  canvas { display: none; }
}

/* Mobiles */
@media (max-width: 600px) {
  body { padding: 0 10px; }

  .main-title img {
    width: 90px;
    height: 90px;
  }

  .main-title h1 {
    font-size: 28px;
  }

  .main-title p {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .links a {
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 6px;
  }

  .links {
    gap: 8px;
  }
}

/* Very Small Phones */
@media (max-width: 400px) {
  .main-title img {
    width: 80px;
    height: 80px;
  }

  .main-title h1 {
    font-size: 24px;
  }

  .links a {
    font-size: 11px;
    padding: 6px 8px;
  }
}
