/* Subscribe Modal Styles */

.subscribe-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.subscribe-modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.subscribe-modal {
  background-color: #ffffff;
  width: 90%;
  max-width: 540px;
  padding: 60px 40px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.subscribe-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.subscribe-modal-close:hover {
  transform: rotate(90deg);
}

.subscribe-modal-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subscribe-input {
  width: 100%;
  padding: 18px 20px;
  background-color: #000;
  border: none;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  outline: none;
  transition: background-color 0.3s ease;
}

.subscribe-input::placeholder {
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
}

.subscribe-input:focus {
  background-color: #1a1a1a;
}

.subscribe-button {
  width: 100%;
  padding: 18px 20px;
  background-color: #000;
  border: none;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.subscribe-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.subscribe-button:active {
  transform: translateY(0);
}

.subscribe-disclaimer {
  font-family: 'Noto Sans', sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  margin-top: 20px;
}

/* Social Media Section */
.subscribe-social-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.subscribe-social-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #000;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.subscribe-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.subscribe-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.subscribe-social-link:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.subscribe-social-link svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Specific hover colors for each social network */
.subscribe-social-link:nth-child(1):hover {
  background-color: #1877f2; /* Facebook */
}

.subscribe-social-link:nth-child(2):hover {
  background-color: #000; /* X/Twitter */
}

.subscribe-social-link:nth-child(3):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram */
}

.subscribe-social-link:nth-child(4):hover {
  background-color: #ff0000; /* YouTube */
}

.subscribe-social-link:nth-child(5):hover {
  background-color: #1db954; /* Spotify */
}

@media (max-width: 768px) {
  .subscribe-modal {
    padding: 40px 30px;
    width: 95%;
  }

  .subscribe-modal-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .subscribe-input,
  .subscribe-button {
    padding: 16px 18px;
    font-size: 13px;
  }

  .subscribe-disclaimer {
    font-size: 10px;
  }

  .subscribe-social-section {
    margin-top: 25px;
    padding-top: 25px;
  }

  .subscribe-social-title {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .subscribe-social-icons {
    gap: 12px;
  }

  .subscribe-social-link {
    width: 40px;
    height: 40px;
  }

  .subscribe-social-link svg {
    width: 18px;
    height: 18px;
  }
}
