/* Personal Account - Base Layout & Header */

.account-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.account-header {
  background: linear-gradient(135deg, #722F37 0%, #5A2D4A 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(114, 47, 55, 0.15);
}

.account-header-content {
  flex: 1;
}

.account-greeting {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.account-email,
.account-member-since {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0.5rem 0;
}

.account-logout-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-logout-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.account-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.section-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid #f5f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(114, 47, 55, 0.18);
  border-color: rgba(114, 47, 55, 0.2);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #722F37;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.info-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #e5e5e5;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(114,47,55,0.02) 100%);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: background 0.3s ease;
}

.info-group:hover {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(114,47,55,0.05) 100%);
}

.info-group:last-of-type {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #722F37;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.info-value {
  font-weight: 400;
  color: #555;
  font-size: 1rem;
}

.edit-btn {
  width: 100%;
  background: linear-gradient(135deg, #722F37 0%, #5A2D4A 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(114, 47, 55, 0.25);
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

.edit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(114, 47, 55, 0.4);
  background: linear-gradient(135deg, #8b3a47 0%, #6b3a52 100%);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-explore {
  display: inline-block;
  background: linear-gradient(135deg, #722F37 0%, #5A2D4A 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(114, 47, 55, 0.25);
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(114, 47, 55, 0.4);
  background: linear-gradient(135deg, #8b3a47 0%, #6b3a52 100%);
}
