/* 
 * Main Style Sheet for Membership Site
 * This supplements the Bootstrap framework with custom styles
 */

:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

/* Layout Styles */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

/* Navbar Customization */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

/* Card Enhancements */
.card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.card-header {
  font-weight: 600;
  padding: 0.75rem 1.25rem;
}

/* Button Styles */
.btn {
  border-radius: 0.3rem;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

/* Form Enhancements */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Avatar Image */
.avatar-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Custom Alerts */
.alert {
  border-radius: 0.3rem;
}

/* Footer Styling */
footer {
  background-color: var(--light-color);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark-color);
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Dashboard Stats */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Member content styles */
.content-card {
  transition: transform 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.2rem;
  }
  
  .card-header h3, .card-header h5 {
    font-size: 1.2rem;
  }
}
