/* Global Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #464646;
  color: white;
  margin: 0;
  padding: 20px;
}

/* App Cards Container */
.app-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

/* App Card */
.app-card {
  background-color: #242424;
  border-radius: 15px;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* App Card Image */
.app-card-img-container {
  height: 300px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.app-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.app-card:hover .app-card-img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* App Card Content */
.app-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.app-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
}

.app-card-description {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.5;
  margin-bottom: 50px;
}

.app-card-link {
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #64B5F6;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.app-card-link:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background-color: #4A90E2;
}

/* App Badges */
.app-badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 12px;
  text-transform: uppercase;
  background-color: rgba(100, 181, 246, 0.2);
  color: #64B5F6;
  border: 1px solid #64B5F6;
}

.app-badge:hover {
  background-color: #64B5F6;
  color: #ffffff;
}

/* Responsive Layouts */
@media screen and (max-width: 768px) {
  .app-cards-container {
    grid-template-columns: 1fr;
  }

  .app-card-img-container {
    height: 250px;
  }

  .app-card-content {
    padding: 15px;
  }

  .app-card-title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .app-card-img-container {
    height: 200px;
  }

  .app-card-description {
    font-size: 0.85rem;
  }

  .app-card-link {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}


.learn-more {
  text-align: center;
  margin-top: 40px; /* Add space above the footer */
  padding: 20px 0; /* Vertical padding for balance */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle top divider */
  background-color: #2c2f36; /* Differentiated dark background */
  border-radius: 10px;
}

.learn-more p {
  margin-bottom: 0;
}

.learn-more-text {
  font-size: 0.95rem; /* Slightly smaller than main content */
  color: #d0d0d0; /* Muted text color */
}

.learn-more-link {
  color: #64B5F6; /* Match button and badge theme color */
  font-weight: bold;
  text-decoration: none;
}

.learn-more-link:hover {
  text-decoration: underline; /* Subtle hover effect for link */
}

/* Mobile Adjustments for Footer */
@media screen and (max-width: 480px) {
  .learn-more {
    padding: 15px; /* Reduce vertical padding */
  }

  .learn-more-text {
    font-size: 0.85rem; /* Slightly smaller for mobile */
  }
}



.quarto-title {
  display: none;
}

a {
  display: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: inherit;
  border-radius: inherit;
  background-color: inherit;
  color: inherit;
  border: 2px solid transparent;
  text-decoration: inherit;
  box-shadow: inherit;
}

a:hover {
  border: none;
}



.navbar-brand:hover {
  border: 2px solid transparent;
}


