/* Universal Styles for MediQueuePro */
:root {
  --primary-color: #1a5276;
  --secondary-color: #4caf50;
  --accent-color: #ffeb3b;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
}

/* Universal Section Styles */
.hero-section {
  background: linear-gradient(135deg, #4caf50 0%, #2196f3 50%, #ffeb3b 100%);
  color: white;
  padding: 80px 3rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 80px 3rem;
  background-color: var(--light-bg);
  width: 100%;
}

/* Universal Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 20px 3rem;
  width: 100%;
}

/* Universal Card Styles */
.card-custom {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: none;
}

/* Universal Button Styles */
.btn-custom {
  background: linear-gradient(135deg, #4caf50, #2196f3);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
  color: white;
}

/* Universal Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section,
  .content-section,
  .footer {
    padding: 60px 2rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}
