@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400&display=swap');

body {
  background-color: #fffdeb;
  background-image: url('../images/shinollmapps.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Rubik', sans-serif;
  font-size: 30px;
  margin: 0;
  height: 100vh;
  overflow-y: scroll;
}

h2 {
  font-size: 70px;
  font-family: 'CuteFont', sans-serif;
  color: #fbb4d5;
  text-shadow:
    -1px -1px 0 #333,
     1px -1px 0 #333,
    -1px  1px 0 #333,
     3px  3px 0 #333;
}

.logo {
  font-size: 100px;
  font-family: 'CuteFont', sans-serif;
  color: #fbb4d5;
  text-shadow:
    -1px -1px 0 #333,
     1px -1px 0 #333,
    -1px  1px 0 #333,
     3px  3px 0 #333;
  text-align: center;
  margin-top: 1rem;
}
.navbar {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid #fbb4d5;
}

.navbar-title {
  font-size: 100px;
  font-family: 'CuteFont', sans-serif;
  color: #fbb4d5;
  text-shadow:
    -1px -1px 0 #333,
     1px -1px 0 #333,
    -1px  1px 0 #333,
     3px  3px 0 #333;
  margin-bottom: 1rem;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 1.5rem;
  color: #67bcdf;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff;
  transition: transform 0.2s;
}

.nav-links a:hover {
  transform: scale(1.1);
  color: #fbb4d5;
}


.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.intro-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.app-card {
  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
}


.app-card:hover {
  transform: translateY(-6px);
  background-color: rgb(74, 74, 74); 
  color: #ffffff;
}

.app-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.app-card h3 {
  margin-bottom: 0.2rem;
  font-size: 2rem;
  color: #fbb4d5;
  text-shadow:
    -1px -1px 0 #333,
     1px -1px 0 #333,
    -1px  1px 0 #333,
     1px  1px 0 #333;
}

.app-card .abstract {
  color: #67bcdf;
  font-weight: bold;
  font-size: 1rem;
}

.app-card .desc {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  text-align: center;
}

.app-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.tag {
  background-color: #fdc7dc;
  color: #333;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.footer {
  text-align: right;
  font-size: 0.8rem;
  margin-top: 3rem;
  padding: 1rem;
  color: #666;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none; /* Ensure it's still off on hover */
}

