/* Base styles */
:root {
  --transition: all 0.3s ease-in-out;
}
#contact {
  font-family: Arial, sans-serif;
}

.sub-title {
  font-size: 40px;
  margin-bottom: 20px;
  color: white;
}

/* Email row styling */
.email-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.email-icon {
  font-size: 20px;
  color: #00abf0;
  margin-right: 10px;
}

.email-link {
  color: white;

  text-decoration: none;
  font-size: 16px;
}

.email-link:hover {
  background: linear-gradient(to right, black, #00abf0);
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(255, 255, 255, 0.507);
}

/* Button row styling */
.button-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(to right, #6c5ce7, #00abf0);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.download-btn:hover {
  background: linear-gradient(to right, black, #00abf0);
  transform: translateY(-5px);
  box-shadow: 0 5px 5px rgba(255, 255, 255, 0.507);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .button-row {
    flex-direction: column;
    gap: 10px;
  }

  .download-btn {
    width: 70%;
  }

  .sub-title {
    font-size: 20px;
  }
}
