/* Pro4 theme wrapper — imports component CSS to provide a single entrypoint */
/* Use relative imports so paths resolve relative to this file and respect STATIC_URL/manifest storage */
@import url('dashboard.css');
@import url('ui-improvements.css');
@import url('super-admin.css');
@import url('crm-responsive.css');
@import url('contact.css');

/* Add lightweight theme overrides below */
:root {
  --pro4-primary: #0d6efd;
  --pro4-secondary: #6c757d;
  --pro4-accent: #6610f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background-color: #fff;
  color: #212529;
  line-height: 1.6;
}

/* Navbar Styles */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  z-index: 1030 !important;
  position: relative;
}

.navbar.fixed-top {
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 1050 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 20px;
  color: #0d6efd !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand i {
  font-size: 24px;
}

.nav-link {
  color: #495057 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* Dropdown menu z-index */
.navbar .dropdown-menu {
  z-index: 1060 !important;
}

.btn-primary-custom {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
  color: white;
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-lg {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary-lg.btn-primary {
  background-color: #0d6efd;
  border: none;
  color: white;
}

.btn-primary-lg.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  color: white;
}

.btn-primary-lg.btn-outline {
  background-color: transparent;
  border: 2px solid #212529;
  color: #212529;
}

.btn-primary-lg.btn-outline:hover {
  background-color: #212529;
  color: white;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 50px;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* Cards */
.feature-card {
  padding: 30px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 20px;
}

.feature-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #212529;
}

.feature-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #212529;
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

footer a {
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0b5ed7;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-lg {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  .navbar-brand {
    font-size: 18px;
  }
}

/* End of pro4-theme.css */
