/* ========== MY ACCOUNT PAGE CSS ========== */

/* Background image pour la page mon compte */
#account-background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.3;
}

.kany-account-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header KANY 3D */
.kany3d-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.kany3d-logo img {
  height: 80px;
}

.kany3d-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.kany3d-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kany3d-nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.kany3d-nav-link:hover {
  color: #daa8e8;
}

/* Responsive */
@media (max-width: 768px) {
  .kany3d-header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .kany3d-main-title {
    font-size: 24px;
  }
}
