* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background: #000;
  overflow: hidden;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('background.png') center center no-repeat;
  background-size: cover;
  z-index: 0;
}

/* Grid with subtle blur to darken background */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}

.center-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  max-width: 600px;
  text-align: S;
  background: rgba(0, 0, 0, 0.6);
  padding: 5% 10%;
  border: none;
  border-radius: 2px;
}

.center-box h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.center-box h3 {
  font-weight: normal;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.center-box p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.center-box ul {
  list-style: none;
  padding: 0;
}

.center-box li {
  font-size: 120%;
  margin: 10px 0 10px 30px;
}

.center-box a {
  color: #fff;
  text-decoration: none;
}


/* subscribe email
---------------------------------- */

.email-subscription {
  margin: 0;
  padding: 0px;
  border-radius: 2px;

}

.email-subscription h4 {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-input-container {
  position: relative;
}

.email-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.subscribe-btn {
  padding: 12px ;
  background: linear-gradient(45deg, #555 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.subscribe-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background: #000;
  overflow: hidden;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('background.png') center center no-repeat;
  background-size: cover;
  z-index: 0;
}

/* Grid with subtle blur to darken background */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}

.center-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  max-width: 600px;
  text-align: S;
  background: rgba(0, 0, 0, 0.6);
  padding: 5% 10%;
  border: none;
  border-radius: 2px;
}

.center-box h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.center-box h3 {
  font-weight: normal;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.center-box p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.center-box ul {
  list-style: none;
  padding: 0;
}

.center-box li {
  font-size: 120%;
  margin: 10px 0 10px 30px;
}

.center-box a {
  color: #fff;
  text-decoration: none;
}


/* subscribe email */

.email-subscription {
  margin: 0;
  padding: 0px;
  border-radius: 2px;

}

.email-subscription h4 {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-input-container {
  position: relative;
}

.email-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.subscribe-btn {
  padding: 12px 25px;
  background: linear-gradient(45deg, #555 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.subscribe-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .email-form {
    flex-direction: row;
    align-items: center;
  }

  .email-input-container {
    flex: 1;
  }

  .subscribe-btn {
    margin-left: 10px;
    white-space: nowrap;
  }
}
}

@media (min-width: 768px) {
  .email-form {
    flex-direction: row;
    align-items: center;
  }

  .email-input-container {
    flex: 1;
  }

  .subscribe-btn {
    margin-left: 10px;
    white-space: nowrap;
  }
}


/* icons links
---------------------------------- */

.icon-links {
    text-align: center;
}
.icon-links i {
    display: inline-block;
    width: 50px;
    text-align: center;
    font-size: 200%;
}

.icon-links i:hover {
	color: black;
	filter: drop-shadow(5px 5px 10px #000000);

}
