/* corporate-website/assets/css/sitemap-styles.css */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Section Enhancement */
.sitemap-hero {
  background-image: url(../img/bg/hero-portfolio.svg);
  background-size: cover;
  background-position: center center;
  position: relative;
}

.sitemap-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.sitemap-hero .container {
  position: relative;
  z-index: 1;
}

.sitemap-hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

/* Sitemap Content Section */
.sitemap-section {
  background-color: #f8f9fa;
}

/* Card Styling */
.sitemap-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sitemap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.sitemap-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.sitemap-card-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #a5c33c; /* Using a primary color */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
}

.sitemap-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0;
}

/* List Item Styling */
.sitemap-list {
  list-style: none;
  padding-left: 0;
}

.sitemap-list-item {
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 25px;
}

.sitemap-list-item .sitemap-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap-list-item .sitemap-link:hover {
  color: #a5c33c;
}

.sitemap-list-item::before {
  content: '\f105'; /* FontAwesome angle-right */
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 2px;
  color: #a5c33c;
  font-size: 1rem;
  font-weight: 700;
}

.sitemap-link-desc {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0.25rem;
  padding-left: 0; /* Align with the link text */
  margin-bottom: 0;
}

/* Quick Navigation Section */
.quick-nav-section {
  background: linear-gradient(45deg, #a5c33c, #a5c33c);
  border-radius: 0.75rem;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.quick-nav-section h3 {
  font-weight: 700;
  font-size: 2rem;
}

.quick-nav-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.quick-nav-btn {
  font-weight: 700;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  background-color: #fff;
  color: #a5c33c;
}

.quick-nav-btn:hover {
  background-color: transparent;
  color: #fff;
}

.quick-nav-btn.btn-outline {
  background-color: transparent;
  color: #fff;
}

.quick-nav-btn.btn-outline:hover {
  background-color: #fff;
  color: #a5c33c;
}

.quick-nav-btn i {
  margin-right: 0.5rem;
}