/* Contact Page Specific Styles */
.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.contact-container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease forwards;
}

.contact-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 20px;
}

.divider-line {
  height: 2px;
  background-color: var(--primary-color);
  flex-grow: 1;
  max-width: 200px;
  opacity: 0.7;
}

.contact-title {
  font-size: 3.5rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-color);
  text-transform: lowercase;
  margin: 0 10px;
  white-space: nowrap;
}

.contact-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 40px;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-label {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 10px;
  white-space: nowrap;
}

.contact-arrow {
  font-size: 1.2rem;
  margin: 0 10px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-arrow {
  transform: translateX(5px);
}

.contact-value {
  font-size: 1.2rem;
  color: var(--primary-color);
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dark Mode Adjustments */
body.dark-mode .blur-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

body.dark-mode .contact-item {
  background-color: rgba(0, 0, 0, 0.2);
}

body.dark-mode .contact-item:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-title {
    font-size: 3rem;
    -webkit-text-stroke: 1.5px var(--primary-color);
  }

  .divider-line {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 20px;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .divider-line {
    max-width: 100px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-label {
    font-size: 1.1rem;
  }

  .contact-value {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
    -webkit-text-stroke: 1px var(--primary-color);
  }

  .divider-line {
    max-width: 60px;
  }

  .contact-header {
    margin-bottom: 30px;
    gap: 10px;
  }

  .contact-column {
    gap: 20px;
  }

  .contact-item {
    flex-wrap: wrap;
  }

  .contact-label {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 5px;
  }

  .contact-arrow {
    font-size: 1rem;
    margin-left: 0;
  }

  .contact-value {
    font-size: 0.9rem;
  }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
  .section {
    height: -webkit-fill-available;
  }
}

/* Animation for page load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
