* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #171515;
  min-height: 100vh;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("../images/bg image.png") center / cover no-repeat;

  filter: blur(8px);
  transform: scale(1.08);
  /* prevents blur edges */
  z-index: -2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(8px);

  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.newsletter-wrapper {
  width: 100%;
  min-height: 85vh;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: flex;
  padding: 10px 20px;
  /* background-color: red; */
  margin-top: 15vh;
  gap: 30px;
}

.newsletter-form {
  width: 100%;
  max-width: 32vw;
  height: 84vh;
  background: #ffffff;
  border: 5px solid #981A1E;
  padding: 30px 40px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 14vh;
  /* z-index: 0; */
}

.pdf-preview {
  min-width: 63vw;
  background-color: white;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  margin-left: 33vw;
  position: relative;
  top: -2vh;
  /* z-index: -3; */
  gap: 20px;
  /* background-color: green; */
}

.pdf-1 {
  width: 100%;
  height: 500px;
  background: url("../images/pdf-preview-1.jpg") center / contain no-repeat;
  border-radius: 12px;
}

.pdf-2 {
  width: 100%;
  height: 1500px;
  background: url("../images/pdf-preview-2.jpg") center / cover no-repeat;
  border-radius: 12px;
  filter: blur(8px);
}

.pdf-3 {
  width: 100%;
  height: 1500px;
  background: url("../images/pdf-preview-3.jpg") center / cover no-repeat;
  border-radius: 12px;
  filter: blur(8px);
}

.pdf-4 {
  width: 100%;
  height: 1500px;
  background: url("../images/pdf-preview-4.jpg") center / cover no-repeat;
  border-radius: 12px;
  filter: blur(8px);
}

.pdf-5 {
  width: 100%;
  height: 1500px;
  background: url("../images/pdf-preview-5.jpg") center / cover no-repeat;
  border-radius: 12px;
  filter: blur(8px);
}

.get-access-btn {
  padding: 16px;
  background: #981A1E;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-decoration: none;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.dadhood-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.newsletter-form h2 {
  font-size: 25px;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.subtitle {
  font-size: 16px;
  color: #6E6A5D;
  font-weight: 500;
  margin-top: 4px;
}

.info-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
  padding: 8px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #6E6A5D;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.newsletter-form .form-group:nth-of-type(1) input,
.newsletter-form .form-group:nth-of-type(2) input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #e5e5e5;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1A1A1A;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #6E6A5D;
  box-shadow: 0 0 0 3px rgba(110, 106, 93, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #1A1A1A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.privacy-note {
  margin-top: 13px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .newsletter-form {
    padding: 36px 24px;
  }

  .newsletter-form h2 {
    font-size: 24px;
  }

  .dadhood-icon {
    font-size: 48px;
  }

  .info-text {
    font-size: 13px;
    padding: 14px;
  }
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
  .newsletter-form {
    max-width: 540px;
  }
}

/* Smooth animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-form {
  animation: fadeIn 0.5s ease-out;
}

.message {
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.message.info {
  background: #e3f2fd;
  color: #1565c0;
  border-left: 4px solid #1565c0;
}

.email-info {
  margin-left: 4px;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;

}

.info-msg {
  margin-left: 4px;
  font-weight: normal !important;
  font-size: 12px !important;
  margin-top: 6px;
}