:root {
  --primary: #6B46C1;
  --primary-dark: #4C2A85;
  --primary-light: #D8B4FE;
  --golden: #F59E0B;
  --golden-light: #FCD34D;
  --bg-light: #F9F7FF;
  --text-dark: #1F2937;
  --text-light: #6B7280;
}

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

body {
  font-family: 'Georgia', serif;
  background-color: #FFFFFF;
  color: var(--text-dark);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--golden) !important;
  letter-spacing: 0.5px;
}

.nav-link {
  color: #FFFFFF !important;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--golden) !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--golden);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* HEADER/HERO */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary-custom {
  background-color: var(--golden);
  color: var(--primary-dark);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background-color: var(--golden-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
  color: var(--primary-dark);
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--golden);
  border: 2px solid var(--golden);
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  margin-left: 1rem;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background-color: var(--golden);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* SECTION STYLES */
.section-header {
  background-color: var(--bg-light);
  padding: 2rem 0;
  border-left: 5px solid var(--golden);
  margin-bottom: 2rem;
}

.section-header h2 {
  color: var(--primary);
  font-weight: bold;
  font-size: 2rem;
}

.section-header p {
  color: var(--text-light);
  margin-top: 0.5rem;
}

.card-custom {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.2);
}

.card-custom .card-header {
  background-color: var(--primary);
  color: white;
  border-radius: 10px 10px 0 0;
  border: none;
  padding: 1.5rem;
}

.card-custom .card-header h5 {
  margin: 0;
  font-weight: bold;
}

.card-custom .card-body {
  padding: 1.5rem;
}

/* BADGE */
.badge-custom {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  color: var(--golden);
  font-weight: bold;
  margin-bottom: 1rem;
}

footer a {
  color: #E5E7EB;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--golden);
  padding-left: 5px;
}

.footer-divider {
  border-top: 2px solid var(--golden);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #D1D5DB;
}

/* UTILITY */
.text-primary-custom {
  color: var(--primary) !important;
}

.text-golden {
  color: var(--golden) !important;
}

.bg-primary-light {
  background-color: var(--bg-light) !important;
}

.border-golden {
  border-color: var(--golden) !important;
}

/* FORMS */
.form-control {
  border: 2px solid #E5E7EB;
  border-radius: 5px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-secondary-custom {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* LIST STYLES */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--golden);
  font-weight: bold;
}

.table-custom {
  border-collapse: collapse;
  width: 100%;
}

.table-custom thead {
  background-color: var(--primary);
  color: white;
}

.table-custom th {
  padding: 1rem;
  text-align: left;
  font-weight: bold;
}

.table-custom td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E5E7EB;
}

.table-custom tbody tr:hover {
  background-color: var(--bg-light);
}

.breadcrumb-custom {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.breadcrumb-custom a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  text-decoration: underline;
}

.breadcrumb-custom span {
  color: var(--golden);
  margin: 0 0.5rem;
}
