/* Reset and Base Styles */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  -webkit-tap-highlight-color: rgba(34, 34, 34, 0.3);
}

body {
  overflow-x: hidden;
  /* Allow vertical scrolling only */
}

h1,
h2,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #fc9;
  transition: color 0.2s ease;
}

a:hover {
  color: #666;
}

a:hover,
a:focus {
  color: #eb3812;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
}

/* Header Styles */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: rgba(27, 27, 28, 0.7);
  /* Slightly transparent background */
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  /* Ensure header is above the background */
}

.header-content {
  width: 60%;
  backdrop-filter: blur(10px);
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  margin: 20px auto;
  transition: all 0.3s ease;
}

.header-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-content-inner h1 {
  font-family: "Poetsen One", cursive;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 20px;
}

.header-content-inner h2 {
  font-family: "Sour Gummy", cursive;
  font-size: 30px;
  font-weight: 400;
}

.header-content-inner hr {
  border-color: #f05f40;
  border-width: 3px;
  width: 50px;
  margin: 20px 0;
}

.header-content-inner p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-family: "Sour Gummy", cursive;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  padding: 15px 30px;
  background-color: #581607;
  color: white;
  cursor: pointer;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  letter-spacing: 1px;
}

.btn:hover,
.btn:focus {
  background-color: #581607;
  border-color: #ed431f;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-content-inner h1 {
    font-size: 40px;
  }

  .header-content-inner h2 {
    font-size: 24px;
  }

  .header-content-inner p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header-content-inner h1 {
    font-size: 30px;
  }

  .header-content-inner h2 {
    font-size: 20px;
  }

  .header-content-inner p {
    font-size: 12px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.motto {
  font-family: "Oxanium", cursive;
  font-weight: 600;
  letter-spacing: 1px;
}
