* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: url('../img/hero-banner-scaled.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Animated Background Gradient */
body::before {
    content: "";
    position: absolute;
    /* width: 500px; */
    /* height: 500px; */
    /* filter: blur(150px); */
    /* animation: moveGlow 10s infinite alternate ease-in-out; */
    inset: 0;
    background: #00000061;
}

/* Floating Particles */
span.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c9a24a;
  border-radius: 50%;
  animation: float 8s linear infinite;
  opacity: 0.6;
}

@keyframes float {
  from { transform: translateY(100vh); }
  to { transform: translateY(-10vh); }
}

/* Glass Card */
.container {
  text-align: center;
  padding: 40px;
  max-width: 600px;
  backdrop-filter: blur(7px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(201,162,74,0.2);
  animation: fadeIn 1.5s ease;
  z-index: 2;
}

@media (max-width: 575px) {
    .container {
  max-width: 85%;
}

body {
    background-position: right !important;
}
}

/* Heading Animation */
h1 {
  font-size: 45px;
  /*color: #c9a24a;*/
  margin-bottom: 15px;
  animation: slideDown 1s ease;
  color: #bda84c
}

p {
  color: #fff;
  margin-bottom: 30px;
  animation: fadeIn 2s ease;
}

/* Input Section */
.subscribe {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe input {
  padding: 12px 15px;
  border-radius: 30px;
  border: 1px solid #c9a24a;
  background: transparent;
  color: #fff;
  outline: none;
  min-width: 250px;
  transition: 0.3s;
}

.subscribe input:focus {
  box-shadow: 0 0 10px #c9a24a;
}

/* Button with Ripple Effect */
.subscribe button {
  position: relative;
  overflow: hidden;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: #c9a24a;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe button:hover {
  transform: scale(1.08);
  background: #fff;
}

.subscribe button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

.subscribe button:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 13px;
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media(max-width:600px) {
  h1 { font-size: 32px; }
  .subscribe { flex-direction: column; }
  .subscribe input, .subscribe button { width: 100%; }
}