/* styles.css */

html {
  scroll-behavior: smooth;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.parallax-header {
  background-image: url('background.jpg');
}

.radial-overlay {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}

.background-dimmed {
  position: relative;
  overflow: hidden;
}

.background-dimmed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.led-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

/* Base font family */
body {
  font-family: 'Oswald', sans-serif;
}

/* Headings and text styling */
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

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

h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
}

input[type=text] {
  border: 2px solid rgba(0, 94, 31, 0.185);
  padding-left: 2px;
}

.page-title {
  font-size: 45px;
  text-align: center;
  width: 300px;
  height: 50px;
  padding: 10px;
  border: 5px solid rgb(0, 0, 0);
  margin: 0;
}