/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./app/Home.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
.Home_container__P8LeA {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 25%, #2a0a0a 50%, #1a0a0a 75%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  color: #f5e6e0;
  font-family: var(--font-body);
  overflow-x: hidden;
}

.Home_header__wW9db {
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

.Home_title__Lguur {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ff6b5b 0%, #d63031 50%, #c92a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(255, 107, 91, 0.3);
  animation: Home_fadeInDown__mT1qu 0.8s ease-out;
}

.Home_titleUnderline__srlWB {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff6b5b, #d63031, transparent);
  margin: 20px auto 0;
  border-radius: 2px;
  animation: Home_slideInUp__Ndj14 0.8s ease-out;
}

.Home_main__qh3sW {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 60px;
}

.Home_welcomeSection__aaady {
  text-align: center;
  max-width: 600px;
  animation: Home_fadeIn__BbLOf 1s ease-out 0.2s both;
}

.Home_welcomeTitle__EBYQi {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #ffa07a;
  margin: 0 0 20px 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.Home_welcomeText__Zz0qR {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dab9af;
  margin: 0;
  font-weight: 400;
}

.Home_navigationGrid__uWnbh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 32px;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  animation: Home_fadeInUp__zS5ad 0.8s ease-out 0.4s both;
}

.Home_navCard__5Q2bO {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.1) 0%, rgba(214, 48, 49, 0.08) 100%);
  border: 2px solid rgba(255, 107, 91, 0.3);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.Home_navCard__5Q2bO::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 91, 0.2), transparent);
  transition: left 0.5s ease;
}

.Home_navCard__5Q2bO:hover {
  border-color: rgba(255, 107, 91, 0.8);
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.2) 0%, rgba(214, 48, 49, 0.15) 100%);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 91, 0.25);
}

.Home_navCard__5Q2bO:hover::before {
  left: 100%;
}

.Home_navIcon__qZPvT {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.Home_navCard__5Q2bO:hover .Home_navIcon__qZPvT {
  transform: scale(1.15) rotate(5deg);
}

.Home_navTitle__GLe7l {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #ff8c42;
  margin: 0 0 12px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.Home_navDescription___DxHR {
  font-size: 0.95rem;
  color: #d4a5a0;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.Home_footer__q32pz {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 107, 91, 0.2);
  color: #8b6b66;
  font-size: 0.9rem;
  margin-top: auto;
}

.Home_footer__q32pz p {
  margin: 0;
}

/* Animations */
@keyframes Home_fadeInDown__mT1qu {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Home_slideInUp__Ndj14 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Home_fadeIn__BbLOf {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes Home_fadeInUp__zS5ad {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .Home_header__wW9db {
    padding: 40px 20px 30px;
  }

  .Home_title__Lguur {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .Home_main__qh3sW {
    padding: 30px 20px;
    gap: 40px;
  }

  .Home_welcomeTitle__EBYQi {
    font-size: 1.5rem;
  }

  .Home_welcomeText__Zz0qR {
    font-size: 1rem;
  }

  .Home_navigationGrid__uWnbh {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 24px;
  }

  .Home_navCard__5Q2bO {
    padding: 30px 25px;
  }

  .Home_navIcon__qZPvT {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .Home_navTitle__GLe7l {
    font-size: 1.4rem;
  }

  .Home_navDescription___DxHR {
    font-size: 0.9rem;
  }

  .Home_footer__q32pz {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .Home_header__wW9db {
    padding: 30px 15px 20px;
  }

  .Home_title__Lguur {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .Home_main__qh3sW {
    padding: 20px 15px;
    gap: 30px;
  }

  .Home_welcomeSection__aaady {
    padding: 0 10px;
  }

  .Home_welcomeTitle__EBYQi {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .Home_welcomeText__Zz0qR {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .Home_navigationGrid__uWnbh {
    gap: 16px;
  }

  .Home_navCard__5Q2bO {
    padding: 24px 20px;
  }

  .Home_navIcon__qZPvT {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .Home_navTitle__GLe7l {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .Home_navDescription___DxHR {
    font-size: 0.85rem;
  }
}

