/* Theme Variables */
:root {
  --services-overlay: radial-gradient(
    closest-side,
    rgba(86, 89, 96, 0) 0%,
    rgba(86, 89, 96, 0.6) 75%,
    rgba(86, 89, 96, 0.6) 100%
  );

  --text-32-font-family: Urbanist-SemiBold, sans-serif;
  --text-32-font-size: 32px;
  --text-32-line-height: normal;
  --text-32-font-weight: 600;
  --text-32-font-style: normal;
  --title-24-font-family: Urbanist-SemiBold, sans-serif;
  --title-24-font-size: 24px;
  --title-24-line-height: 34px;
  --title-24-font-weight: 600;
  --title-24-font-style: normal;
  --button-text-18-font-family: Urbanist-Medium, sans-serif;
  --button-text-18-font-size: 18px;
  --button-text-18-line-height: normal;
  --button-text-18-font-weight: 500;
  --button-text-18-font-style: normal;
  --text-des-20-font-family: Urbanist-Regular, sans-serif;
  --text-des-20-font-size: 20px;
  --text-des-20-line-height: 32px;
  --text-des-20-font-weight: 400;
  --text-des-20-font-style: normal;
  --title-20-font-family: Urbanist-SemiBold, sans-serif;
  --title-20-font-size: 20px;
  --title-20-line-height: 28px;
  --title-20-font-weight: 600;
  --title-20-font-style: normal;
  --body-14-font-family: Urbanist-Regular, sans-serif;
  --body-14-font-size: 14px;
  --body-14-line-height: 20px;
  --body-14-font-weight: 400;
  --body-14-font-style: normal;
  --body-18-font-family: Urbanist-Regular, sans-serif;
  --body-18-font-size: 18px;
  --body-18-line-height: 28px;
  --body-18-font-weight: 400;
  --body-18-font-style: normal;
  --section-heading-font-family: Urbanist-SemiBold, sans-serif;
  --section-heading-font-size: 40px;
  --section-heading-line-height: 56px;
  --section-heading-font-weight: 600;
  --section-heading-font-style: normal;
  --med-14-font-family: Urbanist-Medium, sans-serif;
  --med-14-font-size: 14px;
  --med-14-line-height: 20px;
  --med-14-font-weight: 500;
  --med-14-font-style: normal;
  --body-16-font-family: Urbanist-Medium, sans-serif;
  --body-16-font-size: 16px;
  --body-16-line-height: 24px;
  --body-16-font-weight: 500;
  --body-16-font-style: normal;
  --banner-heading-font-family: Urbanist-SemiBold, sans-serif;
  --banner-heading-font-size: 52px;
  --banner-heading-line-height: 56px;
  --banner-heading-font-weight: 600;
  --banner-heading-font-style: normal;
  --banner-subtext-font-family: Urbanist-Regular, sans-serif;
  --banner-subtext-font-size: 20px;
  --banner-subtext-line-height: 32px;
  --banner-subtext-font-weight: 400;
  --banner-subtext-font-style: normal;
  --semibold-18-font-family: Urbanist-SemiBold, sans-serif;
  --semibold-18-font-size: 18px;
  --semibold-18-line-height: normal;
  --semibold-18-font-weight: 600;
  --semibold-18-font-style: normal;
}

:root,
[data-collection-1-mode="mode-1"] {
  --secondary: #a6abb4;
  --primary-text: #212529;
  --primary-bg: #111013;
  --button-fill: #565960;
  --bg-2: #1c1b1e;
  --vibrant-yellow: #fdc408;

  color-scheme: dark;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b0b0b;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  overflow-x: hidden;
}

.contact-input {
  border: 1px solid var(--button-fill, #f6b100);
  border-radius: 1.5rem;
  background: transparent;
  color: #ffffff;
  padding: 14px 24px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-input::placeholder {
  color: #bfbfbf;
}

.contact-input:focus {
  border-color: #ffd34e;
}

.nav-link,
.mobile-link {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #9b9b9b;
  transition: color 0.3s ease;
}

.nav-link:hover,
.mobile-link:hover {
  color: #ffffff;
}

.social-icon {
  border: 1px solid #1f1e24;
  border-radius: 9999px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--secondary, #f6b100);
}

ul.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
}

ul.list-disc li {
  margin-bottom: 0.4rem;
}
